123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2013 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef _GUIEDITCTRL_H_
- #define _GUIEDITCTRL_H_
- #include "gui/guiControl.h"
- #include "collection/undo.h"
- class GuiEditCtrl : public GuiControl
- {
- typedef GuiControl Parent;
- Vector<GuiControl *> mSelectedControls;
- GuiControl* mCurrentAddSet;
- GuiControl* mContentControl;
- Point2I mLastMousePos;
- Point2I mSelectionAnchor;
- Point2I mGridSnap;
- Point2I mDragBeginPoint;
- Vector<Point2I> mDragBeginPoints;
- // Undo
- UndoManager mUndoManager;
- SimGroup mTrash;
- SimSet mSelectedSet;
-
- // Sizing Cursors
- GuiCursor* mDefaultCursor;
- GuiCursor* mLeftRightCursor;
- GuiCursor* mUpDownCursor;
- GuiCursor* mNWSECursor;
- GuiCursor* mNESWCursor;
- GuiCursor* mMoveCursor;
- enum mouseModes { Selecting, MovingSelection, SizingSelection, DragSelecting };
- enum sizingModes { sizingNone = 0, sizingLeft = 1, sizingRight = 2, sizingTop = 4, sizingBottom = 8 };
- mouseModes mMouseDownMode;
- sizingModes mSizingMode;
- // private methods
- void updateSelectedSet();
- public:
- GuiEditCtrl();
- DECLARE_CONOBJECT(GuiEditCtrl);
- bool onWake();
- void onSleep();
- void select(GuiControl *ctrl);
- void setRoot(GuiControl *ctrl);
- void setEditMode(bool value);
- S32 getSizingHitKnobs(const Point2I &pt, const RectI &box);
- void getDragRect(RectI &b);
- void drawNut(const Point2I &nut, ColorI &outlineColor, ColorI &nutColor);
- void drawNuts(RectI &box, ColorI &outlineColor, ColorI &nutColor);
- void onPreRender();
- void onRender(Point2I offset, const RectI &updateRect);
- void addNewControl(GuiControl *ctrl);
- bool selectionContains(GuiControl *ctrl);
- void setCurrentAddSet(GuiControl *ctrl, bool clearSelection = true);
- const GuiControl* getCurrentAddSet() const;
- void setSelection(GuiControl *ctrl, bool inclusive = false);
- // Undo Access
- void undo();
- void redo();
- UndoManager& getUndoManager() { return mUndoManager; }
- // When a control is changed by the inspector
- void controlInspectPreApply(GuiControl* object);
- void controlInspectPostApply(GuiControl* object);
- // Sizing Cursors
- bool initCursors();
- void getCursor(GuiCursor *&cursor, bool &showCursor, const GuiEvent &lastGuiEvent);
- const Vector<GuiControl *> *getSelected() const { return &mSelectedControls; }
- const SimSet& getSelectedSet() { updateSelectedSet(); return mSelectedSet; }
- const SimGroup& getTrash() { return mTrash; }
- const GuiControl *getAddSet() const { return mCurrentAddSet; }; //JDD
- bool onKeyDown(const GuiEvent &event);
- void onTouchDown(const GuiEvent &event);
- void onTouchUp(const GuiEvent &event);
- void onTouchDragged(const GuiEvent &event);
- void onRightMouseDown(const GuiEvent &event);
- virtual bool onAdd();
- virtual void onRemove();
- enum Justification {
- JUSTIFY_LEFT,
- JUSTIFY_CENTER,
- JUSTIFY_RIGHT,
- JUSTIFY_TOP,
- JUSTIFY_BOTTOM,
- SPACING_VERTICAL,
- SPACING_HORIZONTAL
- };
- void justifySelection( Justification j);
- void moveSelection(const Point2I &delta);
- void moveAndSnapSelection(const Point2I &delta);
- void saveSelection(const char *filename);
- void loadSelection(const char *filename);
- void addSelection(S32 id);
- void removeSelection(S32 id);
- void deleteSelection();
- void clearSelection();
- void selectAll();
- void bringToFront();
- void pushToBack();
- void setSnapToGrid(U32 gridsize);
- void moveSelectionToCtrl(GuiControl*);
- };
- #endif //_GUI_EDIT_CTRL_H
|