summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-23 15:14:17 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-23 15:14:17 +0000
commit745cd4204a3d9cc379e99db6f6cf9d75d4337c3b (patch)
treeb7f145c11a10a9418388a2f5df61ce75675ab8fb /FL
parent57cef6a4bde017e205e54271e769de0db596d893 (diff)
Make newButton and previewButton public, so that you can hide/disable them
as desired. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2544 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_File_Chooser.H4
1 files changed, 4 insertions, 0 deletions
diff --git a/FL/Fl_File_Chooser.H b/FL/Fl_File_Chooser.H
index f53068f00..46b31a470 100644
--- a/FL/Fl_File_Chooser.H
+++ b/FL/Fl_File_Chooser.H
@@ -52,7 +52,9 @@ private:
Fl_Menu_Button *favoritesButton;
inline void cb_favoritesButton_i(Fl_Menu_Button*, void*);
static void cb_favoritesButton(Fl_Menu_Button*, void*);
+public:
Fl_Button *newButton;
+private:
inline void cb_newButton_i(Fl_Button*, void*);
static void cb_newButton(Fl_Button*, void*);
inline void cb__i(Fl_Tile*, void*);
@@ -61,7 +63,9 @@ private:
inline void cb_fileList_i(Fl_File_Browser*, void*);
static void cb_fileList(Fl_File_Browser*, void*);
Fl_Box *previewBox;
+public:
Fl_Check_Button *previewButton;
+private:
inline void cb_previewButton_i(Fl_Check_Button*, void*);
static void cb_previewButton(Fl_Check_Button*, void*);
Fl_File_Input *fileName;