Revision 773,
622 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Rev | Line | |
---|
[773] | 1 | #ifndef Fl_Browser_H |
---|
| 2 | #define Fl_Browser_H |
---|
| 3 | |
---|
| 4 | #include "Fl_Scrollbar.H" |
---|
| 5 | #include "Fl_Menu_.H" |
---|
| 6 | #include <fltk/Browser.h> |
---|
| 7 | class Fl_Browser : public fltk::Browser { |
---|
| 8 | public: |
---|
| 9 | Fl_Browser(int x, int y, int w, int h, const char* l = 0) |
---|
| 10 | :fltk::Browser(x,y,w,h,l) {} |
---|
| 11 | |
---|
| 12 | void make_visible(int n) {goto_index(n); make_item_visible();} |
---|
| 13 | bool load(const char* fname) {/* NYI */ return true;} |
---|
| 14 | void position(int y) {goto_position(y);} |
---|
| 15 | }; |
---|
| 16 | |
---|
| 17 | enum { |
---|
| 18 | FL_NORMAL_BROWSER = fltk::Browser::NORMAL, |
---|
| 19 | FL_SELECT_BROWSER = fltk::Browser::NORMAL, |
---|
| 20 | FL_HOLD_BROWSER = fltk::Browser::NORMAL, |
---|
| 21 | FL_MULTI_BROWSER = fltk::Browser::MULTI |
---|
| 22 | }; |
---|
| 23 | |
---|
| 24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.