editWatchDlg.ed.gui 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl(DebuggerEditWatchDlg, 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 = "Edit a Variable";
  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 = "99 18";
  38. minExtent = "8 8";
  39. visible = "True";
  40. setFirstResponder = "False";
  41. modal = "True";
  42. helpTag = "0";
  43. text = "Enter the new value:";
  44. };
  45. new GuiTextEditCtrl(EditWatchDialogValue) {
  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 = "DbgWatchDialogEdit();";
  56. helpTag = "0";
  57. historySize = "0";
  58. fontHL = "14 253 Arial";
  59. font = "14 244 Arial";
  60. };
  61. new GuiButtonCtrl() {
  62. profile = "ToolsGuiButtonProfile";
  63. horizSizing = "right";
  64. vertSizing = "bottom";
  65. position = "56 80";
  66. extent = "40 16";
  67. minExtent = "8 8";
  68. visible = "True";
  69. setFirstResponder = "False";
  70. modal = "True";
  71. command = "DbgWatchDialogEdit();";
  72. helpTag = "0";
  73. text = "Edit";
  74. };
  75. new GuiButtonCtrl() {
  76. profile = "ToolsGuiButtonProfile";
  77. horizSizing = "right";
  78. vertSizing = "bottom";
  79. position = "104 80";
  80. extent = "40 16";
  81. minExtent = "8 8";
  82. visible = "True";
  83. setFirstResponder = "False";
  84. modal = "True";
  85. command = "Canvas.popDialog(DebuggerEditWatchDlg);";
  86. helpTag = "0";
  87. text = "Cancel";
  88. };
  89. };
  90. };
  91. //--- OBJECT WRITE END ---