123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- //-----------------------------------------------------------------------------
- // 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 _GUISCROLLCTRL_H_
- #define _GUISCROLLCTRL_H_
- #ifndef _GUICONTROL_H_
- #include "gui/guiControl.h"
- #endif
- class GuiScrollCtrl : public GuiControl
- {
- private:
- typedef GuiControl Parent;
- protected:
- // the scroll control uses a bitmap array to draw all its
- // graphics... these are the bitmaps it needs:
- enum BitmapIndices
- {
- BmpUp,
- BmpDown,
- BmpVThumbTopCap,
- BmpVThumb,
- BmpVThumbBottomCap,
- BmpVPage,
- BmpLeft,
- BmpRight,
- BmpHThumbLeftCap,
- BmpHThumb,
- BmpHThumbRightCap,
- BmpHPage,
- BmpResize,
- BmpCount
- };
- enum BitmapStates
- {
- BmpDefault = 0,
- BmpHilite,
- BmpDisabled,
- BmpStates
- };
- RectI *mBitmapBounds; //bmp is [3*n], bmpHL is [3*n + 1], bmpNA is [3*n + 2]
- TextureHandle mTextureHandle;
- S32 mBorderThickness; // this gets set per class in the constructor
- Point2I mChildMargin; // the thickeness of the margin around the child controls
- // note - it is implicit in the scroll view that the buttons all have the same
- // arrow length and that horizontal and vertical scroll bars have the
- // same thickness
- S32 mScrollBarThickness; // determined by the width of the vertical page bmp
- S32 mScrollBarArrowBtnLength; // determined by the height of the up arrow
- S32 mScrollBarDragTolerance; // maximal distance from scrollbar at which a scrollbar drag is still valid
- bool mHBarEnabled;
- bool mVBarEnabled;
- bool mHasHScrollBar;
- bool mHasVScrollBar;
- Point2I mContentPos; // the position of the content region in the control's coord system
- Point2I mContentExt; // the extent of the content region
- Point2I mChildPos; // the position of the upper left corner of the child control(s)
- Point2I mChildExt;
- Point2I mChildRelPos; // the relative position of the upper left content corner in
- // the child's coordinate system - 0,0 if scrolled all the way to upper left.
- //--------------------------------------
- // for mouse dragging the thumb
- Point2I mChildRelPosAnchor; // the original childRelPos when scrolling started
- S32 mThumbMouseDelta;
- S32 mLastUpdated;
- S32 mHThumbSize;
- S32 mHThumbPos;
- S32 mVThumbSize;
- S32 mVThumbPos;
- S32 mBaseThumbSize;
- RectI mUpArrowRect;
- RectI mDownArrowRect;
- RectI mLeftArrowRect;
- RectI mRightArrowRect;
- RectI mHTrackRect;
- RectI mVTrackRect;
- bool mUseScrollEvents; // produce onScroll callbacks
- //--------------------------------------
- // for determing hit area
- public: //called by the ComboPopUp class
- enum Region
- {
- UpArrow,
- DownArrow,
- LeftArrow,
- RightArrow,
- UpPage,
- DownPage,
- LeftPage,
- RightPage,
- VertThumb,
- HorizThumb,
- None
- };
- enum {
- ScrollBarAlwaysOn = 0,
- ScrollBarAlwaysOff = 1,
- ScrollBarDynamic = 2
- };
- bool stateDepressed;
- Region curHitRegion;
- bool disabled;
- S32 mForceHScrollBar;
- S32 mForceVScrollBar;
- bool mUseConstantHeightThumb;
- bool mWillFirstRespond; // for automatically handling arrow keys
- Region findHitRegion(const Point2I &);
- protected:
- virtual bool calcChildExtents();
- virtual void calcScrollRects(void);
- void calcThumbs();
- void scrollByRegion(Region reg);
- //--------------------------------------
- //--------------------------------------
- public:
- GuiScrollCtrl();
- DECLARE_CONOBJECT(GuiScrollCtrl);
- static void initPersistFields();
- void autoScroll(Region reg);
- void scrollTo(S32 x, S32 y);
- void scrollDelta(S32 x, S32 y);
- void scrollRectVisible(RectI rect);
- void computeSizes();
- // you can change the bitmap array dynamically.
- void loadBitmapArray();
- void addObject(SimObject *obj);
- void resize(const Point2I &newPosition, const Point2I &newExtent);
- void childResized(GuiControl *child);
- Point2I getChildPos() { return mChildPos; }
- Point2I getChildRelPos() { return mChildRelPos; };
- Point2I getChildExtent() { return mChildExt; }
- Point2I getContentExtent() { return mContentExt; }
- Point2I getChildMargin() { return mChildMargin; } // DAW: Added to aid in sizing calculations
- bool getUseScrollEvents() { return mUseScrollEvents; }
- void setUseScrollEvents(const bool &flag) { mUseScrollEvents = flag; }
- S32 getBorderThickness(void) { return mBorderThickness; }
- S32 scrollBarThickness() const { return(mScrollBarThickness); }
- S32 scrollBarArrowBtnLength() const { return(mScrollBarArrowBtnLength); }
- bool hasHScrollBar() const { return(mHasHScrollBar); }
- bool hasVScrollBar() const { return(mHasVScrollBar); }
- bool enabledHScrollBar() const { return(mHBarEnabled); }
- bool enabledVScrollBar() const { return(mVBarEnabled); }
- bool isScrolledToBottom() { return mChildPos.y + mChildExt.y <= mContentPos.y + mContentExt.y; }
- bool wantsTabListMembership();
- bool becomeFirstResponder();
- bool loseFirstResponder();
- Region getCurHitRegion(void) { return curHitRegion; }
- bool onKeyDown(const GuiEvent &event);
- void onMouseDown(const GuiEvent &event);
- void onMouseRepeat(const GuiEvent &event);
- void onMouseUp(const GuiEvent &event);
- void onMouseDragged(const GuiEvent &event);
- bool onMouseWheelUp(const GuiEvent &event);
- bool onMouseWheelDown(const GuiEvent &event);
- bool onWake();
- void onSleep();
- void onPreRender();
- void onRender(Point2I offset, const RectI &updateRect);
- virtual void drawBorder(const Point2I &offset, bool isFirstResponder);
- virtual void drawVScrollBar(const Point2I &offset);
- virtual void drawHScrollBar(const Point2I &offset);
- virtual void drawScrollCorner(const Point2I &offset);
- virtual GuiControl* findHitControl(const Point2I &pt, S32 initialLayer = -1);
- };
- #endif //_GUI_SCROLL_CTRL_H
|