watchDlg.ed.gui 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl(DebuggerWatchDlg, 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 180";
  18. extent = "200 108";
  19. minExtent = "8 8";
  20. visible = "True";
  21. setFirstResponder = "False";
  22. modal = "True";
  23. helpTag = "0";
  24. text = "Add a Watch Expression:";
  25. resizeWidth = "True";
  26. resizeHeight = "True";
  27. canMove = "False";
  28. canClose = "False";
  29. canMinimize = "False";
  30. canMaximize = "False";
  31. minSize = "50 50";
  32. opaque = "true";
  33. new GuiTextCtrl() {
  34. profile = "ToolsGuiTextProfile";
  35. horizSizing = "right";
  36. vertSizing = "bottom";
  37. position = "20 28";
  38. extent = "88 18";
  39. minExtent = "8 8";
  40. visible = "True";
  41. setFirstResponder = "False";
  42. modal = "True";
  43. helpTag = "0";
  44. text = "Enter the Variable:";
  45. };
  46. new GuiTextEditCtrl(WatchDialogExpression) {
  47. profile = "ToolsGuiTextEditProfile";
  48. horizSizing = "right";
  49. vertSizing = "bottom";
  50. position = "20 44";
  51. extent = "160 18";
  52. minExtent = "8 8";
  53. visible = "True";
  54. setFirstResponder = "False";
  55. modal = "True";
  56. altCommand = "DbgWatchDialogAdd();";
  57. helpTag = "0";
  58. historySize = "0";
  59. };
  60. new GuiButtonCtrl() {
  61. profile = "ToolsGuiButtonProfile";
  62. horizSizing = "right";
  63. vertSizing = "bottom";
  64. position = "56 80";
  65. extent = "40 16";
  66. minExtent = "8 8";
  67. visible = "True";
  68. setFirstResponder = "False";
  69. modal = "True";
  70. command = "DbgWatchDialogAdd();";
  71. helpTag = "0";
  72. text = "Add";
  73. };
  74. new GuiButtonCtrl() {
  75. profile = "ToolsGuiButtonProfile";
  76. horizSizing = "right";
  77. vertSizing = "bottom";
  78. position = "104 80";
  79. extent = "40 16";
  80. minExtent = "8 8";
  81. visible = "True";
  82. setFirstResponder = "False";
  83. modal = "True";
  84. command = "Canvas.popDialog(DebuggerWatchDlg);";
  85. helpTag = "0";
  86. text = "Cancel";
  87. };
  88. };
  89. };
  90. //--- OBJECT WRITE END ---