summaryrefslogtreecommitdiff
path: root/FL/Fl_Menu_Window.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-11-26 15:16:15 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-11-26 15:16:15 +0100
commiteb8b016fabee89d77009b269c3d6e6b999592881 (patch)
tree1001dea9b2c004234436601f9d48eef058a6ae6c /FL/Fl_Menu_Window.H
parent84cf24948245d893cde9b3ef8c9eee614191de80 (diff)
Fix for issue #254: remove hardware overlay support .
Diffstat (limited to 'FL/Fl_Menu_Window.H')
-rw-r--r--FL/Fl_Menu_Window.H11
1 files changed, 0 insertions, 11 deletions
diff --git a/FL/Fl_Menu_Window.H b/FL/Fl_Menu_Window.H
index deae888af..dbd9cae09 100644
--- a/FL/Fl_Menu_Window.H
+++ b/FL/Fl_Menu_Window.H
@@ -30,17 +30,6 @@
*/
class FL_EXPORT Fl_Menu_Window : public Fl_Single_Window {
public:
- void show();
- void erase();
- void flush();
- void hide();
- /** Tells if hardware overlay mode is set */
- unsigned int overlay() {return !(flags()&NO_OVERLAY);}
- /** Tells FLTK to use hardware overlay planes if they are available. */
- void set_overlay() {clear_flag(NO_OVERLAY);}
- /** Tells FLTK to use normal drawing planes instead of overlay planes.
- This is usually necessary if your menu contains multi-color pixmaps. */
- void clear_overlay() {set_flag(NO_OVERLAY);}
~Fl_Menu_Window();
/** Creates a new Fl_Menu_Window widget using the given size, and label string. */
Fl_Menu_Window(int W, int H, const char *l = 0);