Revision 773,
420 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Line | |
---|
1 | #ifndef Fl_Window_H |
---|
2 | #define Fl_Window_H |
---|
3 | |
---|
4 | #include "Fl_Group.H" |
---|
5 | #include <fltk/Window.h> |
---|
6 | |
---|
7 | class Fl_Window : public fltk::Window { |
---|
8 | |
---|
9 | public: |
---|
10 | Fl_Window(int x, int y, int w, int h, const char*l = 0) |
---|
11 | : fltk::Window(x,y,w,h,l) {begin();} |
---|
12 | |
---|
13 | Fl_Window(int x, int y, const char*l = 0) |
---|
14 | : fltk::Window(x,y,l) {begin();} |
---|
15 | |
---|
16 | void border(bool v) { |
---|
17 | if (!v) clear_border(); // set_border does not work |
---|
18 | } |
---|
19 | }; |
---|
20 | |
---|
21 | #endif |
---|
22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.