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.

25 lines
529B

  1. // generated by Fast Light User Interface Designer (fluid) version 1.0010
  2. #ifndef Fl_DragBar_H
  3. #define Fl_DragBar_H
  4. #include <FL/Fl.H>
  5. #include <FL/fl_draw.H>
  6. #include <FL/Fl_Widget.H>
  7. #include <FL/Fl_Window.H>
  8. #include <string>
  9. class Fl_DragBar : public Fl_Widget {
  10. int old_rx,old_ry;
  11. int _type;
  12. public:
  13. enum DragType {WINDRAG=0,NICEWINDRAG,FLDRAG,NICEFLDRAG};
  14. Fl_DragBar(int x,int y,int w,int h,const char *l=0);
  15. ~Fl_DragBar();
  16. private:
  17. void draw();
  18. int handle(int event);
  19. public:
  20. void type(int t);
  21. };
  22. #endif