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(DebuggerBreakConditionDlg, EditorGuiGroup) {
profile = "GuiDefaultProfile";
profile = "ToolsGuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -12,7 +12,7 @@
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "220 146";
@ -32,7 +32,7 @@
minSize = "50 50";
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 28";
@ -45,7 +45,7 @@
text = "Enter the break condition:";
};
new GuiTextEditCtrl(BreakCondition) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 44";
@ -59,7 +59,7 @@
historySize = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 68";
@ -72,7 +72,7 @@
text = "Pass Count:";
};
new GuiTextEditCtrl(BreakPassCount) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 84";
@ -86,7 +86,7 @@
returnTab = "true";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 108";
@ -99,7 +99,7 @@
text = "Clear:";
};
new GuiTextEditCtrl(BreakClear) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 124";
@ -113,7 +113,7 @@
returnTab = "true";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "56 156";
@ -127,7 +127,7 @@
text = "Set";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "104 156";

View file

@ -1,6 +1,6 @@
//--- OBJECT WRITE BEGIN ---
%guiContent = new GuiControl(DebuggerConnectDlg, EditorGuiGroup) {
profile = "GuiDefaultProfile";
profile = "ToolsGuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -12,7 +12,7 @@
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "220 146";
@ -32,7 +32,7 @@
minSize = "50 50";
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 28";
@ -45,7 +45,7 @@
text = "IP Address:";
};
new GuiTextEditCtrl(DebuggerConnectAddress) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 44";
@ -60,7 +60,7 @@
returnTab = "true";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 68";
@ -73,7 +73,7 @@
text = "Port:";
};
new GuiTextEditCtrl(DebuggerConnectPort) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 84";
@ -88,7 +88,7 @@
returnTab = "true";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 108";
@ -101,7 +101,7 @@
text = "Password:";
};
new GuiTextEditCtrl(DebuggerConnectPassword) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 124";
@ -116,7 +116,7 @@
returnTab = "true";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "56 156";
@ -130,7 +130,7 @@
text = "Open";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "104 156";

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";

View file

@ -1,6 +1,6 @@
//--- OBJECT WRITE BEGIN ---
%guiContent = new GuiControl(DebuggerEditWatchDlg, EditorGuiGroup) {
profile = "GuiDefaultProfile";
profile = "ToolsGuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -12,7 +12,7 @@
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "220 180";
@ -32,7 +32,7 @@
minSize = "50 50";
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 28";
@ -45,7 +45,7 @@
text = "Enter the new value:";
};
new GuiTextEditCtrl(EditWatchDialogValue) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 44";
@ -61,7 +61,7 @@
font = "14 244 Arial";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "56 80";
@ -75,7 +75,7 @@
text = "Edit";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "104 80";

View file

@ -1,6 +1,6 @@
//--- OBJECT WRITE BEGIN ---
%guiContent = new GuiControl(DebuggerFindDlg, EditorGuiGroup) {
profile = "GuiDefaultProfile";
profile = "ToolsGuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -12,7 +12,7 @@
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "220 180";
@ -32,7 +32,7 @@
minSize = "50 50";
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 28";
@ -45,7 +45,7 @@
text = "Search for:";
};
new GuiTextEditCtrl(DebuggerFindStringText) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 44";
@ -61,7 +61,7 @@
font = "14 244 Arial";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "56 80";
@ -75,7 +75,7 @@
text = "Find";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "104 80";

View file

@ -1,6 +1,6 @@
//--- OBJECT WRITE BEGIN ---
%guiContent = new GuiControl(DebuggerWatchDlg, EditorGuiGroup) {
profile = "GuiDefaultProfile";
profile = "ToolsGuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
@ -12,7 +12,7 @@
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
profile = "ToolsGuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "220 180";
@ -33,7 +33,7 @@
opaque = "true";
new GuiTextCtrl() {
profile = "GuiTextProfile";
profile = "ToolsGuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 28";
@ -46,7 +46,7 @@
text = "Enter the Variable:";
};
new GuiTextEditCtrl(WatchDialogExpression) {
profile = "GuiTextEditProfile";
profile = "ToolsGuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "20 44";
@ -60,7 +60,7 @@
historySize = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "56 80";
@ -74,7 +74,7 @@
text = "Add";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
profile = "ToolsGuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "104 80";