Tools GuiProfile Separation.

This effectively duplicates (where necessary) and moves tools specific GuiProfiles out of the core and into the tools.  This will allow future modifications to either the game guis or tools guis that use these profiles to not conflict with each other.
This commit is contained in:
thecelloman 2013-03-18 06:38:48 -04:00
parent 17c750b19a
commit ceff8d72e0
375 changed files with 8124 additions and 8134 deletions

View file

@ -1,6 +1,6 @@
//--- OBJECT WRITE BEGIN ---
%guiContent = new GuiControl(DebuggerGui, EditorGuiGroup) {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -12,7 +12,7 @@
helpTag = "0";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "8 4";
@ -26,7 +26,7 @@
text = "Connect";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "72 4";
@ -40,7 +40,7 @@
text = "File";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "72 4";
@ -55,7 +55,7 @@
text = "Step In";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "136 4";
@ -70,7 +70,7 @@
text = "Step Over";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "200 4";
@ -85,7 +85,7 @@
text = "Step Out";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "264 4";
@ -100,7 +100,7 @@
text = "Run";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "328 4";
@ -114,7 +114,7 @@
text = "Find";
};
new GuiTextCtrl(DebuggerCursorWatch) {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "width";
vertSizing = "bottom";
position = "398 4";
@ -128,7 +128,7 @@
justify = "left";
};
new GuiTextCtrl(DebuggerStatus) {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "left";
vertSizing = "bottom";
position = "532 4";
@ -176,7 +176,7 @@
borderMovable = "dynamic";
new GuiControl() {
profile = "GuiDefaultProfile";
profile = "ToolsGuiDefaultProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
@ -188,7 +188,7 @@
helpTag = "0";
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "8 4";
@ -201,7 +201,7 @@
text = "Open File:";
};
new GuiPopUpMenuCtrl(DebuggerFilePopup) {
profile = "GuiPopUpMenuProfile";
profile = "ToolsGuiPopUpMenuProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "64 4";
@ -214,7 +214,7 @@
maxPopupHeight = "200";
};
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
profile = "ToolsGuiScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 24";
@ -232,7 +232,7 @@
constantThumbHeight = "False";
new DbgFileView(DebuggerFileView) {
profile = "GuiTextArrayProfile";
profile = "ToolsGuiTextArrayProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 -433";
@ -246,7 +246,7 @@
};
};
new GuiControl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 350";
@ -258,7 +258,7 @@
helpTag = "0";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "8 4";
@ -272,7 +272,7 @@
text = "Add";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "72 4";
@ -286,7 +286,7 @@
text = "Edit";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "136 4";
@ -300,7 +300,7 @@
text = "Delete";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "200 4";
@ -314,7 +314,7 @@
text = "Clear";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "264 4";
@ -328,7 +328,7 @@
text = "Refresh";
};
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
profile = "ToolsGuiScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 24";
@ -346,7 +346,7 @@
constantThumbHeight = "False";
new GuiTextListCtrl(DebuggerWatchView) {
profile = "GuiTextListProfile";
profile = "ToolsGuiTextListProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -381,7 +381,7 @@
borderMovable = "dynamic";
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
profile = "ToolsGuiScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
@ -399,7 +399,7 @@
constantThumbHeight = "False";
new GuiTextListCtrl(DebuggerCallStack) {
profile = "GuiTextListProfile";
profile = "ToolsGuiTextListProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -415,7 +415,7 @@
};
};
new GuiControl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 150";
@ -427,7 +427,7 @@
helpTag = "0";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "4 4";
@ -441,7 +441,7 @@
text = "Condition";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "68 4";
@ -455,7 +455,7 @@
text = "Delete";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "132 4";
@ -469,7 +469,7 @@
text = "Clear";
};
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
profile = "ToolsGuiScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 24";
@ -487,7 +487,7 @@
constantThumbHeight = "False";
new GuiTextListCtrl(DebuggerBreakPoints) {
profile = "GuiTextListProfile";
profile = "ToolsGuiTextListProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -504,7 +504,7 @@
};
};
new GuiControl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 350";
@ -516,7 +516,7 @@
helpTag = "0";
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
profile = "ToolsGuiScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
@ -534,7 +534,7 @@
constantThumbHeight = "False";
new GuiTextListCtrl(DebuggerConsoleView) {
profile = "GuiTextListProfile";
profile = "ToolsGuiTextListProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -550,7 +550,7 @@
};
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "top";
position = "15 83";
@ -563,7 +563,7 @@
text = "%";
};
new GuiTextEditCtrl(DbgConsoleEntry) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "width";
vertSizing = "top";
position = "29 83";