CMakeSetupGUI.fl 2.4 KB

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