CMakeSetupGUI.fl 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # data file for the Fltk User Interface Designer (fluid)
  2. version 1.0010
  3. header_name {.h}
  4. code_name {.cpp}
  5. gridx 5
  6. gridy 5
  7. snap 3
  8. class CMakeSetupGUI {open
  9. } {
  10. Function {CMakeSetupGUI()} {} {
  11. Fl_Window dialogWindow {
  12. label CMakeSetupDialog
  13. xywh {542 411 563 363} visible
  14. } {
  15. Fl_Input sourcePathTextInput {
  16. label {Where is the source code: }
  17. callback {SetSourcePath( sourcePathTextInput->value() );} selected
  18. xywh {219 15 200 20} labelsize 11 when 8 textsize 11
  19. }
  20. Fl_Button {} {
  21. label {Browse...}
  22. callback {BrowseForSourcePath();}
  23. xywh {426 14 65 22} labelsize 11
  24. }
  25. Fl_Input binaryPathTextInput {
  26. label {Where do you want to build the binaries: }
  27. callback {SetBinaryPath( binaryPathTextInput->value() );}
  28. xywh {219 50 200 20} labelsize 11 when 8 textsize 11
  29. }
  30. Fl_Button {} {
  31. label {Browse...}
  32. callback {BrowseForBinaryPath();}
  33. xywh {426 50 65 22} labelsize 11
  34. }
  35. Fl_Button {} {
  36. label Close
  37. callback {Close()}
  38. xywh {345 331 77 23} labelsize 11
  39. }
  40. Fl_Button {} {
  41. label {Build Project Files}
  42. callback {BuildProjectFiles();}
  43. xywh {123 332 101 23} labelsize 11
  44. }
  45. Fl_Group {} {open
  46. xywh {25 80 515 222} box ENGRAVED_FRAME labelsize 11 align 0
  47. } {
  48. Fl_Scroll {} {
  49. label {Cache Values} open
  50. xywh {40 98 485 190} type VERTICAL_ALWAYS box DOWN_BOX labelsize 11 align 5
  51. } {}
  52. }
  53. Fl_Box {} {
  54. label {Right click on cache entries for additional options}
  55. xywh {141 305 275 25} labelsize 11
  56. }
  57. }
  58. }
  59. Function {~CMakeSetupGUI()} {} {}
  60. Function {Close(void)} {return_type {virtual void}
  61. } {}
  62. Function {BuildProjectFiles(void)} {return_type {virtual void}
  63. } {}
  64. Function {BrowseForSourcePath(void)} {return_type {virtual void}
  65. } {}
  66. Function {BrowseForBinaryPath(void)} {return_type {virtual void}
  67. } {}
  68. Function {Show(void)} {return_type {virtual void}
  69. } {}
  70. Function {SetBinaryPath(const char *)} {return_type {virtual void}
  71. } {}
  72. Function {SetSourcePath(const char *)} {return_type {virtual void}
  73. } {}
  74. }