diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-17 15:58:00 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-17 15:58:00 (GMT) |
commit | c1b4b7730e3fde0b8abb89fee3c11c8d1326dd80 (patch) | |
tree | 8671f9a2668d02cb526633d8f07457a6f2d9080b /Source/FLTKDialog | |
parent | 1094200ea060dad38eaffd6e06cb5852d556a559 (diff) | |
download | CMake-c1b4b7730e3fde0b8abb89fee3c11c8d1326dd80.zip CMake-c1b4b7730e3fde0b8abb89fee3c11c8d1326dd80.tar.gz CMake-c1b4b7730e3fde0b8abb89fee3c11c8d1326dd80.tar.bz2 |
GUI description file used by FLTK interactive tool : FLUID
Diffstat (limited to 'Source/FLTKDialog')
-rw-r--r-- | Source/FLTKDialog/CMakeSetupGUI.fl | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/Source/FLTKDialog/CMakeSetupGUI.fl b/Source/FLTKDialog/CMakeSetupGUI.fl new file mode 100644 index 0000000..39a21f4 --- /dev/null +++ b/Source/FLTKDialog/CMakeSetupGUI.fl @@ -0,0 +1,74 @@ +# data file for the Fltk User Interface Designer (fluid)
+version 1.0010
+header_name {.h}
+code_name {.cpp}
+gridx 5
+gridy 5
+snap 3
+class CMakeSetupGUI {open
+} {
+ Function {CMakeSetupGUI()} {} {
+ Fl_Window dialogWindow {
+ label CMakeSetupDialog
+ xywh {542 411 563 363} visible
+ } {
+ Fl_Input sourcePathTextInput {
+ label {Where is the source code: }
+ callback {SetSourcePath( sourcePathTextInput->value() );} selected
+ xywh {219 15 200 20} labelsize 11 when 8 textsize 11
+ }
+ Fl_Button {} {
+ label {Browse...}
+ callback {BrowseForSourcePath();}
+ xywh {426 14 65 22} labelsize 11
+ }
+ Fl_Input binaryPathTextInput {
+ label {Where do you want to build the binaries: }
+ callback {SetBinaryPath( binaryPathTextInput->value() );}
+ xywh {219 50 200 20} labelsize 11 when 8 textsize 11
+ }
+ Fl_Button {} {
+ label {Browse...}
+ callback {BrowseForBinaryPath();}
+ xywh {426 50 65 22} labelsize 11
+ }
+ Fl_Button {} {
+ label Close
+ callback {Close()}
+ xywh {345 331 77 23} labelsize 11
+ }
+ Fl_Button {} {
+ label {Build Project Files}
+ callback {BuildProjectFiles();}
+ xywh {123 332 101 23} labelsize 11
+ }
+ Fl_Group {} {open
+ xywh {25 80 515 222} box ENGRAVED_FRAME labelsize 11 align 0
+ } {
+ Fl_Scroll {} {
+ label {Cache Values} open
+ xywh {40 98 485 190} type VERTICAL_ALWAYS box DOWN_BOX labelsize 11 align 5
+ } {}
+ }
+ Fl_Box {} {
+ label {Right click on cache entries for additional options}
+ xywh {141 305 275 25} labelsize 11
+ }
+ }
+ }
+ Function {~CMakeSetupGUI()} {} {}
+ Function {Close(void)} {return_type {virtual void}
+ } {}
+ Function {BuildProjectFiles(void)} {return_type {virtual void}
+ } {}
+ Function {BrowseForSourcePath(void)} {return_type {virtual void}
+ } {}
+ Function {BrowseForBinaryPath(void)} {return_type {virtual void}
+ } {}
+ Function {Show(void)} {return_type {virtual void}
+ } {}
+ Function {SetBinaryPath(const char *)} {return_type {virtual void}
+ } {}
+ Function {SetSourcePath(const char *)} {return_type {virtual void}
+ } {}
+}
|