breakConditionDlg.ed.gui 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl(DebuggerBreakConditionDlg, 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 = "Set the break condition";
  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 = "121 18";
  38. minExtent = "8 8";
  39. visible = "True";
  40. setFirstResponder = "False";
  41. modal = "True";
  42. helpTag = "0";
  43. text = "Enter the break condition:";
  44. };
  45. new GuiTextEditCtrl(BreakCondition) {
  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. altCommand = "DbgBreakConditionSet();";
  56. helpTag = "0";
  57. historySize = "0";
  58. };
  59. new GuiTextCtrl() {
  60. profile = "ToolsGuiTextProfile";
  61. horizSizing = "right";
  62. vertSizing = "bottom";
  63. position = "20 68";
  64. extent = "57 18";
  65. minExtent = "8 8";
  66. visible = "True";
  67. setFirstResponder = "False";
  68. modal = "True";
  69. helpTag = "0";
  70. text = "Pass Count:";
  71. };
  72. new GuiTextEditCtrl(BreakPassCount) {
  73. profile = "ToolsGuiTextEditProfile";
  74. horizSizing = "right";
  75. vertSizing = "bottom";
  76. position = "20 84";
  77. extent = "160 18";
  78. minExtent = "8 8";
  79. visible = "True";
  80. setFirstResponder = "False";
  81. modal = "True";
  82. helpTag = "0";
  83. historySize = "0";
  84. returnTab = "true";
  85. };
  86. new GuiTextCtrl() {
  87. profile = "ToolsGuiTextProfile";
  88. horizSizing = "right";
  89. vertSizing = "bottom";
  90. position = "20 108";
  91. extent = "27 18";
  92. minExtent = "8 8";
  93. visible = "True";
  94. setFirstResponder = "False";
  95. modal = "True";
  96. helpTag = "0";
  97. text = "Clear:";
  98. };
  99. new GuiTextEditCtrl(BreakClear) {
  100. profile = "ToolsGuiTextEditProfile";
  101. horizSizing = "right";
  102. vertSizing = "bottom";
  103. position = "20 124";
  104. extent = "160 18";
  105. minExtent = "8 8";
  106. visible = "True";
  107. setFirstResponder = "False";
  108. modal = "True";
  109. helpTag = "0";
  110. historySize = "0";
  111. returnTab = "true";
  112. };
  113. new GuiButtonCtrl() {
  114. profile = "ToolsGuiButtonProfile";
  115. horizSizing = "right";
  116. vertSizing = "bottom";
  117. position = "56 156";
  118. extent = "40 16";
  119. minExtent = "8 8";
  120. visible = "True";
  121. setFirstResponder = "False";
  122. modal = "True";
  123. command = "DbgBreakConditionSet();";
  124. helpTag = "0";
  125. text = "Set";
  126. };
  127. new GuiButtonCtrl() {
  128. profile = "ToolsGuiButtonProfile";
  129. horizSizing = "right";
  130. vertSizing = "bottom";
  131. position = "104 156";
  132. extent = "40 16";
  133. minExtent = "8 8";
  134. visible = "True";
  135. setFirstResponder = "False";
  136. modal = "True";
  137. command = "Canvas.popDialog(DebuggerBreakConditionDlg);";
  138. helpTag = "0";
  139. text = "Cancel";
  140. };
  141. };
  142. };
  143. //--- OBJECT WRITE END ---