CMakeSetupGUI.fl 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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
  11. } {
  12. Fl_Window dialogWindow {
  13. label CMakeSetupDialog
  14. callback {recentSourceDirectoriesBrowser->hide();
  15. recentBinaryDirectoriesBrowser->hide();} open selected
  16. xywh {645 144 563 363} resizable visible
  17. } {
  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
  22. }
  23. Fl_Button {} {
  24. label {Browse...}
  25. callback {BrowseForSourcePath();}
  26. xywh {453 14 65 22} shortcut 0x80073 labelsize 11
  27. }
  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
  32. }
  33. Fl_Button {} {
  34. label {Browse...}
  35. callback {BrowseForBinaryPath();}
  36. xywh {453 49 65 22} shortcut 0x80062 labelsize 11
  37. }
  38. Fl_Button {} {
  39. label Close
  40. callback {Close();}
  41. xywh {345 331 77 23} shortcut 0x80071 labelsize 11
  42. }
  43. Fl_Button {} {
  44. label {Build Project Files}
  45. callback {BuildProjectFiles();}
  46. xywh {123 332 101 23} shortcut 0x8006d labelsize 11
  47. }
  48. Fl_Group {} {
  49. xywh {25 80 515 222} box ENGRAVED_BOX labelsize 11 align 0 resizable
  50. } {
  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
  54. } {
  55. Fl_Pack propertyListPack {
  56. xywh {40 99 485 185} resizable
  57. } {}
  58. }
  59. }
  60. Fl_Box {} {
  61. label {Right click on cache entries for additional options}
  62. xywh {141 305 275 25} labelsize 11
  63. }
  64. Fl_Button {} {
  65. label {@\#2>}
  66. callback {ShowRecentSourceDirectories();}
  67. xywh {420 15 22 21} labeltype SYMBOL_LABEL
  68. }
  69. Fl_Button {} {
  70. label {@\#2>}
  71. callback {ShowRecentBinaryDirectories();}
  72. xywh {420 50 22 21} labeltype SYMBOL_LABEL
  73. }
  74. Fl_Browser recentSourceDirectoriesBrowser {
  75. callback {SelectOneRecentSourceDirectory();}
  76. xywh {15 35 535 115} type Hold box BORDER_BOX hide
  77. }
  78. Fl_Browser recentBinaryDirectoriesBrowser {
  79. callback {SelectOneRecentBinaryDirectory();}
  80. xywh {15 70 535 115} type Hold box BORDER_BOX hide
  81. }
  82. }
  83. }
  84. Function {~CMakeSetupGUI()} {} {}
  85. Function {Close(void)} {return_type {virtual void}
  86. } {}
  87. Function {BuildProjectFiles(void)} {return_type {virtual void}
  88. } {}
  89. Function {BrowseForSourcePath(void)} {return_type {virtual void}
  90. } {}
  91. Function {BrowseForBinaryPath(void)} {return_type {virtual void}
  92. } {}
  93. Function {Show(void)} {return_type {virtual void}
  94. } {}
  95. Function {SetBinaryPath(const char *)} {return_type {virtual bool}
  96. } {}
  97. Function {SetSourcePath(const char *)} {return_type {virtual bool}
  98. } {}
  99. Function {ShowRecentBinaryDirectories(void)} {return_type {virtual void}
  100. } {}
  101. Function {ShowRecentSourceDirectories(void)} {return_type {virtual void}
  102. } {}
  103. Function {SelectOneRecentBinaryDirectory(void)} {return_type {virtual void}
  104. } {}
  105. Function {SelectOneRecentSourceDirectory(void)} {return_type {virtual void}
  106. } {}
  107. }