Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.3 KiB

  1. //
  2. // mxToolKit (c) 1999 by Mete Ciragan
  3. //
  4. // file: mxScrollbar.h
  5. // implementation: all
  6. // last modified: Mar 14 1999, Mete Ciragan
  7. // copyright: The programs and associated files contained in this
  8. // distribution were developed by Mete Ciragan. The programs
  9. // are not in the public domain, but they are freely
  10. // distributable without licensing fees. These programs are
  11. // provided without guarantee or warrantee expressed or
  12. // implied.
  13. //
  14. #ifndef INCLUDED_MXSCROLLBAR
  15. #define INCLUDED_MXSCROLLBAR
  16. #ifndef INCLUDED_MXWIDGET
  17. #include "mxtk/mxWidget.h"
  18. #endif
  19. class mxWindow;
  20. class mxScrollbar_i;
  21. class mxScrollbar : public mxWidget
  22. {
  23. mxScrollbar_i *d_this;
  24. public:
  25. // ENUMS
  26. enum { Horizontal, Vertical };
  27. // CREATORS
  28. mxScrollbar (mxWindow *parent, int x, int y, int w, int h, int id = 0, int style = 0);
  29. virtual ~mxScrollbar ();
  30. // MANIPULATORS
  31. void setValue (int ivalue);
  32. void setRange (int min, int max);
  33. void setPagesize (int size);
  34. // ACCESSORS
  35. int getValue () const;
  36. int getMinValue () const;
  37. int getMaxValue () const;
  38. int getPagesize () const;
  39. private:
  40. // NOT IMPLEMENTED
  41. mxScrollbar (const mxScrollbar&);
  42. mxScrollbar& operator= (const mxScrollbar&);
  43. };
  44. #endif // INCLUDED_MXSCROLLBAR