| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //--- OBJECT WRITE BEGIN ---
- %guiContent = new GuiControl(DebuggerEditWatchDlg, EditorGuiGroup) {
- profile = "ToolsGuiDefaultProfile";
- horizSizing = "right";
- vertSizing = "bottom";
- position = "0 0";
- extent = "640 480";
- minExtent = "8 8";
- visible = "True";
- setFirstResponder = "False";
- modal = "True";
- helpTag = "0";
-
- new GuiWindowCtrl() {
- profile = "ToolsGuiWindowProfile";
- horizSizing = "right";
- vertSizing = "bottom";
- position = "220 180";
- extent = "200 108";
- minExtent = "8 8";
- visible = "True";
- setFirstResponder = "False";
- modal = "True";
- helpTag = "0";
- text = "Edit a Variable";
- resizeWidth = "True";
- resizeHeight = "True";
- canMove = "False";
- canClose = "False";
- canMinimize = "False";
- canMaximize = "False";
- minSize = "50 50";
-
- new GuiTextCtrl() {
- profile = "ToolsGuiTextProfile";
- horizSizing = "right";
- vertSizing = "bottom";
- position = "20 28";
- extent = "99 18";
- minExtent = "8 8";
- visible = "True";
- setFirstResponder = "False";
- modal = "True";
- helpTag = "0";
- text = "Enter the new value:";
- };
- new GuiTextEditCtrl(EditWatchDialogValue) {
- profile = "ToolsGuiTextEditProfile";
- horizSizing = "right";
- vertSizing = "bottom";
- position = "20 44";
- extent = "160 18";
- minExtent = "8 8";
- visible = "True";
- setFirstResponder = "False";
- modal = "True";
- altCommand = "DbgWatchDialogEdit();";
- helpTag = "0";
- historySize = "0";
- fontHL = "14 253 Arial";
- font = "14 244 Arial";
- };
- new GuiButtonCtrl() {
- profile = "ToolsGuiButtonProfile";
- horizSizing = "right";
- vertSizing = "bottom";
- position = "56 80";
- extent = "40 16";
- minExtent = "8 8";
- visible = "True";
- setFirstResponder = "False";
- modal = "True";
- command = "DbgWatchDialogEdit();";
- helpTag = "0";
- text = "Edit";
- };
- new GuiButtonCtrl() {
- profile = "ToolsGuiButtonProfile";
- horizSizing = "right";
- vertSizing = "bottom";
- position = "104 80";
- extent = "40 16";
- minExtent = "8 8";
- visible = "True";
- setFirstResponder = "False";
- modal = "True";
- command = "Canvas.popDialog(DebuggerEditWatchDlg);";
- helpTag = "0";
- text = "Cancel";
- };
- };
- };
- //--- OBJECT WRITE END ---
|