summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-17 06:00:49 +0000
committerManolo Gouy <Manolo>2016-04-17 06:00:49 +0000
commitbefd771dd68447b00aaf3334a35203dc5df63c72 (patch)
treec2d471dac30f96e34e3d72604711ab30707f3123
parentc6c92e40370863cad1d05146551298cf5c070c63 (diff)
Remove a few // TODO: check after having checked
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11637 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/Fl_Window_Driver.H21
1 files changed, 10 insertions, 11 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H
index d2d485a52..db1f33f9f 100644
--- a/FL/Fl_Window_Driver.H
+++ b/FL/Fl_Window_Driver.H
@@ -114,8 +114,8 @@ public:
virtual void label(const char *name, const char *mininame);
virtual Fl_X *makeWindow() { /* FIXME: move Fl_X::make(Fl_Window*) here for OSX, MSWin, and X11 */ return 0; }
- virtual void wait_for_expose() {} // TODO: check
- virtual void destroy_double_buffer(); // TODO: check
+ virtual void wait_for_expose() {}
+ virtual void destroy_double_buffer();
virtual void show();
virtual void show_menu();
virtual void resize(int X,int Y,int W,int H) {}
@@ -136,19 +136,19 @@ public:
virtual void redraw_overlay();
// --- window shape stuff
- void shape_pixmap_(Fl_Image* pixmap); // TODO: check
- virtual void shape(const Fl_Image* img) {} // TODO: check
- virtual void shape_alpha_(Fl_Image* img, int offset) {} // TODO: check
+ void shape_pixmap_(Fl_Image* pixmap); // platform-independent, support function
+ virtual void shape(const Fl_Image* img) {}
+ virtual void shape_alpha_(Fl_Image* img, int offset) {}
// --- window icon stuff
- virtual void icons(const Fl_RGB_Image *icons[], int count) {} // TODO: check
- virtual const void *icon() const {return NULL;} // TODO: check
- virtual void icon(const void * ic) {} // TODO: check
- virtual void free_icons() {} // TODO: check
+ virtual void icons(const Fl_RGB_Image *icons[], int count) {}
+ virtual const void *icon() const {return NULL;}
+ virtual void icon(const void * ic) {}
+ virtual void free_icons() {}
// each platform implements this its own way
static void default_icons(const Fl_RGB_Image *icons[], int count);
- // --- window printing helper
+ // --- window printing/drawing helper
virtual void capture_titlebar_and_borders(Fl_Shared_Image*& top, Fl_Shared_Image*& left,
Fl_Shared_Image*& bottom, Fl_Shared_Image*& right);
#if defined(FL_PORTING)
@@ -158,7 +158,6 @@ public:
void (*draw_area)(void*, int,int,int,int), void* data) { return 0; }
};
-
#endif // FL_WINDOW_DRIVER_H
//