NewProjectDialog.gml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. @GUI::Widget {
  2. fill_with_background_color: true
  3. layout: @GUI::VerticalBoxLayout {
  4. margins: [4]
  5. }
  6. @GUI::Label {
  7. text: "Templates:"
  8. text_alignment: "CenterLeft"
  9. max_height: 20
  10. }
  11. @GUI::Widget {
  12. layout: @GUI::VerticalBoxLayout {
  13. }
  14. name: "icon_view_container"
  15. }
  16. @GUI::Label {
  17. name: "description_label"
  18. text_alignment: "CenterLeft"
  19. thickness: 2
  20. shadow: "Sunken"
  21. shape: "Container"
  22. max_height: 24
  23. }
  24. @GUI::Widget {
  25. layout: @GUI::HorizontalBoxLayout {
  26. }
  27. max_height: 24
  28. @GUI::Label {
  29. text: "Name:"
  30. text_alignment: "CenterLeft"
  31. max_width: 75
  32. }
  33. @GUI::TextBox {
  34. name: "name_input"
  35. }
  36. }
  37. @GUI::Widget {
  38. layout: @GUI::HorizontalBoxLayout {
  39. }
  40. max_height: 24
  41. @GUI::Label {
  42. text: "Create in:"
  43. text_alignment: "CenterLeft"
  44. max_width: 75
  45. }
  46. @GUI::TextBox {
  47. name: "create_in_input"
  48. text: "/home/anon/Source"
  49. }
  50. @GUI::Button {
  51. name: "browse_button"
  52. text: "Browse"
  53. max_width: 75
  54. }
  55. }
  56. @GUI::Widget {
  57. layout: @GUI::HorizontalBoxLayout {
  58. }
  59. max_height: 24
  60. @GUI::Label {
  61. text: "Full path:"
  62. text_alignment: "CenterLeft"
  63. max_width: 75
  64. }
  65. @GUI::Label {
  66. name: "full_path_label"
  67. text_alignment: "CenterLeft"
  68. text: ""
  69. thickness: 2
  70. shadow: "Sunken"
  71. shape: "Container"
  72. max_height: 22
  73. }
  74. }
  75. @GUI::Widget {
  76. layout: @GUI::HorizontalBoxLayout {
  77. }
  78. max_height: 24
  79. @GUI::Widget {
  80. }
  81. @GUI::Button {
  82. name: "ok_button"
  83. text: "OK"
  84. max_width: 75
  85. }
  86. @GUI::Button {
  87. name: "cancel_button"
  88. text: "Cancel"
  89. max_width: 75
  90. }
  91. }
  92. }