FLTK 1.3.2
Fl_Menu_Window.H
1 //
2 // "$Id: Fl_Menu_Window.H 9637 2012-07-24 04:37:22Z matt $"
3 //
4 // Menu window header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2010 by Bill Spitzak and others.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // http://www.fltk.org/COPYING.php
13 //
14 // Please report all bugs and problems on the following page:
15 //
16 // http://www.fltk.org/str.php
17 //
18 
19 /* \file
20  Fl_Menu_Window widget . */
21 
22 #ifndef Fl_Menu_Window_H
23 #define Fl_Menu_Window_H
24 
25 #include "Fl_Single_Window.H"
26 
33 class FL_EXPORT Fl_Menu_Window : public Fl_Single_Window {
34 public:
35  void show();
36  void erase();
37  void flush();
38  void hide();
40  unsigned int overlay() {return !(flags()&NO_OVERLAY);}
42  void set_overlay() {clear_flag(NO_OVERLAY);}
45  void clear_overlay() {set_flag(NO_OVERLAY);}
46  ~Fl_Menu_Window();
48  Fl_Menu_Window(int W, int H, const char *l = 0);
50  Fl_Menu_Window(int X, int Y, int W, int H, const char *l = 0);
51 };
52 
53 #endif
54 
55 //
56 // End of "$Id: Fl_Menu_Window.H 9637 2012-07-24 04:37:22Z matt $".
57 //