1 # data file for the Fltk User Interface Designer (fluid)
8 class CMakeSetupGUI {open
10 Function {CMakeSetupGUI()} {open
12 Fl_Window dialogWindow {
13 label CMakeSetupDialog
14 callback {recentSourceDirectoriesBrowser->hide();
15 recentBinaryDirectoriesBrowser->hide();}
16 xywh {646 144 562 373} resizable visible
18 Fl_Input sourcePathTextInput {
19 label {Where is the source code: }
20 callback {SetSourcePath( sourcePathTextInput->value() );}
21 xywh {219 15 200 20} labelsize 11 when 8 textsize 11
25 callback {BrowseForSourcePath();}
26 xywh {453 14 65 22} shortcut 0x80073 labelsize 11
28 Fl_Input binaryPathTextInput {
29 label {Where do you want to build the binaries: }
30 callback {SetBinaryPath( binaryPathTextInput->value() );}
31 xywh {219 50 200 20} labelsize 11 when 8 textsize 11
35 callback {BrowseForBinaryPath();}
36 xywh {453 49 65 22} shortcut 0x80062 labelsize 11
38 Fl_Button m_CancelButton {
40 callback {ClickOnCancel();}
41 xywh {390 332 100 23} shortcut 0x80071 labelsize 11
43 Fl_Button m_ConfigureButton {
45 callback {ClickOnConfigure();}
46 xywh {105 332 100 23} shortcut 0x8006d labelsize 11
49 xywh {25 80 515 222} box ENGRAVED_BOX labelsize 11 align 0 resizable
51 Fl_Scroll cacheValuesScroll {
52 label {Cache Values} open
53 xywh {40 98 485 190} type BOTH_ALWAYS box DOWN_FRAME labelsize 11 align 5 when 1 resizable
55 Fl_Pack propertyListPack {
56 xywh {40 99 485 185} resizable
61 label {Right click on cache entries for additional options}
62 xywh {160 305 275 25} labelsize 11
66 callback {ShowRecentSourceDirectories();}
67 xywh {420 15 22 21} labeltype SYMBOL_LABEL
71 callback {ShowRecentBinaryDirectories();}
72 xywh {420 50 22 21} labeltype SYMBOL_LABEL
74 Fl_Browser recentSourceDirectoriesBrowser {
75 callback {SelectOneRecentSourceDirectory();}
76 xywh {15 35 535 115} type Hold box BORDER_BOX hide
78 Fl_Browser recentBinaryDirectoriesBrowser {
79 callback {SelectOneRecentBinaryDirectory();}
80 xywh {15 70 535 115} type Hold box BORDER_BOX hide
82 Fl_Button m_OKButton {
84 callback {ClickOnOK();} selected
85 xywh {250 332 100 23} shortcut 0x8006d labelsize 11
89 Function {~CMakeSetupGUI()} {} {}
90 Function {Close(void)} {return_type {virtual void}
92 Function {BrowseForSourcePath(void)} {return_type {virtual void}
94 Function {BrowseForBinaryPath(void)} {return_type {virtual void}
96 Function {Show(void)} {return_type {virtual void}
98 Function {SetBinaryPath(const char *)} {return_type {virtual void}
100 Function {SetSourcePath(const char *)} {return_type {virtual void}
102 Function {ShowRecentBinaryDirectories(void)} {return_type {virtual void}
104 Function {ShowRecentSourceDirectories(void)} {return_type {virtual void}
106 Function {SelectOneRecentBinaryDirectory(void)} {return_type {virtual void}
108 Function {SelectOneRecentSourceDirectory(void)} {return_type {virtual void}
110 Function {ClickOnConfigure(void)} {return_type {virtual void}
112 Function {ClickOnOK(void)} {return_type {virtual void}
114 Function {ClickOnCancel(void)} {return_type {virtual void}