summaryrefslogtreecommitdiff
path: root/src/Fl_System_Driver.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-02-03 07:03:26 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-02-03 07:03:44 +0100
commit2e6e0b9c36fbf92d0d551aca077580e7a57c266a (patch)
tree206ba84e89b8624f4377c4f9b90862ea892f9cc7 /src/Fl_System_Driver.H
parentd9451a86696a2aa58d46cb18180c9344a5e0c179 (diff)
Reorganize classes Fl_System_Driver and Fl_Screen_Driver
These virtual members are moved from Fl_Screen_Driver to Fl_System_Driver - wait(double) - ready() These virtual members are moved from Fl_System_Driver to Fl_Screen_Driver - copy(const char *stuff, int len, int clipboard, const char *type) - void paste(Fl_Widget &widget, int clipboard, const char *type) - clipboard_contains(const char *type) - clipboard_notify_change() These members are moved from Fl_X11_Screen_Driver to Fl_X11_System_Driver - poll_or_select_with_delay(double time_to_wait) - poll_or_select() and are made virtual in preparation for the introduction of class Fl_Unix_System_Driver.
Diffstat (limited to 'src/Fl_System_Driver.H')
-rw-r--r--src/Fl_System_Driver.H10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/Fl_System_Driver.H b/src/Fl_System_Driver.H
index 37b5486fa..e010212fe 100644
--- a/src/Fl_System_Driver.H
+++ b/src/Fl_System_Driver.H
@@ -225,14 +225,6 @@ public:
static const char * const tree_close_xpm[]; // used by tree_closepixmap()
// the default implementation of tree_connector_style() is in Fl_Tree_Prefs.cxx and can be enough
virtual int tree_connector_style();
- // implement to support copy-to-clipboard
- virtual void copy(const char */*stuff*/, int /*len*/, int /*clipboard*/, const char */*type*/) {}
- // implement to support paste-from-clipboard
- virtual void paste(Fl_Widget &, int /*clipboard*/, const char */*type*/) {}
- // implement to support paste-from-clipboard
- virtual int clipboard_contains(const char */*type*/) {return 0;}
- // implement to support paste-from-clipboard
- virtual void clipboard_notify_change() {}
virtual void add_fd(int fd, int when, Fl_FD_Handler cb, void* = 0);
virtual void add_fd(int fd, Fl_FD_Handler cb, void* = 0);
virtual void remove_fd(int, int when);
@@ -249,6 +241,8 @@ public:
virtual Fl_Sys_Menu_Bar_Driver *sys_menu_bar_driver() { return NULL; }
virtual void lock_ring() {}
virtual void unlock_ring() {}
+ virtual double wait(double) { return 0.0; } // must override
+ virtual int ready() { return 0; } // must override
};
#endif // FL_SYSTEM_DRIVER_H