CMakeSetupGUI.fl 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 open
  13. xywh {542 411 563 363} resizable visible
  14. } {
  15. Fl_Input sourcePathTextInput {
  16. label {Where is the source code: }
  17. callback {SetSourcePath( sourcePathTextInput->value() );}
  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 selected
  46. xywh {25 80 515 222} box ENGRAVED_FRAME labelsize 11 align 0 resizable
  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. Fl_Pack propertyListPack {open
  53. xywh {40 99 485 185} resizable
  54. code0 {InsertProperties();}
  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 void}
  76. } {}
  77. Function {SetSourcePath(const char *)} {return_type {virtual void}
  78. } {}
  79. Function {InsertProperties(void)} {open return_type {virtual void}
  80. } {}
  81. }