CMakeSetupGUI.fl 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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();}
  16. xywh {646 144 562 373} 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 m_CancelButton {
  39. label Cancel
  40. callback {ClickOnCancel();}
  41. xywh {390 332 100 23} shortcut 0x80071 labelsize 11
  42. }
  43. Fl_Button m_ConfigureButton {
  44. label Configure
  45. callback {ClickOnConfigure();}
  46. xywh {105 332 100 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 {160 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. Fl_Button m_OKButton {
  83. label OK
  84. callback {ClickOnOK();} selected
  85. xywh {250 332 100 23} shortcut 0x8006d labelsize 11
  86. }
  87. }
  88. }
  89. Function {~CMakeSetupGUI()} {} {}
  90. Function {Close(void)} {return_type {virtual void}
  91. } {}
  92. Function {BrowseForSourcePath(void)} {return_type {virtual void}
  93. } {}
  94. Function {BrowseForBinaryPath(void)} {return_type {virtual void}
  95. } {}
  96. Function {Show(void)} {return_type {virtual void}
  97. } {}
  98. Function {SetBinaryPath(const char *)} {return_type {virtual bool}
  99. } {}
  100. Function {SetSourcePath(const char *)} {return_type {virtual bool}
  101. } {}
  102. Function {ShowRecentBinaryDirectories(void)} {return_type {virtual void}
  103. } {}
  104. Function {ShowRecentSourceDirectories(void)} {return_type {virtual void}
  105. } {}
  106. Function {SelectOneRecentBinaryDirectory(void)} {return_type {virtual void}
  107. } {}
  108. Function {SelectOneRecentSourceDirectory(void)} {return_type {virtual void}
  109. } {}
  110. Function {ClickOnConfigure(void)} {return_type {virtual void}
  111. } {}
  112. Function {ClickOnOK(void)} {return_type {virtual void}
  113. } {}
  114. Function {ClickOnCancel(void)} {return_type {virtual void}
  115. } {}
  116. }