connectDlg.ed.gui 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl(DebuggerConnectDlg, EditorGuiGroup) {
  3. profile = "ToolsGuiDefaultProfile";
  4. horizSizing = "right";
  5. vertSizing = "bottom";
  6. position = "0 0";
  7. extent = "640 480";
  8. minExtent = "8 8";
  9. visible = "True";
  10. setFirstResponder = "False";
  11. modal = "True";
  12. helpTag = "0";
  13. new GuiWindowCtrl() {
  14. profile = "ToolsGuiWindowProfile";
  15. horizSizing = "right";
  16. vertSizing = "bottom";
  17. position = "220 146";
  18. extent = "200 188";
  19. minExtent = "8 8";
  20. visible = "True";
  21. setFirstResponder = "False";
  22. modal = "True";
  23. helpTag = "0";
  24. text = "Connect to server:";
  25. resizeWidth = "True";
  26. resizeHeight = "True";
  27. canMove = "False";
  28. canClose = "False";
  29. canMinimize = "False";
  30. canMaximize = "False";
  31. minSize = "50 50";
  32. new GuiTextCtrl() {
  33. profile = "ToolsGuiTextProfile";
  34. horizSizing = "right";
  35. vertSizing = "bottom";
  36. position = "20 28";
  37. extent = "55 18";
  38. minExtent = "8 8";
  39. visible = "True";
  40. setFirstResponder = "False";
  41. modal = "True";
  42. helpTag = "0";
  43. text = "IP Address:";
  44. };
  45. new GuiTextEditCtrl(DebuggerConnectAddress) {
  46. profile = "ToolsGuiTextEditProfile";
  47. horizSizing = "right";
  48. vertSizing = "bottom";
  49. position = "20 44";
  50. extent = "160 18";
  51. minExtent = "8 8";
  52. visible = "True";
  53. setFirstResponder = "False";
  54. modal = "True";
  55. variable = "$pref::DBGConnectAddress";
  56. helpTag = "0";
  57. historySize = "0";
  58. returnTab = "true";
  59. };
  60. new GuiTextCtrl() {
  61. profile = "ToolsGuiTextProfile";
  62. horizSizing = "right";
  63. vertSizing = "bottom";
  64. position = "20 68";
  65. extent = "21 18";
  66. minExtent = "8 8";
  67. visible = "True";
  68. setFirstResponder = "False";
  69. modal = "True";
  70. helpTag = "0";
  71. text = "Port:";
  72. };
  73. new GuiTextEditCtrl(DebuggerConnectPort) {
  74. profile = "ToolsGuiTextEditProfile";
  75. horizSizing = "right";
  76. vertSizing = "bottom";
  77. position = "20 84";
  78. extent = "160 18";
  79. minExtent = "8 8";
  80. visible = "True";
  81. setFirstResponder = "False";
  82. modal = "True";
  83. variable = "$pref::DBGConnectPort";
  84. helpTag = "0";
  85. historySize = "0";
  86. returnTab = "true";
  87. };
  88. new GuiTextCtrl() {
  89. profile = "ToolsGuiTextProfile";
  90. horizSizing = "right";
  91. vertSizing = "bottom";
  92. position = "20 108";
  93. extent = "52 18";
  94. minExtent = "8 8";
  95. visible = "True";
  96. setFirstResponder = "False";
  97. modal = "True";
  98. helpTag = "0";
  99. text = "Password:";
  100. };
  101. new GuiTextEditCtrl(DebuggerConnectPassword) {
  102. profile = "ToolsGuiTextEditProfile";
  103. horizSizing = "right";
  104. vertSizing = "bottom";
  105. position = "20 124";
  106. extent = "160 18";
  107. minExtent = "8 8";
  108. visible = "True";
  109. setFirstResponder = "False";
  110. modal = "True";
  111. variable = "$pref::DBGConnectPassword";
  112. helpTag = "0";
  113. historySize = "0";
  114. returnTab = "true";
  115. };
  116. new GuiButtonCtrl() {
  117. profile = "ToolsGuiButtonProfile";
  118. horizSizing = "right";
  119. vertSizing = "bottom";
  120. position = "56 156";
  121. extent = "40 16";
  122. minExtent = "8 8";
  123. visible = "True";
  124. setFirstResponder = "False";
  125. modal = "True";
  126. command = "DbgConnect();";
  127. helpTag = "0";
  128. text = "Open";
  129. };
  130. new GuiButtonCtrl() {
  131. profile = "ToolsGuiButtonProfile";
  132. horizSizing = "right";
  133. vertSizing = "bottom";
  134. position = "104 156";
  135. extent = "40 16";
  136. minExtent = "8 8";
  137. visible = "True";
  138. setFirstResponder = "False";
  139. modal = "True";
  140. command = "Canvas.popDialog(DebuggerConnectDlg);";
  141. helpTag = "0";
  142. text = "Cancel";
  143. };
  144. };
  145. };
  146. //--- OBJECT WRITE END ---