Merge pull request #259 from thecelloman/toolsguiseparation
Tools GuiProfile Separation.
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 203 B |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 322 B |
|
Before Width: | Height: | Size: 592 B |
|
Before Width: | Height: | Size: 642 B |
|
Before Width: | Height: | Size: 693 B |
|
Before Width: | Height: | Size: 661 B |
|
Before Width: | Height: | Size: 238 B |
|
Before Width: | Height: | Size: 267 B |
|
Before Width: | Height: | Size: 876 B |
|
Before Width: | Height: | Size: 848 B |
|
Before Width: | Height: | Size: 642 B |
|
Before Width: | Height: | Size: 208 B |
|
Before Width: | Height: | Size: 453 B |
|
Before Width: | Height: | Size: 465 B |
|
Before Width: | Height: | Size: 453 B |
|
Before Width: | Height: | Size: 453 B |
|
Before Width: | Height: | Size: 541 B |
|
|
@ -26,10 +26,11 @@ if( $Gui::fontCacheDirectory $= "")
|
|||
$Gui::fontCacheDirectory = expandFilename( "~/fonts" );
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------
|
||||
// GuiDefaultProfile is a special profile that all other profiles inherit defaults from. It
|
||||
// must exist.
|
||||
//---------------------------------------------------------------------------------------------
|
||||
// ----------------------------------------------------------------------------
|
||||
// GuiDefaultProfile is a special profile that all other profiles inherit
|
||||
// defaults from. It must exist.
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
if( !isObject( GuiDefaultProfile ) )
|
||||
new GuiControlProfile (GuiDefaultProfile)
|
||||
{
|
||||
|
|
@ -96,16 +97,6 @@ new GuiControlProfile (GuiTransparentProfile)
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTransparentwbProfile ) )
|
||||
new GuiControlProfile (GuiTransparentwbProfile)
|
||||
{
|
||||
opaque = false;
|
||||
border = true;
|
||||
//fillcolor ="255 255 255";
|
||||
borderColor = "100 100 100";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiGroupBorderProfile ) )
|
||||
new GuiControlProfile( GuiGroupBorderProfile )
|
||||
{
|
||||
|
|
@ -126,17 +117,6 @@ new GuiControlProfile( GuiTabBorderProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiGroupTitleProfile ) )
|
||||
new GuiControlProfile( GuiGroupTitleProfile )
|
||||
{
|
||||
fillColor = "242 241 240";
|
||||
fillColorHL ="242 241 240";
|
||||
fillColorNA = "242 241 240";
|
||||
fontColor = "0 0 0";
|
||||
opaque = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiToolTipProfile ) )
|
||||
new GuiControlProfile (GuiToolTipProfile)
|
||||
{
|
||||
|
|
@ -164,107 +144,31 @@ new GuiControlProfile( GuiModelessDialogProfile )
|
|||
if( !isObject( GuiFrameSetProfile ) )
|
||||
new GuiControlProfile (GuiFrameSetProfile)
|
||||
{
|
||||
fillcolor = "255 255 255";//GuiDefaultProfile.fillColor;
|
||||
fillcolor = "255 255 255";
|
||||
borderColor = "246 245 244";
|
||||
border = 1;
|
||||
//fillColor = "240 239 238";
|
||||
//borderColor = "50 50 50";//"204 203 202";
|
||||
//fillColor = GuiDefaultProfile.fillColorNA;
|
||||
//borderColor = GuiDefaultProfile.borderColorNA;
|
||||
opaque = true;
|
||||
border = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
|
||||
if ($platform $= "macos")
|
||||
if( !isObject( GuiWindowProfile ) )
|
||||
new GuiControlProfile (GuiWindowProfile)
|
||||
{
|
||||
if( !isObject( GuiWindowProfile ) )
|
||||
new GuiControlProfile (GuiWindowProfile)
|
||||
{
|
||||
opaque = false;
|
||||
border = 2;
|
||||
fillColor = "242 241 240";
|
||||
fillColorHL = "221 221 221";
|
||||
fillColorNA = "200 200 200";
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
bevelColorHL = "255 255 255";
|
||||
bevelColorLL = "0 0 0";
|
||||
text = "untitled";
|
||||
bitmap = "./images/window";
|
||||
textOffset = "8 4";
|
||||
hasBitmapArray = true;
|
||||
justify = "center";
|
||||
category = "Core";
|
||||
};
|
||||
}
|
||||
else {
|
||||
|
||||
if( !isObject( GuiWindowProfile ) )
|
||||
new GuiControlProfile (GuiWindowProfile)
|
||||
{
|
||||
opaque = false;
|
||||
border = 2;
|
||||
fillColor = "242 241 240";
|
||||
fillColorHL = "221 221 221";
|
||||
fillColorNA = "200 200 200";
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
bevelColorHL = "255 255 255";
|
||||
bevelColorLL = "0 0 0";
|
||||
text = "untitled";
|
||||
bitmap = "./images/window";
|
||||
textOffset = "8 4";
|
||||
hasBitmapArray = true;
|
||||
justify = "left";
|
||||
category = "Core";
|
||||
};
|
||||
}
|
||||
|
||||
if( !isObject( GuiToolbarWindowProfile ) )
|
||||
new GuiControlProfile(GuiToolbarWindowProfile : GuiWindowProfile)
|
||||
{
|
||||
bitmap = "./images/toolbar-window";
|
||||
text = "";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiHToolbarWindowProfile ) )
|
||||
new GuiControlProfile (GuiHToolbarWindowProfile : GuiWindowProfile)
|
||||
{
|
||||
bitmap = "./images/htoolbar-window";
|
||||
text = "";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiMenubarWindowProfile ) )
|
||||
new GuiControlProfile (GuiMenubarWindowProfile : GuiWindowProfile)
|
||||
{
|
||||
bitmap = "./images/menubar-window";
|
||||
text = "";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiWindowCollapseProfile ) )
|
||||
new GuiControlProfile (GuiWindowCollapseProfile : GuiWindowProfile)
|
||||
{
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiControlProfile ) )
|
||||
new GuiControlProfile (GuiContentProfile)
|
||||
{
|
||||
opaque = true;
|
||||
fillColor = "255 255 255";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiBlackContentProfile ) )
|
||||
new GuiControlProfile (GuiBlackContentProfile)
|
||||
{
|
||||
opaque = true;
|
||||
fillColor = "0 0 0";
|
||||
opaque = false;
|
||||
border = 2;
|
||||
fillColor = "242 241 240";
|
||||
fillColorHL = "221 221 221";
|
||||
fillColorNA = "200 200 200";
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
bevelColorHL = "255 255 255";
|
||||
bevelColorLL = "0 0 0";
|
||||
text = "untitled";
|
||||
bitmap = "./images/window";
|
||||
textOffset = "8 4";
|
||||
hasBitmapArray = true;
|
||||
justify = "left";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
|
|
@ -284,24 +188,6 @@ new GuiControlProfile (GuiTextProfile)
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextBoldProfile ) )
|
||||
new GuiControlProfile (GuiTextBoldProfile : GuiTextProfile)
|
||||
{
|
||||
fontType = "Arial Bold";
|
||||
fontSize = 16;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextBoldCenterProfile ) )
|
||||
new GuiControlProfile (GuiTextBoldCenterProfile : GuiTextProfile)
|
||||
{
|
||||
fontColor = "50 50 50";
|
||||
fontType = "Arial Bold";
|
||||
fontSize = 16;
|
||||
justify = "center";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextRightProfile ) )
|
||||
new GuiControlProfile (GuiTextRightProfile : GuiTextProfile)
|
||||
{
|
||||
|
|
@ -309,36 +195,6 @@ new GuiControlProfile (GuiTextRightProfile : GuiTextProfile)
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextCenterProfile ) )
|
||||
new GuiControlProfile (GuiTextCenterProfile : GuiTextProfile)
|
||||
{
|
||||
justify = "center";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextSolidProfile ) )
|
||||
new GuiControlProfile (GuiTextSolidProfile : GuiTextProfile)
|
||||
{
|
||||
opaque = true;
|
||||
border = 5;
|
||||
borderColor = GuiDefaultProfile.fillColor;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( InspectorTitleTextProfile ) )
|
||||
new GuiControlProfile (InspectorTitleTextProfile)
|
||||
{
|
||||
fontColor = "100 100 100";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextProfileLight ) )
|
||||
new GuiControlProfile (GuiTextProfileLight)
|
||||
{
|
||||
fontColor = "220 220 220";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiAutoSizeTextProfile ) )
|
||||
new GuiControlProfile (GuiAutoSizeTextProfile)
|
||||
{
|
||||
|
|
@ -348,13 +204,6 @@ new GuiControlProfile (GuiAutoSizeTextProfile)
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextRightProfile ) )
|
||||
new GuiControlProfile (GuiTextRightProfile : GuiTextProfile)
|
||||
{
|
||||
justify = "right";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiMediumTextProfile ) )
|
||||
new GuiControlProfile( GuiMediumTextProfile : GuiTextProfile )
|
||||
{
|
||||
|
|
@ -393,14 +242,6 @@ new GuiControlProfile( GuiTextArrayProfile : GuiTextProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextListProfile ) )
|
||||
new GuiControlProfile( GuiTextListProfile : GuiTextProfile )
|
||||
{
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextEditProfile ) )
|
||||
new GuiControlProfile( GuiTextEditProfile )
|
||||
{
|
||||
|
|
@ -425,42 +266,6 @@ new GuiControlProfile( GuiTextEditProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTreeViewRenameCtrlProfile ) )
|
||||
new GuiControlProfile( GuiTreeViewRenameCtrlProfile : GuiTextEditProfile )
|
||||
{
|
||||
returnTab = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextEditProfileNumbersOnly ) )
|
||||
new GuiControlProfile( GuiTextEditProfileNumbersOnly : GuiTextEditProfile )
|
||||
{
|
||||
numbersOnly = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextEditNumericProfile ) )
|
||||
new GuiControlProfile( GuiTextEditNumericProfile : GuiTextEditProfile )
|
||||
{
|
||||
numbersOnly = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiNumericDropSliderTextProfile ) )
|
||||
new GuiControlProfile( GuiNumericDropSliderTextProfile : GuiTextEditProfile )
|
||||
{
|
||||
bitmap = "./images/textEditSliderBox";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextEditDropSliderNumbersOnly ) )
|
||||
new GuiControlProfile( GuiTextEditDropSliderNumbersOnly : GuiTextEditProfile )
|
||||
{
|
||||
numbersOnly = true;
|
||||
bitmap = "./images/textEditSliderBox";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiProgressProfile ) )
|
||||
new GuiControlProfile( GuiProgressProfile )
|
||||
{
|
||||
|
|
@ -480,15 +285,6 @@ new GuiControlProfile( GuiProgressBitmapProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiRLProgressBitmapProfile ) )
|
||||
new GuiControlProfile( GuiRLProgressBitmapProfile )
|
||||
{
|
||||
border = false;
|
||||
hasBitmapArray = true;
|
||||
bitmap = "./images/rl-loadingbar";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiProgressTextProfile ) )
|
||||
new GuiControlProfile( GuiProgressTextProfile )
|
||||
{
|
||||
|
|
@ -517,20 +313,6 @@ new GuiControlProfile( GuiButtonProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiThumbHighlightButtonProfile ) )
|
||||
new GuiControlProfile( GuiThumbHighlightButtonProfile : GuiButtonProfile )
|
||||
{
|
||||
bitmap = "./images/thumbHightlightButton";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( InspectorDynamicFieldButton ) )
|
||||
new GuiControlProfile( InspectorDynamicFieldButton : GuiButtonProfile )
|
||||
{
|
||||
canKeyFocus = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiMenuButtonProfile ) )
|
||||
new GuiControlProfile( GuiMenuButtonProfile )
|
||||
{
|
||||
|
|
@ -540,8 +322,8 @@ new GuiControlProfile( GuiMenuButtonProfile )
|
|||
fontType = "Arial Bold";
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "200 200 200";
|
||||
//fontColorSEL ="0 0 0";
|
||||
fontColorNA = "200 200 200";
|
||||
//fontColorSEL ="0 0 0";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
|
|
@ -550,70 +332,18 @@ new GuiControlProfile( GuiMenuButtonProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiIconButtonProfile ) )
|
||||
new GuiControlProfile( GuiIconButtonProfile )
|
||||
{
|
||||
opaque = true;
|
||||
border = true;
|
||||
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "200 200 200";
|
||||
//fontColorSEL ="0 0 0";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/iconbutton";
|
||||
hasBitmapArray = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiIconButtonSolidProfile ) )
|
||||
new GuiControlProfile( GuiIconButtonSolidProfile : GuiIconButtonProfile )
|
||||
{
|
||||
bitmap = "./images/iconbuttonsolid";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiIconButtonSmallProfile ) )
|
||||
new GuiControlProfile( GuiIconButtonSmallProfile : GuiIconButtonProfile )
|
||||
{
|
||||
bitmap = "./images/iconbuttonsmall";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiButtonTabProfile ) )
|
||||
new GuiControlProfile( GuiButtonTabProfile )
|
||||
{
|
||||
opaque = true;
|
||||
border = true;
|
||||
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "0 0 0";
|
||||
//fontColorSEL ="0 0 0";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/buttontab";
|
||||
// hasBitmapArray = false;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( EditorTabPage ) )
|
||||
new GuiControlProfile(EditorTabPage)
|
||||
{
|
||||
opaque = true;
|
||||
border = false;
|
||||
//fontSize = 18;
|
||||
//fontType = "Arial";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "0 0 0";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/tab";
|
||||
hasBitmapArray = true; //false;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
|
|
@ -635,41 +365,6 @@ new GuiControlProfile( GuiCheckBoxProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiCheckBoxListProfile ) )
|
||||
new GuiControlProfile( GuiCheckBoxListProfile : GuiCheckBoxProfile)
|
||||
{
|
||||
bitmap = "./images/checkbox-list";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiCheckBoxListFlipedProfile ) )
|
||||
new GuiControlProfile( GuiCheckBoxListFlipedProfile : GuiCheckBoxProfile)
|
||||
{
|
||||
bitmap = "./images/checkbox-list_fliped";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( InspectorCheckBoxTitleProfile ) )
|
||||
new GuiControlProfile( InspectorCheckBoxTitleProfile : GuiCheckBoxProfile ){
|
||||
fontColor = "100 100 100";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiRadioProfile ) )
|
||||
new GuiControlProfile( GuiRadioProfile )
|
||||
{
|
||||
fontSize = 14;
|
||||
fillColor = "232 232 232";
|
||||
/*fontColor = "200 200 200";
|
||||
fontColorHL = "255 255 255";*/
|
||||
fontColor = "20 20 20";
|
||||
fontColorHL = "80 80 80";
|
||||
fixedExtent = true;
|
||||
bitmap = "./images/radioButton";
|
||||
hasBitmapArray = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiScrollProfile ) )
|
||||
new GuiControlProfile( GuiScrollProfile )
|
||||
{
|
||||
|
|
@ -689,26 +384,12 @@ new GuiControlProfile( GuiOverlayProfile )
|
|||
{
|
||||
opaque = true;
|
||||
fillcolor = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "255 255 255";
|
||||
fillColor = "0 0 0 100";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTransparentScrollProfile ) )
|
||||
new GuiControlProfile( GuiTransparentScrollProfile )
|
||||
{
|
||||
opaque = false;
|
||||
fillColor = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
border = false;
|
||||
borderThickness = 2;
|
||||
borderColor = "100 100 100";
|
||||
bitmap = "./images/scrollBar";
|
||||
hasBitmapArray = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiSliderProfile ) )
|
||||
new GuiControlProfile( GuiSliderProfile )
|
||||
{
|
||||
|
|
@ -723,34 +404,23 @@ new GuiControlProfile( GuiSliderBoxProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiPaneProfile ) )
|
||||
new GuiControlProfile( GuiPaneProfile )
|
||||
{
|
||||
bitmap = "./images/popupMenu";
|
||||
hasBitmapArray = true;
|
||||
category = "Core";
|
||||
};
|
||||
// ----------------------------------------------------------------------------
|
||||
// TODO: Revisit Popupmenu
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
if( !isObject( GuiPopupMenuItemBorder ) )
|
||||
new GuiControlProfile( GuiPopupMenuItemBorder : GuiButtonProfile )
|
||||
{
|
||||
// borderThickness = 1;
|
||||
//borderColor = "100 100 100 220"; //200
|
||||
//borderColorHL = "51 51 51 220"; //200
|
||||
|
||||
opaque = true;
|
||||
opaque = true;
|
||||
border = true;
|
||||
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "255 255 255";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/button";
|
||||
// hasBitmapArray = false;
|
||||
|
||||
category = "Core";
|
||||
bitmap = "./images/button";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiPopUpMenuDefault ) )
|
||||
|
|
@ -775,13 +445,6 @@ new GuiControlProfile( GuiPopUpMenuDefault : GuiDefaultProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiPopupBackgroundProfile ) )
|
||||
new GuiControlProfile( GuiPopupBackgroundProfile )
|
||||
{
|
||||
modal = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiPopUpMenuProfile ) )
|
||||
new GuiControlProfile( GuiPopUpMenuProfile : GuiPopUpMenuDefault )
|
||||
{
|
||||
|
|
@ -793,38 +456,6 @@ new GuiControlProfile( GuiPopUpMenuProfile : GuiPopUpMenuDefault )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiPopUpMenuTabProfile ) )
|
||||
new GuiControlProfile( GuiPopUpMenuTabProfile : GuiPopUpMenuDefault )
|
||||
{
|
||||
bitmap = "./images/dropDown-tab";
|
||||
textOffset = "6 4";
|
||||
canKeyFocus = true;
|
||||
hasBitmapArray = true;
|
||||
border = 1;
|
||||
profileForChildren = GuiPopUpMenuDefault;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiPopUpMenuEditProfile ) )
|
||||
new GuiControlProfile( GuiPopUpMenuEditProfile : GuiPopUpMenuDefault )
|
||||
{
|
||||
textOffset = "6 4";
|
||||
canKeyFocus = true;
|
||||
bitmap = "./images/dropDown";
|
||||
hasBitmapArray = true;
|
||||
border = 1;
|
||||
profileForChildren = GuiPopUpMenuDefault;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiListBoxProfile ) )
|
||||
new GuiControlProfile( GuiListBoxProfile )
|
||||
{
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTabBookProfile ) )
|
||||
new GuiControlProfile( GuiTabBookProfile )
|
||||
{
|
||||
|
|
@ -844,22 +475,13 @@ new GuiControlProfile( GuiTabBookProfile )
|
|||
textOffset = "0 -3";
|
||||
tab = true;
|
||||
cankeyfocus = true;
|
||||
//border = false;
|
||||
//opaque = false;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTabBookNoBitmapProfile ) )
|
||||
new GuiControlProfile( GuiTabBookNoBitmapProfile : GuiTabBookProfile )
|
||||
{
|
||||
bitmap = "";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTabPageProfile ) )
|
||||
new GuiControlProfile( GuiTabPageProfile : GuiDefaultProfile )
|
||||
{
|
||||
fontType = "Arial";
|
||||
fontType = "Arial";
|
||||
fontSize = 10;
|
||||
justify = "center";
|
||||
bitmap = "./images/tab";
|
||||
|
|
@ -868,51 +490,18 @@ new GuiControlProfile( GuiTabPageProfile : GuiDefaultProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiMenuBarProfile ) )
|
||||
new GuiControlProfile( GuiMenuBarProfile )
|
||||
{
|
||||
fontType = "Arial";
|
||||
fontSize = 14;
|
||||
opaque = true;
|
||||
fillColor = "240 239 238";
|
||||
fillColorHL = "202 201 200";
|
||||
fillColorSEL = "202 0 0";
|
||||
|
||||
borderColorNA = "202 201 200";
|
||||
borderColorHL = "50 50 50";
|
||||
border = 0;
|
||||
fontColor = "20 20 20";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "255 255 255";
|
||||
//fixedExtent = true;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
mouseOverSelected = true;
|
||||
bitmap = "./images/menu";
|
||||
hasBitmapArray = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiConsoleProfile ) )
|
||||
new GuiControlProfile( GuiConsoleProfile )
|
||||
{
|
||||
fontType = ($platform $= "macos") ? "Monaco" : "Lucida Console";
|
||||
fontSize = ($platform $= "macos") ? 13 : 12;
|
||||
fontColor = "255 255 255";
|
||||
fontColorHL = "0 255 255";
|
||||
fontColorNA = "255 0 0";
|
||||
fontColors[6] = "100 100 100";
|
||||
fontColors[7] = "100 100 0";
|
||||
fontColors[8] = "0 0 100";
|
||||
fontColors[9] = "0 100 0";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiConsoleTextEditProfile ) )
|
||||
new GuiControlProfile( GuiConsoleTextEditProfile : GuiTextEditProfile )
|
||||
{
|
||||
fontType = ($platform $= "macos") ? "Monaco" : "Lucida Console";
|
||||
fontSize = ($platform $= "macos") ? 13 : 12;
|
||||
fontColor = "255 255 255";
|
||||
fontColorHL = "0 255 255";
|
||||
fontColorNA = "255 0 0";
|
||||
fontColors[6] = "100 100 100";
|
||||
fontColors[7] = "100 100 0";
|
||||
fontColors[8] = "0 0 100";
|
||||
fontColors[9] = "0 100 0";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
|
|
@ -922,7 +511,6 @@ new GuiControlProfile( GuiConsoleTextProfile )
|
|||
fontColor = "0 0 0";
|
||||
autoSizeWidth = true;
|
||||
autoSizeHeight = true;
|
||||
|
||||
textOffset = "2 2";
|
||||
opaque = true;
|
||||
fillColor = "255 255 255";
|
||||
|
|
@ -932,55 +520,6 @@ new GuiControlProfile( GuiConsoleTextProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTreeViewProfile ) )
|
||||
new GuiControlProfile( GuiTreeViewProfile )
|
||||
{
|
||||
bitmap = "./images/treeView";
|
||||
autoSizeHeight = true;
|
||||
canKeyFocus = true;
|
||||
|
||||
fillColor = "255 255 255"; //GuiDefaultProfile.fillColor;
|
||||
fillColorHL = "228 228 235";//GuiDefaultProfile.fillColorHL;
|
||||
fillColorSEL = "98 100 137";
|
||||
fillColorNA = "255 255 255";//GuiDefaultProfile.fillColorNA;
|
||||
fontColor = "0 0 0";//GuiDefaultProfile.fontColor;
|
||||
fontColorHL = "0 0 0";//GuiDefaultProfile.fontColorHL;
|
||||
fontColorSEL= "255 255 255";//GuiDefaultProfile.fontColorSEL;
|
||||
fontColorNA = "200 200 200";//GuiDefaultProfile.fontColorNA;
|
||||
borderColor = "128 000 000";
|
||||
borderColorHL = "255 228 235";
|
||||
|
||||
fontSize = 14;
|
||||
|
||||
opaque = false;
|
||||
border = false;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiSimpleTreeProfile ) )
|
||||
new GuiControlProfile( GuiSimpleTreeProfile : GuiTreeViewProfile )
|
||||
{
|
||||
opaque = true;
|
||||
fillColor = "255 255 255 255";
|
||||
border = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiText24Profile ) )
|
||||
new GuiControlProfile( GuiText24Profile : GuiTextProfile )
|
||||
{
|
||||
fontSize = 24;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiRSSFeedMLTextProfile ) )
|
||||
new GuiControlProfile( GuiRSSFeedMLTextProfile )
|
||||
{
|
||||
fontColorLink = "55 55 255";
|
||||
fontColorLinkHL = "255 55 55";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
$ConsoleDefaultFillColor = "0 0 0 175";
|
||||
|
||||
if( !isObject( ConsoleScrollProfile ) )
|
||||
|
|
@ -1002,122 +541,6 @@ new GuiControlProfile( ConsoleTextEditProfile : GuiTextEditProfile )
|
|||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTextPadProfile ) )
|
||||
new GuiControlProfile( GuiTextPadProfile )
|
||||
{
|
||||
fontType = ($platform $= "macos") ? "Monaco" : "Lucida Console";
|
||||
fontSize = ($platform $= "macos") ? 13 : 12;
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
|
||||
// Deviate from the Default
|
||||
opaque=true;
|
||||
fillColor = "255 255 255";
|
||||
|
||||
border = 0;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiTransparentProfileModeless ) )
|
||||
new GuiControlProfile( GuiTransparentProfileModeless : GuiTransparentProfile )
|
||||
{
|
||||
modal = false;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiFormProfile ) )
|
||||
new GuiControlProfile( GuiFormProfile : GuiTextProfile )
|
||||
{
|
||||
opaque = false;
|
||||
border = 5;
|
||||
|
||||
bitmap = "./images/form";
|
||||
hasBitmapArray = true;
|
||||
|
||||
justify = "center";
|
||||
|
||||
profileForChildren = GuiButtonProfile;
|
||||
|
||||
// border color
|
||||
opaque = false;
|
||||
//border = 5;
|
||||
bitmap = "./images/button";
|
||||
// borderColor = "153 153 153";
|
||||
// borderColorHL = "230 230 230";
|
||||
// borderColorNA = "126 79 37";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiNumericTextEditSliderProfile ) )
|
||||
new GuiControlProfile( GuiNumericTextEditSliderProfile )
|
||||
{
|
||||
// Transparent Background
|
||||
opaque = true;
|
||||
fillColor = "0 0 0 0";
|
||||
fillColorHL = "255 255 255";
|
||||
|
||||
border = true;
|
||||
|
||||
tab = false;
|
||||
canKeyFocus = true;
|
||||
|
||||
// font
|
||||
fontType = "Arial";
|
||||
fontSize = 14;
|
||||
|
||||
fontColor = "0 0 0";
|
||||
fontColorSEL = "43 107 206";
|
||||
fontColorHL = "244 244 244";
|
||||
fontColorNA = "100 100 100";
|
||||
|
||||
numbersOnly = true;
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiNumericTextEditSliderBitmapProfile ) )
|
||||
new GuiControlProfile( GuiNumericTextEditSliderBitmapProfile )
|
||||
{
|
||||
// Transparent Background
|
||||
opaque = true;
|
||||
|
||||
border = true;
|
||||
borderColor = "100 100 100";
|
||||
|
||||
tab = false;
|
||||
canKeyFocus = true;
|
||||
|
||||
// font
|
||||
fontType = "Arial";
|
||||
fontSize = 14;
|
||||
|
||||
fillColor = "242 241 240";//"255 255 255";
|
||||
fillColorHL = "255 255 255";//"222 222 222";
|
||||
fontColor = "0 0 0";//"0 0 0";
|
||||
fontColorHL = "255 255 255";//"0 0 0";
|
||||
fontColorSEL = "98 100 137";//"230 230 230";
|
||||
fontColorNA = "200 200 200";//"0 0 0";
|
||||
|
||||
numbersOnly = true;
|
||||
|
||||
hasBitmapArray = true;
|
||||
bitmap = "./images/numericslider";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiMultiFieldTextEditProfile ) )
|
||||
new GuiControlProfile( GuiMultiFieldTextEditProfile : GuiTextEditProfile )
|
||||
{
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
if( !isObject( GuiModalDialogBackgroundProfile ) )
|
||||
new GuiControlProfile( GuiModalDialogBackgroundProfile )
|
||||
{
|
||||
opaque = true;
|
||||
fillColor = "221 221 221 150";
|
||||
category = "Core";
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Center and bottom print
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -1,35 +0,0 @@
|
|||
####
|
||||
#
|
||||
# OBJ File Generated by LightWave3D
|
||||
# LightWave3D OBJ Export v2.3
|
||||
#
|
||||
####
|
||||
o simplecone.obj
|
||||
mtllib simplecone.mtl
|
||||
g default
|
||||
v -0.649519 -0.375 0.25
|
||||
v 0 0 -1.25
|
||||
v 0 0.75 0.25
|
||||
v 0.649519 -0.375 0.25
|
||||
vt 0.00874126 0.463343
|
||||
vt 0.00879765 0.00874126
|
||||
vt 0.00879765 0.445804
|
||||
vt 0.227273 0.991202
|
||||
vt 0.445804 0.463343
|
||||
vt 0.463343 0.463287
|
||||
vt 0.463343 0.90035
|
||||
vt 0.536657 0.154429
|
||||
vt 0.554196 0.00874126
|
||||
vt 0.772727 0.445804
|
||||
vt 0.991202 0.608974
|
||||
vt 0.991259 0.00874126
|
||||
vn -0.764951 -0.441644 0.468829
|
||||
vn 0 0 -1
|
||||
vn 0 0.883289 0.468829
|
||||
vn 0.764951 -0.441644 0.468829
|
||||
usemtl simplecone
|
||||
s off
|
||||
f 1/9/1 4/12/4 3/10/3
|
||||
f 2/8/2 3/3/3 4/2/4
|
||||
f 1/1/1 2/4/2 4/5/4
|
||||
f 3/7/3 2/11/2 1/6/1
|
||||
|
|
@ -1,3 +1,25 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton ShaderData( GammaShader )
|
||||
{
|
||||
DXVertexShaderFile = "shaders/common/postFx/postFxV.hlsl";
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ function GuiSwatchButtonCtrl::onMouseDragged( %this )
|
|||
%ctrl = new GuiDragAndDropControl()
|
||||
{
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiSolidDefaultProfile";
|
||||
Profile = "ToolsGuiSolidDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = %xPos SPC %yPos;
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "None";
|
||||
Margin = "0 0 0 0";
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
MinExtent = "210 100";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
text = "ConvexShapes";
|
||||
|
||||
new GuiContainer(){
|
||||
profile = GuiDefaultProfile;
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "5 25";
|
||||
Extent = "200 120";
|
||||
Docking = "Client";
|
||||
|
|
@ -95,7 +95,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "Client";
|
||||
Margin = "0 0 0 0";
|
||||
|
|
@ -117,7 +117,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "1 1";
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209
|
||||
|
|
@ -155,7 +155,7 @@
|
|||
MinExtent = "210 298";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -185,7 +185,7 @@
|
|||
Margin = "3 3 3 3";
|
||||
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "5 0";
|
||||
|
|
@ -194,7 +194,7 @@
|
|||
};
|
||||
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "7 21";
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
};
|
||||
new GuiTextEditCtrl(){
|
||||
internalName = "position";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "57 21";
|
||||
|
|
@ -212,7 +212,7 @@
|
|||
AltCommand = "ConvexEditorGui.editNodeDetails();";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "7 42";
|
||||
|
|
@ -221,7 +221,7 @@
|
|||
};
|
||||
new GuiTextEditCtrl(){
|
||||
internalName = "rotation";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "57 42";
|
||||
|
|
@ -230,7 +230,7 @@
|
|||
AltCommand = "ConvexEditorGui.editNodeDetails();";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "7 63";
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
};
|
||||
new GuiTextEditCtrl(){
|
||||
internalName = "width";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "57 63";
|
||||
|
|
@ -248,7 +248,7 @@
|
|||
AltCommand = "ConvexEditorGui.editNodeDetails();";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
Position = "110 63";
|
||||
|
|
@ -257,7 +257,7 @@
|
|||
};
|
||||
new GuiTextEditCtrl(){
|
||||
internalName = "depth";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
Position = "146 63";
|
||||
|
|
@ -277,7 +277,7 @@
|
|||
Margin = "0 0 3 3";
|
||||
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "5 0";
|
||||
|
|
@ -297,7 +297,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "Client";
|
||||
Margin = "-14 41 3 3";
|
||||
|
|
@ -323,7 +323,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTransparentProfile";
|
||||
Profile = "ToolsGuiTransparentProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "1 1";
|
||||
|
|
@ -331,7 +331,7 @@
|
|||
MinExtent = "16 16";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
dividerMargin = "5";
|
||||
};
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
lineSpacing = "2";
|
||||
allowColorChars = "0";
|
||||
|
|
@ -375,7 +375,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowCollapseProfile";
|
||||
Profile = "ToolsGuiWindowCollapseProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
position = "6 483";
|
||||
|
|
@ -383,7 +383,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -404,7 +404,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "4 24";
|
||||
|
|
@ -412,7 +412,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -421,7 +421,7 @@
|
|||
fitParentWidth = "1";
|
||||
clipColumnText = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTextListProfile";
|
||||
Profile = "ToolsGuiTextListProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "top";
|
||||
position = "1 1";
|
||||
|
|
@ -429,7 +429,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "TextList";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(ConvexEditorSettingsTab,EditorGuiGroup) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiSolidDefaultProfile";
|
||||
Profile = "ToolsGuiSolidDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "1 1";
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
|
||||
new GuiRolloutCtrl() {
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
padding = "3";
|
||||
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "5 1";
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -154,7 +154,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "81 0";
|
||||
|
|
@ -162,7 +162,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
class = "ESettingsWindowTextEdit";
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
internalName = "";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "305 0";
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
hovertime = "1000";
|
||||
|
||||
new GuiTextCtrl() {
|
||||
profile = "GuiTextProfile";
|
||||
profile = "ToolsGuiTextProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "15 7";
|
||||
|
|
@ -48,16 +48,16 @@
|
|||
helpTag = "0";
|
||||
};
|
||||
new GuiBitmapCtrl() {
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
position = "94 3";
|
||||
Extent = "2 26";
|
||||
MinExtent = "1 1";
|
||||
bitmap = "core/art/gui/images/separator-h.png";
|
||||
bitmap = "tools/gui/images/separator-h.png";
|
||||
};
|
||||
new GuiBitmapButtonCtrl(ConvexEditorCreateBoxBtn) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "100 3";
|
||||
|
|
@ -66,7 +66,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ConvexEditorGui.createConvexBox();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Create ConvexShape Box" NL "Use Alt + Click-Drag instead of this for more control of starting placement.";
|
||||
hovertime = "1000";
|
||||
bitmap = "tools/convexEditor/images/convex-editor-btn";
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
new GuiBitmapButtonCtrl(ConvexEditorSplitFaceBtn) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "134 3";
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ConvexEditorGui.splitSelectedFace();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Split selected face" NL "Use Ctrl + Rotate instead for more control.";
|
||||
hovertime = "1000";
|
||||
bitmap = "tools/convexEditor/images/split-face-btn";
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
new GuiBitmapButtonCtrl(ConvexEditorDeleteFaceBtn) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "166 3";
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ConvexEditorGui.handleDelete();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Delete selected face" NL "(Delete)";
|
||||
hovertime = "1000";
|
||||
bitmap = "tools/gui/images/menubar/delete-btn";
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "1";
|
||||
canSave = "1";
|
||||
|
|
@ -38,10 +38,10 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiWindowProfile";
|
||||
profile = "ToolsGuiWindowProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "1";
|
||||
canSave = "1";
|
||||
|
|
@ -62,10 +62,10 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiTextProfile";
|
||||
profile = "ToolsGuiTextProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
canSave = "1";
|
||||
|
|
@ -91,10 +91,10 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiTextEditProfile";
|
||||
profile = "ToolsGuiTextEditProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
internalName = "CreateDatablockName";
|
||||
|
|
@ -112,12 +112,12 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
command = "DatablockEditorPlugin.createPromptNameCheck();";
|
||||
accelerator = "return";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
canSave = "1";
|
||||
|
|
@ -134,12 +134,12 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
command = "canvas.popDialog(DatablockEditorCreatePrompt);";
|
||||
accelerator = "escape";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
canSave = "1";
|
||||
|
|
@ -160,10 +160,10 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiTextProfile";
|
||||
profile = "ToolsGuiTextProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
canSave = "1";
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
profile = "GuiPopUpMenuProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
internalName = "CopySourceDropdown";
|
||||
|
|
@ -209,10 +209,10 @@
|
|||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
fixedAspectRatio = "0";
|
||||
profile = "GuiCheckBoxProfile";
|
||||
profile = "ToolsGuiCheckBoxProfile";
|
||||
visible = "1";
|
||||
active = "1";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
tooltipProfile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
isContainer = "0";
|
||||
internalName = "ClientSideCheckBox";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
MinExtent = "210 140";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "DatablockEditorInspectorWindow";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "4 41";
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
MinExtent = "64 64";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
superClass = "EditorInspectorBase";
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -159,7 +159,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "DatablockFile";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -171,7 +171,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "167 23";
|
||||
|
|
@ -180,7 +180,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "DatablockEditorPlugin.save();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Save Datablock (ALT S)";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "187 23";
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "DatablockEditorPlugin.showSaveNewFileDialog();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Save Datablock to a New File";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
MinExtent = "210 140";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "DatablockEditorTreeWindow";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTabBookProfile";
|
||||
Profile = "ToolsGuiTabBookProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "4 25";
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "DatablockEditorTree";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -80,7 +80,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "EditorTabPage";
|
||||
Profile = "ToolsGuiEditorTabPage";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 19";
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "185 5";
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
class = "GuiTreeViewFilterClearButton";
|
||||
|
|
@ -139,7 +139,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 25";
|
||||
|
|
@ -147,7 +147,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
objectNamesOnly = "0";
|
||||
compareToObjectID = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "1 1";
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "EditorTabPage";
|
||||
Profile = "ToolsGuiEditorTabPage";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 19";
|
||||
|
|
@ -199,7 +199,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "DatablockEditorCreator";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -220,7 +220,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -228,7 +228,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -248,7 +248,7 @@
|
|||
objectNamesOnly = "0";
|
||||
compareToObjectID = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "1 1";
|
||||
|
|
@ -256,7 +256,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
altCommand = "DatablockEditorPlugin.createDatablock();";
|
||||
|
|
@ -270,7 +270,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "190 26";
|
||||
|
|
@ -279,19 +279,19 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "DatablockEditorPlugin.deleteDatablock();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Delete Datablock";
|
||||
hovertime = "1000";
|
||||
internalName = "deleteSelection";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiBitmapButtonCtrl() {
|
||||
bitmap = "core/art/gui/images/new";
|
||||
bitmap = "tools/gui/images/new";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "192 25";
|
||||
|
|
@ -300,7 +300,7 @@
|
|||
canSave = "1";
|
||||
Visible = "0";
|
||||
Command = "DatablockEditorPlugin.createDatablock();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
tooltip = "Create New Datablock";
|
||||
hovertime = "1000";
|
||||
internalName = "CreateSelection";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@ function DecalEditorTabBook::onTabSelected( %this, %text, %idx )
|
|||
|
||||
function DecalEditorTreeView::onDefineIcons()
|
||||
{
|
||||
%icons = "core/art/gui/images/treeview/default:" @
|
||||
%icons = "tools/gui/images/treeview/default:" @
|
||||
"tools/classIcons/decal:" @
|
||||
"tools/classIcons/decalNode:";
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209 SPC getWord(EditorGuiToolbar.extent, 1) -1;
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "2 2 2 2";
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
new GuiTabBookCtrl(DecalEditorTabBook) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTabBookProfile";
|
||||
Profile = "ToolsGuiTabBookProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "EditorTabPage";
|
||||
Profile = "ToolsGuiEditorTabPage";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -133,14 +133,14 @@
|
|||
Position = "0 0";
|
||||
Extent = "202 483";
|
||||
MinExtent = "0 -500";
|
||||
Profile = "GuiTabBorderProfile";
|
||||
Profile = "ToolsGuiTabBorderProfile";
|
||||
};
|
||||
};
|
||||
new GuiScrollCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
Position = "0 0";
|
||||
|
|
@ -149,7 +149,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiDefaultProfile";
|
||||
tooltipprofile = "ToolsGuiDefaultProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -169,7 +169,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiListBoxProfile";
|
||||
Profile = "ToolsGuiListBoxProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -178,7 +178,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
AllowMultipleSelections = "0";
|
||||
fitParentWidth = "0";
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
internalName = "instanceTab";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "EditorTabPage";
|
||||
Profile = "ToolsGuiEditorTabPage";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -228,14 +228,14 @@
|
|||
Position = "0 0";
|
||||
Extent = "202 483";
|
||||
MinExtent = "0 -500";
|
||||
Profile = "GuiTabBorderProfile";
|
||||
Profile = "ToolsGuiTabBorderProfile";
|
||||
};
|
||||
};
|
||||
new GuiScrollCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
Position = "0 0";
|
||||
|
|
@ -244,7 +244,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "None";
|
||||
Margin = "0 0 0 0";
|
||||
|
|
@ -265,7 +265,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "1 1";
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "137 26";
|
||||
|
|
@ -317,7 +317,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
Position = "157 26";
|
||||
|
|
@ -326,7 +326,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
tooltip = "Retarget missing decals to an existing decal datablock";
|
||||
bitmap = "tools/gui/images/retarget-btn";
|
||||
|
|
@ -338,7 +338,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
Position = "177 26";
|
||||
|
|
@ -347,10 +347,10 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
tooltip = "Create New Decal Template";
|
||||
bitmap = "core/art/gui/images/new";
|
||||
bitmap = "tools/gui/images/new";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
};
|
||||
|
|
@ -359,7 +359,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
Position = "190 26";
|
||||
|
|
@ -368,7 +368,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
text = "";
|
||||
tooltip = "Delete Selected Decal Template";
|
||||
|
|
@ -386,7 +386,7 @@
|
|||
internalName = "";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209 SPC getWord(EditorGuiToolbar.extent, 1) + getWord(DecalEditorWindow.extent, 1) - 2;
|
||||
|
|
@ -417,7 +417,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
VertSizing = "bottom";
|
||||
HorizSizing = "width";
|
||||
Position = "4 24";
|
||||
|
|
@ -426,7 +426,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
AnchorTop = "0";
|
||||
AnchorBottom = "0";
|
||||
|
|
@ -448,7 +448,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -457,7 +457,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
|
||||
new GuiRolloutCtrl() {
|
||||
|
|
@ -481,7 +481,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -490,7 +490,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
|
||||
new GuiContainer(){
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
internalName = "instancePreview";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "height";
|
||||
Position = "0 0";
|
||||
|
|
@ -514,7 +514,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
wrap = "0";
|
||||
bitmap= "tools/materialeditor/gui/unknownImage";
|
||||
|
|
@ -523,7 +523,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "height";
|
||||
Position = "0 0";
|
||||
|
|
@ -532,7 +532,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
bitmap = "tools/worldEditor/images/terrainpainter/terrain-painter-border-large";
|
||||
wrap = "0";
|
||||
|
|
@ -561,7 +561,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -570,7 +570,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
|
||||
new GuiContainer(DecalEditorDetailContainer){
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
isContainer = "1";
|
||||
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "3 2";
|
||||
|
|
@ -589,7 +589,7 @@
|
|||
text = "Instance";
|
||||
};
|
||||
new GuiTextCtrl(){ // instance Name
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
internalName = "instanceId";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
|
|
@ -598,7 +598,7 @@
|
|||
text = "";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "3 21";
|
||||
|
|
@ -606,7 +606,7 @@
|
|||
text = "Translate";
|
||||
};
|
||||
new GuiTextEditCtrl(){ // instance translate
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
internalName = "nodePosition";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
|
|
@ -616,7 +616,7 @@
|
|||
text = "";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "3 41";
|
||||
|
|
@ -624,7 +624,7 @@
|
|||
text = "Tangent";
|
||||
};
|
||||
new GuiTextEditCtrl(){ // instance rotation
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
internalName = "nodeTangent";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
|
|
@ -634,7 +634,7 @@
|
|||
text = "";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "3 61";
|
||||
|
|
@ -642,7 +642,7 @@
|
|||
text = "Size";
|
||||
};
|
||||
new GuiTextEditCtrl(){ // instance scale
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
internalName = "nodeSize";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
|
|
@ -661,7 +661,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
VertSizing = "bottom";
|
||||
HorizSizing = "width";
|
||||
Position = "4 24";
|
||||
|
|
@ -670,7 +670,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
AnchorTop = "0";
|
||||
AnchorBottom = "0";
|
||||
|
|
@ -692,7 +692,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -701,7 +701,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
|
||||
new GuiRolloutCtrl() {
|
||||
|
|
@ -725,7 +725,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -734,7 +734,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
|
||||
new GuiContainer(){
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
internalName = "decalPreview";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "height";
|
||||
Position = "0 0";
|
||||
|
|
@ -758,7 +758,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
wrap = "0";
|
||||
bitmap= "tools/materialeditor/gui/unknownImage";
|
||||
|
|
@ -767,7 +767,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "height";
|
||||
Position = "0 0";
|
||||
|
|
@ -776,7 +776,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
bitmap = "tools/worldEditor/images/terrainpainter/terrain-painter-border-large";
|
||||
wrap = "0";
|
||||
|
|
@ -807,7 +807,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTransparentProfile";
|
||||
Profile = "ToolsGuiTransparentProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "1 1";
|
||||
|
|
@ -816,7 +816,7 @@
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
dividerMargin = "5";
|
||||
groupFilters = "+General,+SimBase,+Decal,+Rendering,+Texturing";
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ function ContextDialogContainer::onAdd(%this)
|
|||
|
||||
%this.base = new GuiButtonBaseCtrl()
|
||||
{
|
||||
profile = GuiTransparentProfile;
|
||||
profile = ToolsGuiTransparentProfile;
|
||||
class = ContextDialogWatcher;
|
||||
parent = %this;
|
||||
modal = true;
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ function GuiThumbnailPopup::CreateThumbPopup( %this, %parent, %thumbType, %label
|
|||
{
|
||||
%base = new GuiWindowCtrl()
|
||||
{
|
||||
profile = "GuiWindowProfile";
|
||||
profile = "ToolsGuiWindowProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -88,7 +88,7 @@ function GuiThumbnailPopup::CreateThumbPopup( %this, %parent, %thumbType, %label
|
|||
%scroll = new GuiScrollCtrl()
|
||||
{
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
class = "GuiThumbnailArray";
|
||||
internalName = "thumbnailScroll";
|
||||
HorizSizing = "width";
|
||||
|
|
@ -111,7 +111,7 @@ function GuiThumbnailPopup::CreateThumbPopup( %this, %parent, %thumbType, %label
|
|||
%objectList = new GuiDynamicCtrlArrayControl()
|
||||
{
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiTransparentScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
class = %this.listType;
|
||||
superClass = "GuiThumbnailCreator";
|
||||
HorizSizing = "width";
|
||||
|
|
@ -214,7 +214,7 @@ function GuiThumbnailCreator::AddObject( %this, %object, %data, %tooltip )
|
|||
$LB::ObjectLibraryGroup.add( %object );
|
||||
|
||||
// Build Object Container
|
||||
%container = new GuiControl() { profile = GuiButtonProfile; };
|
||||
%container = new GuiControl() { profile = ToolsGuiButtonProfile; };
|
||||
|
||||
// Add to list.
|
||||
%this.add( %container );
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ function GuiFormClass::BuildEmptyFrame(%pos, %ext, %columns, %rows, %parentID)
|
|||
{
|
||||
%frame = new GuiFrameSetCtrl()
|
||||
{
|
||||
profile = "GuiFrameSetProfile";
|
||||
profile = "ToolsGuiFrameSetProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "height";
|
||||
position = %pos;
|
||||
|
|
@ -68,7 +68,7 @@ function GuiFormClass::BuildFormControl( %parentID, %ContentLibrary )
|
|||
%newFormObj = new GuiFormCtrl()
|
||||
{
|
||||
class = "FormControlClass";
|
||||
profile = "GuiFormProfile";
|
||||
profile = "ToolsGuiFormProfile";
|
||||
canSaveDynamicFields = 1;
|
||||
horizSizing = "width";
|
||||
vertSizing = "height";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(ForestEditToolbar,EditorGuiGroup) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "306 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "ForestEditToolbar";
|
||||
canSaveDynamicFields = "1";
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "6 7";
|
||||
|
|
@ -33,13 +33,13 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -47,13 +47,13 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
new GuiControl(ForestBrushSizeTextEditContainer) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiTransparentProfile";
|
||||
Profile = "ToolsGuiTransparentProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "72 5";
|
||||
|
|
@ -61,7 +61,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "21 5";
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiNumericDropSliderTextProfile";
|
||||
Profile = "ToolsGuiNumericDropSliderTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "49 2";
|
||||
|
|
@ -112,18 +112,18 @@
|
|||
Visible = "1";
|
||||
AltCommand = "ForestTools->BrushTool.size = $ThisControl.getValue();";
|
||||
validate = "ForestEditorGui.validateBrushSize();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "textEdit";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiBitmapButtonCtrl() {
|
||||
bitmap = "core/art/gui/images/dropslider";
|
||||
bitmap = "tools/gui/images/dropslider";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "83 2";
|
||||
|
|
@ -132,17 +132,17 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "Canvas.pushDialog(ForestBrushSizeSliderCtrlContainer);";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Changes size of the brush";
|
||||
hovertime = "750";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
};
|
||||
new GuiBitmapCtrl() {
|
||||
bitmap = "core/art/gui/images/separator-h.png";
|
||||
bitmap = "tools/gui/images/separator-h.png";
|
||||
wrap = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "200 3";
|
||||
|
|
@ -150,13 +150,13 @@
|
|||
MinExtent = "1 1";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiControl(ForestBrushPressureTextEditContainer) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiTransparentProfile";
|
||||
Profile = "ToolsGuiTransparentProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "208 5";
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -178,7 +178,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 5";
|
||||
|
|
@ -186,7 +186,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -205,7 +205,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiNumericDropSliderTextProfile";
|
||||
Profile = "ToolsGuiNumericDropSliderTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "49 2";
|
||||
|
|
@ -214,18 +214,18 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ForestTools->BrushTool.pressure = $ThisControl.getValue() / 100;";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "textEdit";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiBitmapButtonCtrl() {
|
||||
bitmap = "core/art/gui/images/dropslider";
|
||||
bitmap = "tools/gui/images/dropslider";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "83 2";
|
||||
|
|
@ -234,17 +234,17 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "Canvas.pushDialog(ForestBrushPressureSliderCtrlContainer);";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Changes the pressure";
|
||||
hovertime = "750";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
};
|
||||
new GuiBitmapCtrl() {
|
||||
bitmap = "core/art/gui/images/separator-h.png";
|
||||
bitmap = "tools/gui/images/separator-h.png";
|
||||
wrap = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "336 3";
|
||||
|
|
@ -252,13 +252,13 @@
|
|||
MinExtent = "1 1";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiControl(ForestBrushHardnessTextEditContainer) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiTransparentProfile";
|
||||
Profile = "ToolsGuiTransparentProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "352 5";
|
||||
|
|
@ -266,7 +266,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -280,7 +280,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 5";
|
||||
|
|
@ -288,7 +288,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -307,7 +307,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiNumericDropSliderTextProfile";
|
||||
Profile = "ToolsGuiNumericDropSliderTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "49 2";
|
||||
|
|
@ -316,18 +316,18 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ForestTools->BrushTool.hardness = $ThisControl.getValue() / 100);";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "textEdit";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiBitmapButtonCtrl() {
|
||||
bitmap = "core/art/gui/images/dropslider";
|
||||
bitmap = "tools/gui/images/dropslider";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "83 2";
|
||||
|
|
@ -336,7 +336,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "Canvas.pushDialog(ForestBrushHardnessSliderCtrlContainer);";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Changes the hardness curve.";
|
||||
hovertime = "750";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -359,7 +359,7 @@ new GuiMouseEventCtrl(ForestBrushSizeSliderCtrlContainer,EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
internalName = "slider";
|
||||
isContainer = "0";
|
||||
Profile = "GuiSliderBoxProfile";
|
||||
Profile = "ToolsGuiSliderBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = firstWord(ForestBrushSizeTextEditContainer.position) + firstWord(ForestEditToolbar.position)+11 SPC
|
||||
|
|
@ -389,7 +389,7 @@ new GuiMouseEventCtrl(ForestBrushPressureSliderCtrlContainer,EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
internalName = "slider";
|
||||
isContainer = "0";
|
||||
Profile = "GuiSliderBoxProfile";
|
||||
Profile = "ToolsGuiSliderBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = firstWord(ForestBrushPressureTextEditContainer.position) + firstWord(ForestEditToolbar.position) SPC
|
||||
|
|
@ -419,7 +419,7 @@ new GuiMouseEventCtrl(ForestBrushHardnessSliderCtrlContainer,EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
internalName = "slider";
|
||||
isContainer = "0";
|
||||
Profile = "GuiSliderBoxProfile";
|
||||
Profile = "ToolsGuiSliderBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = firstWord(ForestBrushHardnessTextEditContainer.position) + firstWord(ForestEditToolbar.position) SPC
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowCollapseProfile";
|
||||
Profile = "ToolsGuiWindowCollapseProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
MinExtent = "210 100";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "PalleteWindow";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -82,7 +82,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTabBookProfile";
|
||||
Profile = "ToolsGuiTabBookProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "3 44";
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTabPageProfile";
|
||||
Profile = "ToolsGuiTabPageProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 22";
|
||||
|
|
@ -114,7 +114,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "BrushesTab";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -144,7 +144,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -168,7 +168,7 @@
|
|||
canRenameObjects = "1";
|
||||
renameInternal = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "1 1";
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -194,7 +194,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTabPageProfile";
|
||||
Profile = "ToolsGuiTabPageProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 22";
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "MeshesTab";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -224,7 +224,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -232,7 +232,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -256,7 +256,7 @@
|
|||
canRenameObjects = "1";
|
||||
renameInternal = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "1 -67";
|
||||
|
|
@ -265,7 +265,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "$ThisControl.onDoubleClick();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -281,7 +281,7 @@
|
|||
ChangeChildSizeToFit = "0";
|
||||
ChangeChildPosition = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "170 25";
|
||||
|
|
@ -289,7 +289,7 @@
|
|||
MinExtent = "16 16";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "MeshButtonGroup";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -300,7 +300,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -309,7 +309,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ForestEditorGui.newMesh();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Add New Mesh";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -320,7 +320,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "19 0";
|
||||
|
|
@ -330,7 +330,7 @@
|
|||
Visible = "1";
|
||||
Command = "ForestEditorGui.deleteMesh();";
|
||||
tooltip = "Delete Selected";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -344,7 +344,7 @@
|
|||
ChangeChildSizeToFit = "0";
|
||||
ChangeChildPosition = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "151 25";
|
||||
|
|
@ -352,7 +352,7 @@
|
|||
MinExtent = "16 16";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "BrushButtonGroup";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -363,7 +363,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -372,7 +372,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ForestEditorGui.newBrush();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Add New Brush Group";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -383,7 +383,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "19 0";
|
||||
|
|
@ -393,7 +393,7 @@
|
|||
Visible = "1";
|
||||
Command = "ForestEditorGui.newElement();";
|
||||
tooltip = "Add New Brush Element";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -403,7 +403,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "38 0";
|
||||
|
|
@ -413,7 +413,7 @@
|
|||
Visible = "1";
|
||||
Command = "ForestEditorGui.deleteBrushOrElement();";
|
||||
tooltip = "Delete Selected";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -438,7 +438,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowCollapseProfile";
|
||||
Profile = "ToolsGuiWindowCollapseProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
Position = getWord($pref::Video::mode, 0) - 209
|
||||
|
|
@ -447,7 +447,7 @@
|
|||
MinExtent = "210 50";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "PropertiesWindow";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -469,7 +469,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "3 23";
|
||||
|
|
@ -477,7 +477,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -500,7 +500,7 @@
|
|||
MinExtent = "16 16";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "Inspector";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "Dialog";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -38,7 +38,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextBoldCenterProfile";
|
||||
Profile = "ToolsGuiTextBoldCenterProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "center";
|
||||
position = "5 19";
|
||||
|
|
@ -46,7 +46,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(GuiEaseEditDlg,EditorGuiGroup) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "334 145";
|
||||
|
|
@ -39,14 +39,14 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "window";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
new GuiBitmapBorderCtrl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "5 27";
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiAutoSizeTextProfile";
|
||||
Profile = "ToolsGuiAutoSizeTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 3";
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiPopUpMenuProfile";
|
||||
Profile = "ToolsGuiPopUpMenuProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 20";
|
||||
|
|
@ -101,7 +101,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "directionList";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -118,7 +118,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiAutoSizeTextProfile";
|
||||
Profile = "ToolsGuiAutoSizeTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 40";
|
||||
|
|
@ -126,7 +126,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -143,7 +143,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiPopUpMenuProfile";
|
||||
Profile = "ToolsGuiPopUpMenuProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 57";
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "typeList";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -168,7 +168,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiAutoSizeTextProfile";
|
||||
Profile = "ToolsGuiAutoSizeTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 76";
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiAutoSizeTextProfile";
|
||||
Profile = "ToolsGuiAutoSizeTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 111";
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -221,7 +221,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 93";
|
||||
|
|
@ -230,7 +230,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "GuiEaseEditDlg.onSetParam1( $ThisControl.getValue() );";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "param1Value";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -254,7 +254,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "6 128";
|
||||
|
|
@ -263,7 +263,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "GuiEaseEditDlg.onSetParam2( $ThisControl.getValue() );";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "param2Value";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -275,7 +275,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "67 184";
|
||||
|
|
@ -284,7 +284,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "GuiEaseEditDlg.onOK();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "184 184";
|
||||
|
|
@ -303,14 +303,14 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "GuiEaseEditDlg.onCancel();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiEaseViewCtrl() {
|
||||
wrap = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "107 28";
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "easeView";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(ColladaImportDlg,EditorGuiGroup) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
position = "254 136";
|
||||
|
|
@ -40,14 +40,14 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Accelerator = "escape";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "window";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "8 24";
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 3";
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
canRenameObjects = "1";
|
||||
renameInternal = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "1 1";
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
};
|
||||
new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "254 24";
|
||||
|
|
@ -131,13 +131,13 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
new GuiBitmapBorderCtrl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 3";
|
||||
|
|
@ -145,7 +145,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -159,7 +159,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "42 2";
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -181,7 +181,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "90 2";
|
||||
|
|
@ -189,7 +189,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "nodes";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -204,7 +204,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "36 22";
|
||||
|
|
@ -212,7 +212,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -226,7 +226,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "90 22";
|
||||
|
|
@ -234,7 +234,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "meshes";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -249,7 +249,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "132 22";
|
||||
|
|
@ -257,7 +257,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -271,7 +271,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "193 22";
|
||||
|
|
@ -279,7 +279,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "polygons";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "135 2";
|
||||
|
|
@ -302,7 +302,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -316,7 +316,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "193 2";
|
||||
|
|
@ -324,7 +324,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "Materials";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -339,7 +339,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "23 41";
|
||||
|
|
@ -347,7 +347,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -361,7 +361,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "91 41";
|
||||
|
|
@ -369,7 +369,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "lights";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -384,7 +384,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "127 41";
|
||||
|
|
@ -392,7 +392,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -406,7 +406,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "191 41";
|
||||
|
|
@ -414,7 +414,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "animations";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -422,7 +422,7 @@
|
|||
};
|
||||
new GuiBitmapBorderCtrl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 68";
|
||||
|
|
@ -430,7 +430,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -444,7 +444,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "59 6";
|
||||
|
|
@ -452,7 +452,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -470,7 +470,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiPopUpMenuProfile";
|
||||
Profile = "ToolsGuiPopUpMenuProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "97 6";
|
||||
|
|
@ -478,7 +478,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Method used to determine LOD for meshes in the model";
|
||||
hovertime = "1000";
|
||||
internalName = "lodType";
|
||||
|
|
@ -499,7 +499,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "196 6";
|
||||
|
|
@ -507,7 +507,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Detail size for all meshes in this model (when LOD type is SingleSize)";
|
||||
hovertime = "1000";
|
||||
internalName = "singleDetailSize";
|
||||
|
|
@ -523,7 +523,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 32";
|
||||
|
|
@ -531,7 +531,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -549,7 +549,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "97 32";
|
||||
|
|
@ -558,7 +558,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "ColladaImportTreeView.refresh(\"materials\");";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "materialPrefix";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -573,7 +573,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "13 58";
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -599,7 +599,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "97 58";
|
||||
|
|
@ -608,7 +608,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "ColladaImportTreeView.refresh(\"nodes\");";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "alwaysImport";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -623,7 +623,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "20 82";
|
||||
|
|
@ -631,7 +631,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -649,7 +649,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "97 82";
|
||||
|
|
@ -658,7 +658,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "ColladaImportTreeView.refresh(\"nodes\");";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "neverImport";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -673,7 +673,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "13 106";
|
||||
|
|
@ -681,7 +681,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -699,7 +699,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "97 106";
|
||||
|
|
@ -708,7 +708,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "ColladaImportTreeView.refresh(\"nodes\");";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "alwaysImportMesh";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -723,7 +723,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "13 130";
|
||||
|
|
@ -731,7 +731,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "97 130";
|
||||
|
|
@ -758,7 +758,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
AltCommand = "ColladaImportTreeView.refresh(\"nodes\");";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "neverImportMesh";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -766,7 +766,7 @@
|
|||
};
|
||||
new GuiBitmapBorderCtrl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 226";
|
||||
|
|
@ -774,7 +774,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -785,7 +785,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 7";
|
||||
|
|
@ -794,7 +794,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ColladaImportDlg.updateOverrideUpAxis($ThisControl.getValue());";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Overrides the <up_axis> specified in the DAE file";
|
||||
hovertime = "1000";
|
||||
internalName = "overrideUpAxis";
|
||||
|
|
@ -813,7 +813,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiPopUpMenuProfile";
|
||||
Profile = "ToolsGuiPopUpMenuProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "151 6";
|
||||
|
|
@ -821,7 +821,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "upAxis";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -833,7 +833,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 27";
|
||||
|
|
@ -842,7 +842,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ColladaImportDlg.updateOverrideScale($ThisControl.getValue());";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Overrides the <unit> scale specified in the DAE file";
|
||||
hovertime = "1000";
|
||||
internalName = "overrideScale";
|
||||
|
|
@ -863,7 +863,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "151 27";
|
||||
|
|
@ -871,7 +871,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "scale";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -883,7 +883,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 48";
|
||||
|
|
@ -891,7 +891,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Ignores <scale> elements within <node>s to fix issues with some models";
|
||||
hovertime = "1000";
|
||||
internalName = "ignoreNodeScale";
|
||||
|
|
@ -904,7 +904,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 67";
|
||||
|
|
@ -912,7 +912,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Translates model so the origin is at the center";
|
||||
hovertime = "1000";
|
||||
internalName = "adjustCenter";
|
||||
|
|
@ -925,7 +925,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "151 67";
|
||||
|
|
@ -933,7 +933,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Translates model so the origin is at the bottom";
|
||||
hovertime = "1000";
|
||||
internalName = "adjustFloor";
|
||||
|
|
@ -946,7 +946,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 86";
|
||||
|
|
@ -954,7 +954,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Forces update of materials.cs (even if Materials already exist)";
|
||||
hovertime = "1000";
|
||||
internalName = "forceUpdateMaterials";
|
||||
|
|
@ -963,7 +963,7 @@
|
|||
};
|
||||
new GuiBitmapBorderCtrl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 338";
|
||||
|
|
@ -971,7 +971,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -982,7 +982,7 @@
|
|||
buttonType = "ToggleButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxProfile";
|
||||
Profile = "ToolsGuiCheckBoxProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 5";
|
||||
|
|
@ -990,7 +990,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Loads the lights from the DAE file and adds them to the current scene.";
|
||||
hovertime = "1000";
|
||||
internalName = "loadLights";
|
||||
|
|
@ -1003,7 +1003,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 368";
|
||||
|
|
@ -1012,7 +1012,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ColladaImportDlg.readDtsConfig();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -1022,7 +1022,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "11 395";
|
||||
|
|
@ -1031,7 +1031,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ColladaImportDlg.writeDtsConfig();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -1041,7 +1041,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "159 368";
|
||||
|
|
@ -1050,7 +1050,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ColladaImportDlg.onOK();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Load the COLLADA model";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -1061,7 +1061,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "159 395";
|
||||
|
|
@ -1070,7 +1070,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ColladaImportDlg.onCancel();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
ToolTip = "Exit without loading the COLLADA model";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -1082,7 +1082,7 @@
|
|||
|
||||
new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -1090,7 +1090,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -1112,7 +1112,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
position = "362 338";
|
||||
|
|
@ -1120,7 +1120,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
MinExtent = "48 92";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -1134,7 +1134,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiRLProgressBitmapProfile";
|
||||
Profile = "ToolsGuiRLProgressBitmapProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "10 34";
|
||||
|
|
@ -1142,7 +1142,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -1156,7 +1156,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "10 62";
|
||||
|
|
@ -1164,7 +1164,7 @@ new GuiControl(ColladaImportProgress,EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
%guiContent = new GuiColorPickerCtrl(ColorPickerDlg,EditorGuiGroup) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
new GuiWindowCtrl(GuiPickerDlg) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "windowRelative";
|
||||
VertSizing = "windowRelative";
|
||||
position = "170 100";
|
||||
|
|
@ -38,34 +38,34 @@
|
|||
closeCommand = "DoColorPickerCancelCallback(); ColorPickerDlg.getRoot().popDialog(ColorPickerDlg);";
|
||||
|
||||
new GuiBitmapBorderCtrl(){ // color blend
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
position = "3 24";
|
||||
Extent = "255 258";
|
||||
};
|
||||
new GuiBitmapBorderCtrl(){ // Hue
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
position = "263 23";
|
||||
Extent = "25 261";
|
||||
};
|
||||
new GuiBitmapBorderCtrl(){ // new old color
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
position = "292 37";
|
||||
Extent = "52 99";
|
||||
};
|
||||
new GuiBitmapBorderCtrl(){ // rgb
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
position = "292 209";
|
||||
Extent = "52 75";
|
||||
};
|
||||
new GuiBitmapBorderCtrl(){ // alpha
|
||||
Profile = "GuiGroupBorderProfile";
|
||||
Profile = "ToolsGuiGroupBorderProfile";
|
||||
position = "3 287";
|
||||
Extent = "341 24";
|
||||
};
|
||||
new GuiColorPickerCtrl(ColorBlendSelect) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "3 24";
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
new GuiColorPickerCtrl(ColorRangeSelect) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "264 24";
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
new GuiTextCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "298 215";
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
maxLength = "255";
|
||||
};
|
||||
new GuiTextEditCtrl(Channel_R_Val) { // Red Channal
|
||||
Profile = "GuiTextEditProfileNumbersOnly";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "307 215";
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
new GuiTextCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "297 238";
|
||||
|
|
@ -141,7 +141,7 @@
|
|||
maxLength = "255";
|
||||
};
|
||||
new GuiTextEditCtrl(Channel_G_Val) { // Green Channal
|
||||
Profile = "GuiTextEditProfileNumbersOnly";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "307 238";
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
new GuiTextCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "298 261";
|
||||
|
|
@ -166,7 +166,7 @@
|
|||
maxLength = "255";
|
||||
};
|
||||
new GuiTextEditCtrl(Channel_B_Val) { // Blue Channal
|
||||
Profile = "GuiTextEditProfileNumbersOnly";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "307 261";
|
||||
|
|
@ -185,7 +185,7 @@
|
|||
new GuiTextCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "267 0";
|
||||
|
|
@ -201,7 +201,7 @@
|
|||
internalName = "slider";
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiSliderProfile";
|
||||
Profile = "ToolsGuiSliderProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "5 3";
|
||||
|
|
@ -217,7 +217,7 @@
|
|||
};
|
||||
new GuiTextEditCtrl(Channel_A_Val) { // Alpha Channal
|
||||
internalName = "textEdit";
|
||||
Profile = "GuiTextEditProfileNumbersOnly";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "305 0";
|
||||
|
|
@ -228,23 +228,23 @@
|
|||
};
|
||||
};
|
||||
new GuiSwatchButtonCtrl(myColor){ // New Color //
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
position = "293 38";
|
||||
Extent = "50 50";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
text = "New";
|
||||
position = "306 22";
|
||||
Extent = "26 14";
|
||||
};
|
||||
new GuiSwatchButtonCtrl(oldColor){ // Old Color //
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
position = "293 85";
|
||||
Extent = "50 50";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
text = "Old";
|
||||
position = "310 138";
|
||||
Extent = "26 14";
|
||||
|
|
@ -252,7 +252,7 @@
|
|||
new GuiButtonCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "144 316";
|
||||
|
|
@ -270,7 +270,7 @@
|
|||
new GuiButtonCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "268 316";
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiWindowProfile";
|
||||
profile = "ToolsGuiWindowProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "152 130";
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
minExtent = "8 2";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
class = "GuiObjectInspector";
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "0";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "1 21";
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
minExtent = "64 64";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "Splitter";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
minExtent = "16 16";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "Panel1";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
new GuiTextEditCtrl() {
|
||||
position = "2 3";
|
||||
extent = "278 18";
|
||||
profile = "GuiTextEditProfile";
|
||||
profile = "ToolsGuiTextEditProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "bottom";
|
||||
superClass = "GuiTreeViewFilterText";
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "281 4";
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
superClass = "GuiTreeViewFilterClearButton";
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiScrollProfile";
|
||||
profile = "ToolsGuiScrollProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "height";
|
||||
position = "1 22";
|
||||
|
|
@ -138,7 +138,7 @@
|
|||
minExtent = "8 2";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -162,7 +162,7 @@
|
|||
canRenameObjects = "1";
|
||||
renameInternal = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiTreeViewProfile";
|
||||
profile = "ToolsGuiTreeViewProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "bottom";
|
||||
position = "1 1";
|
||||
|
|
@ -170,7 +170,7 @@
|
|||
minExtent = "8 2";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "TreeView";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "302 0";
|
||||
|
|
@ -195,7 +195,7 @@
|
|||
minExtent = "16 16";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "panel2";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -214,7 +214,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "0";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "0 2";
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
minExtent = "64 64";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -235,7 +235,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -243,7 +243,7 @@
|
|||
minExtent = "16 16";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "Panel1";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -265,7 +265,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiScrollProfile";
|
||||
profile = "ToolsGuiScrollProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -273,7 +273,7 @@
|
|||
minExtent = "8 2";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -296,7 +296,7 @@
|
|||
minExtent = "16 16";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "inspector";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -315,7 +315,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "0 302";
|
||||
|
|
@ -323,7 +323,7 @@
|
|||
minExtent = "16 50";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "panel2";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -345,7 +345,7 @@
|
|||
anchorLeft = "1";
|
||||
anchorRight = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiScrollProfile";
|
||||
profile = "ToolsGuiScrollProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -353,7 +353,7 @@
|
|||
minExtent = "8 2";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -377,7 +377,7 @@
|
|||
canRenameObjects = "1";
|
||||
renameInternal = "0";
|
||||
isContainer = "1";
|
||||
profile = "GuiTreeViewProfile";
|
||||
profile = "ToolsGuiTreeViewProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "bottom";
|
||||
position = "1 1";
|
||||
|
|
@ -385,7 +385,7 @@
|
|||
minExtent = "8 2";
|
||||
canSave = "1";
|
||||
visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "methodList";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
|
|||
BIN
Templates/Empty/game/tools/gui/images/button.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 857 B After Width: | Height: | Size: 857 B |
|
Before Width: | Height: | Size: 960 B After Width: | Height: | Size: 960 B |
BIN
Templates/Empty/game/tools/gui/images/checkbox.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
Templates/Empty/game/tools/gui/images/clear-btn_d.png
Normal file
|
After Width: | Height: | Size: 593 B |
BIN
Templates/Empty/game/tools/gui/images/clear-btn_h.png
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
Templates/Empty/game/tools/gui/images/clear-btn_n.png
Normal file
|
After Width: | Height: | Size: 377 B |
BIN
Templates/Empty/game/tools/gui/images/collapse-toolbar_d.png
Normal file
|
After Width: | Height: | Size: 280 B |
BIN
Templates/Empty/game/tools/gui/images/collapse-toolbar_h.png
Normal file
|
After Width: | Height: | Size: 468 B |
BIN
Templates/Empty/game/tools/gui/images/collapse-toolbar_n.png
Normal file
|
After Width: | Height: | Size: 439 B |
BIN
Templates/Empty/game/tools/gui/images/crosshair.png
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
Templates/Empty/game/tools/gui/images/crosshair_blue.png
Normal file
|
After Width: | Height: | Size: 134 B |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
BIN
Templates/Empty/game/tools/gui/images/dropDown.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Templates/Empty/game/tools/gui/images/dropdown-button-arrow.png
Normal file
|
After Width: | Height: | Size: 132 B |
BIN
Templates/Empty/game/tools/gui/images/dropdown-textEdit.png
Normal file
|
After Width: | Height: | Size: 390 B |
BIN
Templates/Empty/game/tools/gui/images/dropslider_d.png
Normal file
|
After Width: | Height: | Size: 433 B |
BIN
Templates/Empty/game/tools/gui/images/dropslider_h.png
Normal file
|
After Width: | Height: | Size: 431 B |
BIN
Templates/Empty/game/tools/gui/images/dropslider_n.png
Normal file
|
After Width: | Height: | Size: 428 B |
|
Before Width: | Height: | Size: 236 B After Width: | Height: | Size: 236 B |
BIN
Templates/Empty/game/tools/gui/images/group-border.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1,013 B After Width: | Height: | Size: 1,013 B |
|
Before Width: | Height: | Size: 1,014 B After Width: | Height: | Size: 1,014 B |
BIN
Templates/Empty/game/tools/gui/images/inactive-overlay.png
Normal file
|
After Width: | Height: | Size: 131 B |
BIN
Templates/Empty/game/tools/gui/images/new_d.png
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
Templates/Empty/game/tools/gui/images/new_h.png
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
Templates/Empty/game/tools/gui/images/new_n.png
Normal file
|
After Width: | Height: | Size: 200 B |
|
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 843 B |
|
Before Width: | Height: | Size: 630 B After Width: | Height: | Size: 630 B |
BIN
Templates/Empty/game/tools/gui/images/scrollBar.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Templates/Empty/game/tools/gui/images/separator-h.png
Normal file
|
After Width: | Height: | Size: 117 B |
BIN
Templates/Empty/game/tools/gui/images/separator-v.png
Normal file
|
After Width: | Height: | Size: 118 B |
BIN
Templates/Empty/game/tools/gui/images/slider-w-box.png
Normal file
|
After Width: | Height: | Size: 982 B |
BIN
Templates/Empty/game/tools/gui/images/slider.png
Normal file
|
After Width: | Height: | Size: 908 B |
BIN
Templates/Empty/game/tools/gui/images/tab-border.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Templates/Empty/game/tools/gui/images/tab.png
Normal file
|
After Width: | Height: | Size: 939 B |
BIN
Templates/Empty/game/tools/gui/images/textEditFrame.png
Normal file
|
After Width: | Height: | Size: 250 B |
BIN
Templates/Empty/game/tools/gui/images/textEditSliderBox.png
Normal file
|
After Width: | Height: | Size: 226 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 456 B |
BIN
Templates/Empty/game/tools/gui/images/treeview/default.png
Normal file
|
After Width: | Height: | Size: 375 B |
BIN
Templates/Empty/game/tools/gui/images/treeview/hidden.png
Normal file
|
After Width: | Height: | Size: 420 B |
BIN
Templates/Empty/game/tools/gui/images/window.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
|
|
@ -13,7 +13,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
hovertime = "1000";
|
||||
|
||||
new GuiWindowCtrl(MaterialSelector){
|
||||
profile = "GuiWindowProfile";
|
||||
profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
resizeWidth = "1";
|
||||
|
|
@ -39,7 +39,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
Profile = "inspectorStyleRolloutDarkProfile";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "10 23";
|
||||
|
|
@ -47,7 +47,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
text = "Filters";
|
||||
};
|
||||
new GuiContainer(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "4 39";
|
||||
Extent = "120 507";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -67,7 +67,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiDefaultProfile";
|
||||
tooltipprofile = "ToolsGuiDefaultProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "Client";
|
||||
Margin = "0 0 0 0";
|
||||
|
|
@ -91,7 +91,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
internalName = "filterArray";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "18 0";
|
||||
|
|
@ -113,7 +113,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
isContainer = "1";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "133 23";
|
||||
|
|
@ -125,7 +125,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "594 24";
|
||||
|
|
@ -136,7 +136,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
Command = "MaterialSelector.createNewMaterial();";
|
||||
hovertime = "1000";
|
||||
tooltip = "Create New Unmapped Material";
|
||||
bitmap = "core/art/gui/images/new";
|
||||
bitmap = "tools/gui/images/new";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
|
|
@ -146,7 +146,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "578 24";
|
||||
|
|
@ -164,7 +164,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
};
|
||||
|
||||
new GuiContainer(){ // Materials
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "128 39";
|
||||
Extent = "480 507";
|
||||
HorizSizing = "width";
|
||||
|
|
@ -184,7 +184,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiDefaultProfile";
|
||||
tooltipprofile = "ToolsGuiDefaultProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "Client";
|
||||
Margin = "0 0 0 0";
|
||||
|
|
@ -218,7 +218,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
internalName = "materialSelection";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "3 0";
|
||||
|
|
@ -235,7 +235,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
|
||||
new GuiContainer(){
|
||||
internalName = "materialPreviewControlContainer";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "480 20";
|
||||
HorizSizing = "width";
|
||||
|
|
@ -244,7 +244,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
Docking = "Bottom";
|
||||
|
||||
new GuiTextCtrl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 2";
|
||||
|
|
@ -253,7 +253,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
};
|
||||
new GuiPopupMenuCtrlEx(){
|
||||
internalName = "materialPreviewCountPopup";
|
||||
Profile = "GuiPopupMenuProfile";
|
||||
Profile = "ToolsGuiPopUpMenuProfile";
|
||||
Position = "104 2";
|
||||
Extent = "40 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -280,7 +280,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -290,7 +290,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
Command = "MaterialSelector::firstPage();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
tooltip = "First";
|
||||
hovertime = "1000";
|
||||
text = "|<";
|
||||
|
|
@ -302,7 +302,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -312,7 +312,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
Command = "MaterialSelector::previousPage();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
tooltip = "Previous";
|
||||
hovertime = "1000";
|
||||
text = "<";
|
||||
|
|
@ -336,7 +336,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -346,7 +346,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
Command = "MaterialSelector::nextPage();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
tooltip = "Next";
|
||||
hovertime = "1000";
|
||||
text = ">";
|
||||
|
|
@ -358,7 +358,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -368,7 +368,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
Command = "MaterialSelector::lastPage();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
tooltip = "Last";
|
||||
hovertime = "1000";
|
||||
text = ">|";
|
||||
|
|
@ -389,7 +389,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
isContainer = "1";
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "618 207";
|
||||
|
|
@ -397,7 +397,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
text = "Material Tags";
|
||||
};
|
||||
new GuiContainer(){ // Filter Selection
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "612 223";
|
||||
Extent = "150 295";
|
||||
HorizSizing = "left";
|
||||
|
|
@ -417,7 +417,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSave = "1";
|
||||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiDefaultProfile";
|
||||
tooltipprofile = "ToolsGuiDefaultProfile";
|
||||
hovertime = "1000";
|
||||
Docking = "Client";
|
||||
Margin = "0 0 0 0";
|
||||
|
|
@ -440,7 +440,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
internalName = "materialCategories";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -465,14 +465,14 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
internalName = "previewSelection";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
position = "1 18";
|
||||
extent = "148 148";
|
||||
bitmap = "";
|
||||
};
|
||||
};
|
||||
new GuiTextCtrl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "618 23";
|
||||
|
|
@ -483,7 +483,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
new GuiBitmapCtrl(){
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
position = "612 39";
|
||||
extent = "150 150";
|
||||
bitmap = "tools/worldEditor/images/terrainpainter/terrain-painter-border-large";
|
||||
|
|
@ -493,7 +493,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
internalName = "previewSelectionText";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiTextProfile";
|
||||
profile = "ToolsGuiTextProfile";
|
||||
position = "613 189";
|
||||
extent = "149 16";
|
||||
text = "";
|
||||
|
|
@ -502,7 +502,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
internalName = "SelectButton";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "top";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "612 522";
|
||||
extent = "94 24";
|
||||
text = "Select";
|
||||
|
|
@ -511,7 +511,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
new GuiButtonCtrl(){
|
||||
HorizSizing = "left";
|
||||
VertSizing = "top";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "710 522";
|
||||
extent = "52 24";
|
||||
text = "Cancel";
|
||||
|
|
@ -522,7 +522,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
new GuiWindowCtrl(MaterialSelector_addFilterWindow) {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
position = "362 333";
|
||||
|
|
@ -530,7 +530,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "48 92";
|
||||
canSave = "1";
|
||||
Visible = "0";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -552,7 +552,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
canSaveDynamicFields = "0";
|
||||
internalName = "tagName";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "64 35";
|
||||
|
|
@ -560,7 +560,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -578,7 +578,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
new GuiTextCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "12 35";
|
||||
|
|
@ -586,7 +586,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -600,7 +600,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
new GuiButtonCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "64 68";
|
||||
|
|
@ -608,7 +608,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
|
|
@ -619,7 +619,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
new GuiButtonCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "196 68";
|
||||
|
|
@ -627,7 +627,7 @@ new GuiControl(MaterialSelectorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
|
|
@ -780,7 +780,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
|
||||
%staticFilterContainer = new GuiControl (){
|
||||
new GuiContainer(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -804,7 +804,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
};
|
||||
};
|
||||
new GuiContainer(){ // All
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "415 191";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -813,7 +813,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
parentGroup = %filterArray;
|
||||
|
||||
new GuiCheckBoxCtrl(MaterialFilterAllArrayCheckbox){
|
||||
Profile = "GuiCheckboxListProfile";
|
||||
Profile = "ToolsGuiCheckBoxListProfile";
|
||||
position = "5 2";
|
||||
Extent = "118 18";
|
||||
text = "All";
|
||||
|
|
@ -821,7 +821,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
};
|
||||
};
|
||||
new GuiContainer(){ // Mapped
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "415 191";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -830,7 +830,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
parentGroup = %filterArray;
|
||||
|
||||
new GuiCheckBoxCtrl(MaterialFilterMappedArrayCheckbox){
|
||||
Profile = "GuiCheckboxListProfile";
|
||||
Profile = "ToolsGuiCheckBoxListProfile";
|
||||
position = "5 2";
|
||||
Extent = "118 18";
|
||||
text = "Mapped";
|
||||
|
|
@ -838,7 +838,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
};
|
||||
};
|
||||
new GuiContainer(){ // Unmapped
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "415 191";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -847,7 +847,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
parentGroup = %filterArray;
|
||||
|
||||
new GuiCheckBoxCtrl(MaterialFilterUnmappedArrayCheckbox){
|
||||
Profile = "GuiCheckboxListProfile";
|
||||
Profile = "ToolsGuiCheckBoxListProfile";
|
||||
position = "5 2";
|
||||
Extent = "118 18";
|
||||
text = "Unmapped";
|
||||
|
|
@ -855,7 +855,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
};
|
||||
};
|
||||
new GuiContainer(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -883,7 +883,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "105 2";
|
||||
|
|
@ -894,7 +894,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
Command = "MaterialSelector_addFilterWindow.setVisible(1); MaterialSelectorOverlay.pushToBack(MaterialSelector_addFilterWindow);";
|
||||
hovertime = "1000";
|
||||
tooltip = "Create New Tag";
|
||||
bitmap = "core/art/gui/images/new";
|
||||
bitmap = "tools/gui/images/new";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
|
|
@ -903,7 +903,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "89 2";
|
||||
|
|
@ -914,7 +914,7 @@ function MaterialSelector::buildStaticFilters( %this )
|
|||
Command = "MaterialSelector.clearMaterialFilters();";
|
||||
hovertime = "1000";
|
||||
tooltip = "Clear Selected Tag";
|
||||
bitmap = "core/art/gui/images/clear-btn";
|
||||
bitmap = "tools/gui/images/clear-btn";
|
||||
groupNum = "-1";
|
||||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
|
|
@ -1203,7 +1203,7 @@ function MaterialSelector::buildPreviewArray( %this, %material )
|
|||
// on it later in the function.
|
||||
|
||||
%container = new GuiControl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "74 87";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -1212,7 +1212,7 @@ function MaterialSelector::buildPreviewArray( %this, %material )
|
|||
|
||||
new GuiTextCtrl(){
|
||||
position = "7 71";
|
||||
profile = "GuiTextCenterProfile";
|
||||
profile = "ToolsGuiTextCenterProfile";
|
||||
extent = "64 16";
|
||||
text = %matName;
|
||||
};
|
||||
|
|
@ -1222,7 +1222,7 @@ function MaterialSelector::buildPreviewArray( %this, %material )
|
|||
internalName = %matName;
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "7 4";
|
||||
extent = "64 64";
|
||||
buttonType = "PushButton";
|
||||
|
|
@ -1234,7 +1234,7 @@ function MaterialSelector::buildPreviewArray( %this, %material )
|
|||
new GuiBitmapButtonCtrl(){
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "0 0";
|
||||
extent = "64 64";
|
||||
Variable = "";
|
||||
|
|
@ -1249,7 +1249,7 @@ function MaterialSelector::buildPreviewArray( %this, %material )
|
|||
internalName = %matName@"Border";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiThumbHighlightButtonProfile";
|
||||
profile = "ToolsGuiThumbHighlightButtonProfile";
|
||||
position = "3 0";
|
||||
extent = "72 88";
|
||||
Variable = "";
|
||||
|
|
@ -1321,7 +1321,7 @@ function MaterialSelector::loadMaterialFilters( %this )
|
|||
continue;
|
||||
|
||||
%container = new GuiControl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -1330,7 +1330,7 @@ function MaterialSelector::loadMaterialFilters( %this )
|
|||
};
|
||||
|
||||
%checkbox = new GuiCheckBoxCtrl(){
|
||||
Profile = "GuiCheckBoxListProfile";
|
||||
Profile = "ToolsGuiCheckBoxListProfile";
|
||||
position = "5 1";
|
||||
Extent = "118 18";
|
||||
Command = "";
|
||||
|
|
@ -1382,7 +1382,7 @@ function MaterialSelector::createFilter( %this, %filter )
|
|||
}
|
||||
}
|
||||
%container = new GuiControl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "128 18";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -1390,7 +1390,7 @@ function MaterialSelector::createFilter( %this, %filter )
|
|||
isContainer = "1";
|
||||
|
||||
new GuiCheckBoxCtrl(){
|
||||
Profile = "GuiCheckBoxListProfile";
|
||||
Profile = "ToolsGuiCheckBoxListProfile";
|
||||
position = "5 1";
|
||||
Extent = "118 18";
|
||||
Command = "";
|
||||
|
|
@ -1446,7 +1446,7 @@ function MaterialSelector::updateSelection( %this, %material, %previewImagePath
|
|||
|
||||
%checkbox = new GuiCheckBoxCtrl(){
|
||||
materialName = %material.name;
|
||||
Profile = "GuiCheckBoxListProfile";
|
||||
Profile = "ToolsGuiCheckBoxListProfile";
|
||||
position = "5 2";
|
||||
Extent = "118 18";
|
||||
Command = "MaterialSelector.updateMaterialTags( $ThisControl.materialName, $ThisControl.getText(), $ThisControl.getValue() );";
|
||||
|
|
@ -1627,7 +1627,7 @@ function MaterialSelector::createNewMaterial( %this )
|
|||
{
|
||||
// create the new material gui
|
||||
%container = new GuiControl(){
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
Position = "0 0";
|
||||
Extent = "74 85";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -1635,7 +1635,7 @@ function MaterialSelector::createNewMaterial( %this )
|
|||
isContainer = "1";
|
||||
new GuiTextCtrl(){
|
||||
position = "10 70";
|
||||
profile = "GuiTextCenterProfile";
|
||||
profile = "ToolsGuiTextCenterProfile";
|
||||
extent = "64 16";
|
||||
text = %material.name;
|
||||
};
|
||||
|
|
@ -1645,7 +1645,7 @@ function MaterialSelector::createNewMaterial( %this )
|
|||
internalName = %material.name;
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "7 4";
|
||||
extent = "64 64";
|
||||
buttonType = "PushButton";
|
||||
|
|
@ -1657,7 +1657,7 @@ function MaterialSelector::createNewMaterial( %this )
|
|||
new GuiBitmapButtonCtrl(){
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "0 0";
|
||||
extent = "64 64";
|
||||
Variable = "";
|
||||
|
|
@ -1672,7 +1672,7 @@ function MaterialSelector::createNewMaterial( %this )
|
|||
internalName = %material.name@"Border";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiThumbHighlightButtonProfile";
|
||||
profile = "ToolsGuiThumbHighlightButtonProfile";
|
||||
position = "3 0";
|
||||
extent = "72 88";
|
||||
Variable = "";
|
||||
|
|
@ -1934,7 +1934,7 @@ function MaterialSelector::buildPagesButtons(%this, %currentPage, %totalPages)
|
|||
if( %startbracket )
|
||||
{
|
||||
%control = new GuiTextCtrl(){
|
||||
profile = "GuiTextCenterProfile";
|
||||
profile = "ToolsGuiTextCenterProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 2";
|
||||
|
|
@ -1953,7 +1953,7 @@ function MaterialSelector::buildPagesButtons(%this, %currentPage, %totalPages)
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextCenterProfile";
|
||||
Profile = "ToolsGuiTextCenterProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -1963,7 +1963,7 @@ function MaterialSelector::buildPagesButtons(%this, %currentPage, %totalPages)
|
|||
isDecoy = "0";
|
||||
Visible = "1";
|
||||
Command = "MaterialSelector.schedule(0, selectPage, " @ %i @ ");";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
text = %i+1;
|
||||
groupNum = "-1";
|
||||
|
|
@ -1974,7 +1974,7 @@ function MaterialSelector::buildPagesButtons(%this, %currentPage, %totalPages)
|
|||
else
|
||||
{
|
||||
%control = new GuiTextCtrl(){
|
||||
profile = "GuiTextBoldCenterProfile";
|
||||
profile = "ToolsGuiTextBoldCenterProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 2";
|
||||
|
|
@ -1990,7 +1990,7 @@ function MaterialSelector::buildPagesButtons(%this, %currentPage, %totalPages)
|
|||
if( %endbracket )
|
||||
{
|
||||
%control = new GuiTextCtrl(){
|
||||
profile = "GuiTextCenterProfile";
|
||||
profile = "ToolsGuiTextCenterProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 2";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(MessageBoxOKBuyDlg) {
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
helpTag = "0";
|
||||
|
||||
new GuiWindowCtrl(MBOKBuyFrame) {
|
||||
profile = "GuiWindowProfile";
|
||||
profile = "ToolsGuiWindowProfile";
|
||||
horizSizing = "center";
|
||||
vertSizing = "center";
|
||||
position = "170 175";
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
closeCommand = "MessageCallback(MessageBoxOKBuyDlg,MessageBoxOKBuyDlg.noCallback);";
|
||||
|
||||
new GuiMLTextCtrl(MBOKBuyText) {
|
||||
profile = "GuiMLTextProfile";
|
||||
profile = "ToolsGuiMLTextProfile";
|
||||
horizSizing = "center";
|
||||
vertSizing = "bottom";
|
||||
position = "11 38";
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
maxChars = "-1";
|
||||
};
|
||||
new GuiButtonCtrl() {
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "top";
|
||||
position = "70 68";
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
simpleStyle = "0";
|
||||
};
|
||||
new GuiButtonCtrl() {
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
horizSizing = "right";
|
||||
vertSizing = "top";
|
||||
position = "167 68";
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
function MessageBoxOKBuy(%title, %message, %OKCallback, %BuyCallback)
|
||||
{
|
||||
MBOKBuyFrame.text = %title;
|
||||
MessageBoxOKBuyDlg.profile = "GuiOverlayProfile";
|
||||
MessageBoxOKBuyDlg.profile = "ToolsGuiOverlayProfile";
|
||||
Canvas.pushDialog(MessageBoxOKBuyDlg);
|
||||
MBSetText(MBOKBuyText, MBOKBuyFrame, %message);
|
||||
MessageBoxOKBuyDlg.OKCallback = %OKCallback;
|
||||
|
|
|
|||
|
|
@ -315,7 +315,7 @@ function EObjectSelection::initClassList( %this )
|
|||
{
|
||||
canSaveDynamicFields = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiCheckBoxListFlipedProfile";
|
||||
Profile = "ToolsGuiCheckBoxListFlipedProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "0 0";
|
||||
|
|
@ -323,7 +323,7 @@ function EObjectSelection::initClassList( %this )
|
|||
MinExtent = "8 2";
|
||||
canSave = "0";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
tooltip = "Include/exclude all " @ %className @ " objects.";
|
||||
text = %text;
|
||||
|
|
|
|||
|
|
@ -27,6 +27,622 @@ function execEditorProfilesCS()
|
|||
|
||||
$Gui::clipboardFile = expandFilename("./clipboard.gui");
|
||||
|
||||
|
||||
if( !isObject( ToolsGuiDefaultProfile ) )
|
||||
new GuiControlProfile (ToolsGuiDefaultProfile)
|
||||
{
|
||||
tab = false;
|
||||
canKeyFocus = false;
|
||||
hasBitmapArray = false;
|
||||
mouseOverSelected = false;
|
||||
|
||||
// fill color
|
||||
opaque = false;
|
||||
fillColor = "242 241 240";
|
||||
fillColorHL ="228 228 235";
|
||||
fillColorSEL = "98 100 137";
|
||||
fillColorNA = "255 255 255 ";
|
||||
|
||||
// border color
|
||||
border = 0;
|
||||
borderColor = "100 100 100";
|
||||
borderColorHL = "50 50 50 50";
|
||||
borderColorNA = "75 75 75";
|
||||
|
||||
// font
|
||||
fontType = "Arial";
|
||||
fontSize = 14;
|
||||
fontCharset = ANSI;
|
||||
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "0 0 0";
|
||||
fontColorSEL= "255 255 255";
|
||||
|
||||
// bitmap information
|
||||
bitmap = "";
|
||||
bitmapBase = "";
|
||||
textOffset = "0 0";
|
||||
|
||||
// used by guiTextControl
|
||||
modal = true;
|
||||
justify = "left";
|
||||
autoSizeWidth = false;
|
||||
autoSizeHeight = false;
|
||||
returnTab = false;
|
||||
numbersOnly = false;
|
||||
cursorColor = "0 0 0 255";
|
||||
|
||||
// sounds
|
||||
//soundButtonDown = "";
|
||||
//soundButtonOver = "";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiSolidDefaultProfile ) )
|
||||
new GuiControlProfile (ToolsGuiSolidDefaultProfile)
|
||||
{
|
||||
opaque = true;
|
||||
border = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTransparentProfile ) )
|
||||
new GuiControlProfile (ToolsGuiTransparentProfile)
|
||||
{
|
||||
opaque = false;
|
||||
border = false;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiGroupBorderProfile ) )
|
||||
new GuiControlProfile( ToolsGuiGroupBorderProfile )
|
||||
{
|
||||
border = false;
|
||||
opaque = false;
|
||||
hasBitmapArray = true;
|
||||
bitmap = "./images/group-border";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTabBorderProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTabBorderProfile )
|
||||
{
|
||||
border = false;
|
||||
opaque = false;
|
||||
hasBitmapArray = true;
|
||||
bitmap = "./images/tab-border";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiToolTipProfile ) )
|
||||
new GuiControlProfile (ToolsGuiToolTipProfile)
|
||||
{
|
||||
// fill color
|
||||
fillColor = "239 237 222";
|
||||
|
||||
// border color
|
||||
borderColor = "138 134 122";
|
||||
|
||||
// font
|
||||
fontType = "Arial";
|
||||
fontSize = 14;
|
||||
fontColor = "0 0 0";
|
||||
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiModelessDialogProfile ) )
|
||||
new GuiControlProfile( ToolsGuiModelessDialogProfile )
|
||||
{
|
||||
modal = false;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiFrameSetProfile ) )
|
||||
new GuiControlProfile (ToolsGuiFrameSetProfile)
|
||||
{
|
||||
fillcolor = "255 255 255";
|
||||
borderColor = "246 245 244";
|
||||
border = 1;
|
||||
opaque = true;
|
||||
border = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiWindowProfile ) )
|
||||
new GuiControlProfile (ToolsGuiWindowProfile)
|
||||
{
|
||||
opaque = false;
|
||||
border = 2;
|
||||
fillColor = "242 241 240";
|
||||
fillColorHL = "221 221 221";
|
||||
fillColorNA = "200 200 200";
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
bevelColorHL = "255 255 255";
|
||||
bevelColorLL = "0 0 0";
|
||||
text = "untitled";
|
||||
bitmap = "./images/window";
|
||||
textOffset = "8 4";
|
||||
hasBitmapArray = true;
|
||||
justify = "left";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiToolbarWindowProfile ) )
|
||||
new GuiControlProfile(ToolsGuiToolbarWindowProfile : ToolsGuiWindowProfile)
|
||||
{
|
||||
bitmap = "./images/toolbar-window";
|
||||
text = "";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiWindowCollapseProfile ) )
|
||||
new GuiControlProfile (ToolsGuiWindowCollapseProfile : ToolsGuiWindowProfile)
|
||||
{
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextProfile ) )
|
||||
new GuiControlProfile (ToolsGuiTextProfile)
|
||||
{
|
||||
justify = "left";
|
||||
fontColor = "20 20 20";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextBoldCenterProfile ) )
|
||||
new GuiControlProfile (ToolsGuiTextBoldCenterProfile : ToolsGuiTextProfile)
|
||||
{
|
||||
fontColor = "50 50 50";
|
||||
fontType = "Arial Bold";
|
||||
fontSize = 16;
|
||||
justify = "center";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextRightProfile ) )
|
||||
new GuiControlProfile (ToolsGuiTextRightProfile : ToolsGuiTextProfile)
|
||||
{
|
||||
justify = "right";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextCenterProfile ) )
|
||||
new GuiControlProfile (ToolsGuiTextCenterProfile : ToolsGuiTextProfile)
|
||||
{
|
||||
justify = "center";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiInspectorTitleTextProfile ) )
|
||||
new GuiControlProfile (ToolsGuiInspectorTitleTextProfile)
|
||||
{
|
||||
fontColor = "100 100 100";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiAutoSizeTextProfile ) )
|
||||
new GuiControlProfile (ToolsGuiAutoSizeTextProfile)
|
||||
{
|
||||
fontColor = "0 0 0";
|
||||
autoSizeWidth = true;
|
||||
autoSizeHeight = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiMLTextProfile ) )
|
||||
new GuiControlProfile( ToolsGuiMLTextProfile )
|
||||
{
|
||||
fontColorLink = "100 100 100";
|
||||
fontColorLinkHL = "255 255 255";
|
||||
autoSizeWidth = true;
|
||||
autoSizeHeight = true;
|
||||
border = false;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextArrayProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTextArrayProfile : ToolsGuiTextProfile )
|
||||
{
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = " 0 0 0";
|
||||
fontColorSEL = "0 0 0";
|
||||
fillColor ="200 200 200";
|
||||
fillColorHL = "228 228 235";
|
||||
fillColorSEL = "200 200 200";
|
||||
border = false;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextListProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTextListProfile : ToolsGuiTextProfile )
|
||||
{
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextEditProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTextEditProfile )
|
||||
{
|
||||
opaque = true;
|
||||
bitmap = "./images/textEditFrame";
|
||||
hasBitmapArray = true;
|
||||
border = -2; // fix to display textEdit img
|
||||
//borderWidth = "1"; // fix to display textEdit img
|
||||
//borderColor = "100 100 100";
|
||||
fillColor = "242 241 240 0";
|
||||
fillColorHL = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "255 255 255";
|
||||
fontColorSEL = "98 100 137";
|
||||
fontColorNA = "200 200 200";
|
||||
textOffset = "4 2";
|
||||
autoSizeWidth = false;
|
||||
autoSizeHeight = true;
|
||||
justify = "left";
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiNumericTextEditProfile ) )
|
||||
new GuiControlProfile( ToolsGuiNumericTextEditProfile : ToolsGuiTextEditProfile )
|
||||
{
|
||||
numbersOnly = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiNumericDropSliderTextProfile ) )
|
||||
new GuiControlProfile( ToolsGuiNumericDropSliderTextProfile : ToolsGuiTextEditProfile )
|
||||
{
|
||||
bitmap = "./images/textEditSliderBox";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiRLProgressBitmapProfile ) )
|
||||
new GuiControlProfile( ToolsGuiRLProgressBitmapProfile )
|
||||
{
|
||||
border = false;
|
||||
hasBitmapArray = true;
|
||||
bitmap = "./images/rl-loadingbar";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiProgressTextProfile ) )
|
||||
new GuiControlProfile( ToolsGuiProgressTextProfile )
|
||||
{
|
||||
fontSize = "14";
|
||||
fontType = "Arial";
|
||||
fontColor = "0 0 0";
|
||||
justify = "center";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiButtonProfile ) )
|
||||
new GuiControlProfile( ToolsGuiButtonProfile )
|
||||
{
|
||||
opaque = true;
|
||||
border = true;
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "200 200 200";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/button";
|
||||
hasBitmapArray = false;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiThumbHighlightButtonProfile ) )
|
||||
new GuiControlProfile( ToolsGuiThumbHighlightButtonProfile : ToolsGuiButtonProfile )
|
||||
{
|
||||
bitmap = "./images/thumbHightlightButton";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiIconButtonProfile ) )
|
||||
new GuiControlProfile( ToolsGuiIconButtonProfile )
|
||||
{
|
||||
opaque = true;
|
||||
border = true;
|
||||
fontColor = "50 50 50";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "200 200 200";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/iconbutton";
|
||||
hasBitmapArray = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiIconButtonSmallProfile ) )
|
||||
new GuiControlProfile( ToolsGuiIconButtonSmallProfile : ToolsGuiIconButtonProfile )
|
||||
{
|
||||
bitmap = "./images/iconbuttonsmall";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiEditorTabPage ) )
|
||||
new GuiControlProfile(ToolsGuiEditorTabPage)
|
||||
{
|
||||
opaque = true;
|
||||
border = false;
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "0 0 0";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/tab";
|
||||
hasBitmapArray = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiCheckBoxProfile ) )
|
||||
new GuiControlProfile( ToolsGuiCheckBoxProfile )
|
||||
{
|
||||
opaque = false;
|
||||
fillColor = "232 232 232";
|
||||
border = false;
|
||||
borderColor = "100 100 100";
|
||||
fontSize = 14;
|
||||
fontColor = "20 20 20";
|
||||
fontColorHL = "80 80 80";
|
||||
fontColorNA = "200 200 200";
|
||||
fixedExtent = true;
|
||||
justify = "left";
|
||||
bitmap = "./images/checkbox";
|
||||
hasBitmapArray = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiCheckBoxListProfile ) )
|
||||
new GuiControlProfile( ToolsGuiCheckBoxListProfile : ToolsGuiCheckBoxProfile)
|
||||
{
|
||||
bitmap = "./images/checkbox-list";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiCheckBoxListFlipedProfile ) )
|
||||
new GuiControlProfile( ToolsGuiCheckBoxListFlipedProfile : ToolsGuiCheckBoxProfile)
|
||||
{
|
||||
bitmap = "./images/checkbox-list_fliped";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiInspectorCheckBoxTitleProfile ) )
|
||||
new GuiControlProfile( ToolsGuiInspectorCheckBoxTitleProfile : ToolsGuiCheckBoxProfile ){
|
||||
fontColor = "100 100 100";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiRadioProfile ) )
|
||||
new GuiControlProfile( ToolsGuiRadioProfile )
|
||||
{
|
||||
fontSize = 14;
|
||||
fillColor = "232 232 232";
|
||||
fontColor = "20 20 20";
|
||||
fontColorHL = "80 80 80";
|
||||
fixedExtent = true;
|
||||
bitmap = "./images/radioButton";
|
||||
hasBitmapArray = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiScrollProfile ) )
|
||||
new GuiControlProfile( ToolsGuiScrollProfile )
|
||||
{
|
||||
opaque = true;
|
||||
fillcolor = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "150 150 150";
|
||||
border = true;
|
||||
bitmap = "./images/scrollBar";
|
||||
hasBitmapArray = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiOverlayProfile ) )
|
||||
new GuiControlProfile( ToolsGuiOverlayProfile )
|
||||
{
|
||||
opaque = true;
|
||||
fillcolor = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "255 255 255";
|
||||
fillColor = "0 0 0 100";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiSliderProfile ) )
|
||||
new GuiControlProfile( ToolsGuiSliderProfile )
|
||||
{
|
||||
bitmap = "./images/slider";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiSliderBoxProfile ) )
|
||||
new GuiControlProfile( ToolsGuiSliderBoxProfile )
|
||||
{
|
||||
bitmap = "./images/slider-w-box";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiPopupMenuItemBorder ) )
|
||||
new GuiControlProfile( ToolsGuiPopupMenuItemBorder : ToolsGuiButtonProfile )
|
||||
{
|
||||
opaque = true;
|
||||
border = true;
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "255 255 255";
|
||||
fixedExtent = false;
|
||||
justify = "center";
|
||||
canKeyFocus = false;
|
||||
bitmap = "./images/button";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiPopUpMenuDefault ) )
|
||||
new GuiControlProfile( ToolsGuiPopUpMenuDefault : ToolsGuiDefaultProfile )
|
||||
{
|
||||
opaque = true;
|
||||
mouseOverSelected = true;
|
||||
textOffset = "3 3";
|
||||
border = 0;
|
||||
borderThickness = 0;
|
||||
fixedExtent = true;
|
||||
bitmap = "./images/scrollbar";
|
||||
hasBitmapArray = true;
|
||||
profileForChildren = ToolsGuiPopupMenuItemBorder;
|
||||
fillColor = "242 241 240 ";//"255 255 255";//100
|
||||
fillColorHL = "228 228 235 ";//"204 203 202";
|
||||
fillColorSEL = "98 100 137 ";//"204 203 202";
|
||||
// font color is black
|
||||
fontColorHL = "0 0 0 ";//"0 0 0";
|
||||
fontColorSEL = "255 255 255";//"0 0 0";
|
||||
borderColor = "100 100 100";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiPopUpMenuProfile ) )
|
||||
new GuiControlProfile( ToolsGuiPopUpMenuProfile : ToolsGuiPopUpMenuDefault )
|
||||
{
|
||||
textOffset = "6 4";
|
||||
bitmap = "./images/dropDown";
|
||||
hasBitmapArray = true;
|
||||
border = 1;
|
||||
profileForChildren = ToolsGuiPopUpMenuDefault;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiPopUpMenuTabProfile ) )
|
||||
new GuiControlProfile( ToolsGuiPopUpMenuTabProfile : ToolsGuiPopUpMenuDefault )
|
||||
{
|
||||
bitmap = "./images/dropDown-tab";
|
||||
textOffset = "6 4";
|
||||
canKeyFocus = true;
|
||||
hasBitmapArray = true;
|
||||
border = 1;
|
||||
profileForChildren = ToolsGuiPopUpMenuDefault;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiPopUpMenuEditProfile ) )
|
||||
new GuiControlProfile( ToolsGuiPopUpMenuEditProfile : ToolsGuiPopUpMenuDefault )
|
||||
{
|
||||
textOffset = "6 4";
|
||||
canKeyFocus = true;
|
||||
bitmap = "./images/dropDown";
|
||||
hasBitmapArray = true;
|
||||
border = 1;
|
||||
profileForChildren = ToolsGuiPopUpMenuDefault;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiListBoxProfile ) )
|
||||
new GuiControlProfile( ToolsGuiListBoxProfile )
|
||||
{
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTabBookProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTabBookProfile )
|
||||
{
|
||||
fillColorHL = "100 100 100";
|
||||
fillColorNA = "150 150 150";
|
||||
fontColor = "30 30 30";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorNA = "50 50 50";
|
||||
fontType = "Arial";
|
||||
fontSize = 14;
|
||||
justify = "center";
|
||||
bitmap = "./images/tab";
|
||||
tabWidth = 64;
|
||||
tabHeight = 24;
|
||||
tabPosition = "Top";
|
||||
tabRotation = "Horizontal";
|
||||
textOffset = "0 -3";
|
||||
tab = true;
|
||||
cankeyfocus = true;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTabBookNoBitmapProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTabBookNoBitmapProfile : ToolsGuiTabBookProfile )
|
||||
{
|
||||
bitmap = "";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTabPageProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTabPageProfile : ToolsGuiDefaultProfile )
|
||||
{
|
||||
fontType = "Arial";
|
||||
fontSize = 10;
|
||||
justify = "center";
|
||||
bitmap = "./images/tab";
|
||||
opaque = false;
|
||||
fillColor = "240 239 238";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTreeViewProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTreeViewProfile )
|
||||
{
|
||||
bitmap = "./images/treeView";
|
||||
autoSizeHeight = true;
|
||||
canKeyFocus = true;
|
||||
fillColor = "255 255 255";
|
||||
fillColorHL = "228 228 235";
|
||||
fillColorSEL = "98 100 137";
|
||||
fillColorNA = "255 255 255";
|
||||
fontColor = "0 0 0";
|
||||
fontColorHL = "0 0 0";
|
||||
fontColorSEL= "255 255 255";
|
||||
fontColorNA = "200 200 200";
|
||||
borderColor = "128 000 000";
|
||||
borderColorHL = "255 228 235";
|
||||
fontSize = 14;
|
||||
opaque = false;
|
||||
border = false;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiTextPadProfile ) )
|
||||
new GuiControlProfile( ToolsGuiTextPadProfile )
|
||||
{
|
||||
fontType = ($platform $= "macos") ? "Monaco" : "Lucida Console";
|
||||
fontSize = ($platform $= "macos") ? 13 : 12;
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
|
||||
// Deviate from the Default
|
||||
opaque=true;
|
||||
fillColor = "255 255 255";
|
||||
border = 0;
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
if( !isObject( ToolsGuiFormProfile ) )
|
||||
new GuiControlProfile( ToolsGuiFormProfile : ToolsGuiTextProfile )
|
||||
{
|
||||
opaque = false;
|
||||
border = 5;
|
||||
justify = "center";
|
||||
profileForChildren = ToolsGuiButtonProfile;
|
||||
opaque = false;
|
||||
hasBitmapArray = true;
|
||||
bitmap = "./images/button";
|
||||
category = "Tools";
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
singleton GuiControlProfile( GuiEditorClassProfile )
|
||||
{
|
||||
opaque = true;
|
||||
|
|
@ -38,7 +654,7 @@ singleton GuiControlProfile( GuiEditorClassProfile )
|
|||
fontColorHL = "50 50 50";
|
||||
fixedExtent = true;
|
||||
justify = "center";
|
||||
bitmap = "core/art/gui/images/scrollBar";
|
||||
bitmap = "tools/gui/images/scrollBar";
|
||||
hasBitmapArray = true;
|
||||
category = "Editor";
|
||||
};
|
||||
|
|
@ -73,7 +689,7 @@ singleton GuiControlProfile( GuiControlListPopupProfile )
|
|||
autoSizeHeight = true;
|
||||
tab = true;
|
||||
canKeyFocus = true;
|
||||
bitmap = "core/art/gui/images/scrollBar";
|
||||
bitmap = "tools/gui/images/scrollBar";
|
||||
hasBitmapArray = true;
|
||||
category = "Editor";
|
||||
};
|
||||
|
|
@ -85,7 +701,7 @@ singleton GuiControlProfile( GuiSceneGraphEditProfile )
|
|||
category = "Editor";
|
||||
};
|
||||
|
||||
singleton GuiControlProfile( GuiInspectorButtonProfile : GuiButtonProfile )
|
||||
singleton GuiControlProfile( GuiInspectorButtonProfile : ToolsGuiButtonProfile )
|
||||
{
|
||||
//border = 1;
|
||||
justify = "Center";
|
||||
|
|
@ -124,9 +740,9 @@ singleton GuiControlProfile( GuiInspectorTextEditProfile )
|
|||
fontColorNA = "100 100 100";
|
||||
category = "Editor";
|
||||
};
|
||||
singleton GuiControlProfile( GuiDropdownTextEditProfile : GuiTextEditProfile )
|
||||
singleton GuiControlProfile( GuiDropdownTextEditProfile : ToolsGuiTextEditProfile )
|
||||
{
|
||||
bitmap = "core/art/gui/images/dropdown-textEdit";
|
||||
bitmap = "tools/gui/images/dropdown-textEdit";
|
||||
category = "Editor";
|
||||
};
|
||||
singleton GuiControlProfile( GuiInspectorTextEditRightProfile : GuiInspectorTextEditProfile )
|
||||
|
|
@ -337,7 +953,7 @@ singleton GuiControlProfile( GuiInspectorColumnCtrlProfile : GuiInspectorFieldPr
|
|||
singleton GuiControlProfile( InspectorTypeEnumProfile : GuiInspectorFieldProfile )
|
||||
{
|
||||
mouseOverSelected = true;
|
||||
bitmap = "core/art/gui/images/scrollBar";
|
||||
bitmap = "tools/gui/images/scrollBar";
|
||||
hasBitmapArray = true;
|
||||
opaque=true;
|
||||
border=true;
|
||||
|
|
@ -347,7 +963,7 @@ singleton GuiControlProfile( InspectorTypeEnumProfile : GuiInspectorFieldProfile
|
|||
|
||||
singleton GuiControlProfile( InspectorTypeCheckboxProfile : GuiInspectorFieldProfile )
|
||||
{
|
||||
bitmap = "core/art/gui/images/checkBox";
|
||||
bitmap = "tools/gui/images/checkBox";
|
||||
hasBitmapArray = true;
|
||||
opaque=false;
|
||||
border=false;
|
||||
|
|
@ -355,7 +971,7 @@ singleton GuiControlProfile( InspectorTypeCheckboxProfile : GuiInspectorFieldPro
|
|||
category = "Editor";
|
||||
};
|
||||
|
||||
singleton GuiControlProfile( GuiToolboxButtonProfile : GuiButtonProfile )
|
||||
singleton GuiControlProfile( GuiToolboxButtonProfile : ToolsGuiButtonProfile )
|
||||
{
|
||||
justify = "center";
|
||||
fontColor = "0 0 0";
|
||||
|
|
@ -364,12 +980,7 @@ singleton GuiControlProfile( GuiToolboxButtonProfile : GuiButtonProfile )
|
|||
category = "Editor";
|
||||
};
|
||||
|
||||
singleton GuiControlProfile( T2DDatablockDropDownProfile : GuiPopUpMenuProfile )
|
||||
{
|
||||
category = "Editor";
|
||||
};
|
||||
|
||||
singleton GuiControlProfile( GuiDirectoryTreeProfile : GuiTreeViewProfile )
|
||||
singleton GuiControlProfile( GuiDirectoryTreeProfile : ToolsGuiTreeViewProfile )
|
||||
{
|
||||
fontColor = "40 40 40";
|
||||
fontColorSEL= "250 250 250 175";
|
||||
|
|
@ -400,12 +1011,12 @@ singleton GuiControlProfile( GuiInspectorFieldInfoPaneProfile )
|
|||
{
|
||||
opaque = false;
|
||||
fillcolor = GuiInspectorBackgroundProfile.fillColor;
|
||||
borderColor = GuiDefaultProfile.borderColor;
|
||||
borderColor = ToolsGuiDefaultProfile.borderColor;
|
||||
border = 1;
|
||||
category = "Editor";
|
||||
};
|
||||
|
||||
singleton GuiControlProfile( GuiInspectorFieldInfoMLTextProfile : GuiMLTextProfile )
|
||||
singleton GuiControlProfile( GuiInspectorFieldInfoMLTextProfile : ToolsGuiMLTextProfile )
|
||||
{
|
||||
opaque = false;
|
||||
border = 0;
|
||||
|
|
@ -417,9 +1028,9 @@ singleton GuiControlProfile( GuiEditorScrollProfile )
|
|||
{
|
||||
opaque = true;
|
||||
fillcolor = GuiInspectorBackgroundProfile.fillColor;
|
||||
borderColor = GuiDefaultProfile.borderColor;
|
||||
borderColor = ToolsGuiDefaultProfile.borderColor;
|
||||
border = 1;
|
||||
bitmap = "core/art/gui/images/scrollBar";
|
||||
bitmap = "tools/gui/images/scrollBar";
|
||||
hasBitmapArray = true;
|
||||
category = "Editor";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(MessageBoxSaveChangesDlg, EditorGuiGroup) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
new GuiWindowCtrl(MBSaveChangesFrame) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
position = "362 274";
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
new GuiIconButtonCtrl(mbSaveDlgSaveButton) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "240 117";
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
};
|
||||
new GuiIconButtonCtrl(mbSaveDlgCancelButton) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "158 117";
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
};
|
||||
new GuiIconButtonCtrl(mbSaveDlgDontButton) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "14 117";
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
};
|
||||
new GuiControl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "13 31";
|
||||
|
|
@ -119,7 +119,7 @@
|
|||
};
|
||||
new GuiTextCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "15 38";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(ScriptEditorDlg,EditorGuiGroup) {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
position = "176 120";
|
||||
|
|
@ -41,13 +41,13 @@
|
|||
Visible = "1";
|
||||
Command = "ScriptEditorDlg.close();";
|
||||
Accelerator = "escape";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "8 24";
|
||||
|
|
@ -55,13 +55,13 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
new GuiControl() {
|
||||
isContainer = "1";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "8 7";
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "0 0";
|
||||
|
|
@ -97,7 +97,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
maxChars = "-1";
|
||||
useURLMouseCursor = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextPadProfile";
|
||||
Profile = "ToolsGuiTextPadProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "2 2";
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
internalName = "TextPad";
|
||||
canSaveDynamicFields = "0";
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "top";
|
||||
position = "460 424";
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "ScriptEditorDlg.close();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
buttonType = "PushButton";
|
||||
useMouseEvents = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "top";
|
||||
position = "560 424";
|
||||
|
|
@ -173,7 +173,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "_TextPadOnOk();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//--- OBJECT WRITE BEGIN ---
|
||||
%guiContent = new GuiControl(simViewDlg, EditorGuiGroup) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "0 0";
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
new GuiWindowCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
position = "70 43";
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
new GuiScrollCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "height";
|
||||
position = "10 28";
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
|
||||
new GuiTreeViewCtrl(InspectTreeView) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiTreeViewProfile";
|
||||
Profile = "ToolsGuiTreeViewProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "2 2";
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
};
|
||||
new GuiScrollCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "height";
|
||||
position = "272 96";
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
VertStacking = "Top to Bottom";
|
||||
Padding = "1";
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiTransparentProfile";
|
||||
Profile = "ToolsGuiTransparentProfile";
|
||||
HorizSizing = "width";
|
||||
VertSizing = "bottom";
|
||||
position = "2 2";
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
};
|
||||
new GuiControl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "bottom";
|
||||
position = "272 28";
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
|
||||
new GuiTextEditCtrl(InspectObjectName) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "121 8";
|
||||
|
|
@ -171,7 +171,7 @@
|
|||
};
|
||||
new GuiTextEditCtrl(InspectObjectInternalName) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiTextEditProfile";
|
||||
Profile = "ToolsGuiTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "121 35";
|
||||
|
|
@ -204,7 +204,7 @@
|
|||
};
|
||||
new GuiIconButtonCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "321 33";
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
};
|
||||
new GuiIconButtonCtrl() {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "321 6";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
||||
canSaveDynamicFields = "0";
|
||||
Profile = "GuiOverlayProfile";
|
||||
Profile = "ToolsGuiOverlayProfile";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -13,7 +13,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
hovertime = "1000";
|
||||
|
||||
new GuiWindowCtrl(UVEditor){
|
||||
profile = "GuiWindowProfile";
|
||||
profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
resizeWidth = "0";
|
||||
|
|
@ -40,7 +40,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "26 24";
|
||||
|
|
@ -48,7 +48,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -62,7 +62,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextCenterProfile";
|
||||
Profile = "ToolsGuiTextCenterProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "138 24";
|
||||
|
|
@ -70,7 +70,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -84,7 +84,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "250 24";
|
||||
|
|
@ -92,7 +92,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -107,7 +107,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "4 36";
|
||||
|
|
@ -115,7 +115,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -129,7 +129,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "4 159";
|
||||
|
|
@ -137,7 +137,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -151,7 +151,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextRightProfile";
|
||||
Profile = "ToolsGuiTextRightProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "4 282";
|
||||
|
|
@ -159,7 +159,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -167,7 +167,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
new GuiControl(){
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiSolidDefaultProfile";
|
||||
profile = "ToolsGuiSolidDefaultProfile";
|
||||
position = "25 37";
|
||||
extent = "258 258";
|
||||
};
|
||||
|
|
@ -176,7 +176,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
internalName = "bitmapPreview";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
profile = "GuiDefaultProfile";
|
||||
profile = "ToolsGuiDefaultProfile";
|
||||
position = "26 38";
|
||||
extent = "256 256";
|
||||
wrap = "0";
|
||||
|
|
@ -185,7 +185,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
new GuiRectHandles(){
|
||||
internalName = "uvHandles";
|
||||
class = "UVEditorRectHandles";
|
||||
Profile = "GuiDefaultProfile";
|
||||
Profile = "ToolsGuiDefaultProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "26 38";
|
||||
|
|
@ -193,7 +193,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
};
|
||||
|
||||
new GuiBitmapBorderCtrl() {
|
||||
profile = "GuiGroupBorderProfile";
|
||||
profile = "ToolsGuiGroupBorderProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "bottom";
|
||||
position = "26 300";
|
||||
|
|
@ -214,7 +214,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "10 7";
|
||||
|
|
@ -222,13 +222,13 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
new GuiPopupMenuCtrlEx(){
|
||||
internalName = "colorPopup";
|
||||
Profile = "GuiPopupMenuProfile";
|
||||
Profile = "ToolsGuiPopUpMenuProfile";
|
||||
Position = "80 5";
|
||||
Extent = "126 20";
|
||||
HorizSizing = "right";
|
||||
|
|
@ -239,7 +239,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
};
|
||||
|
||||
new GuiBitmapBorderCtrl() {
|
||||
profile = "GuiGroupBorderProfile";
|
||||
profile = "ToolsGuiGroupBorderProfile";
|
||||
horizSizing = "width";
|
||||
vertSizing = "bottom";
|
||||
position = "292 38";
|
||||
|
|
@ -260,7 +260,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "10 12";
|
||||
|
|
@ -268,7 +268,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -288,7 +288,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditNumericProfile";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "44 10";
|
||||
|
|
@ -296,7 +296,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
};
|
||||
|
|
@ -310,7 +310,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "10 32";
|
||||
|
|
@ -318,7 +318,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -338,7 +338,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditNumericProfile";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "44 30";
|
||||
|
|
@ -346,7 +346,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
};
|
||||
|
|
@ -360,7 +360,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "10 52";
|
||||
|
|
@ -368,7 +368,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -388,7 +388,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditNumericProfile";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "44 50";
|
||||
|
|
@ -396,7 +396,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
};
|
||||
|
|
@ -410,7 +410,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "10 72";
|
||||
|
|
@ -418,7 +418,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "0";
|
||||
};
|
||||
|
|
@ -438,7 +438,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
AnchorLeft = "1";
|
||||
AnchorRight = "0";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextEditNumericProfile";
|
||||
Profile = "ToolsGuiNumericTextEditProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
position = "44 70";
|
||||
|
|
@ -446,14 +446,14 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
canSaveDynamicFields = "1";
|
||||
};
|
||||
new GuiButtonCtrl(){
|
||||
HorizSizing = "right";
|
||||
VertSizing = "top";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "44 94";
|
||||
extent = "64 20";
|
||||
text = "Reset";
|
||||
|
|
@ -465,7 +465,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
internalName = "OKButton";
|
||||
HorizSizing = "left";
|
||||
VertSizing = "top";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "292 306";
|
||||
extent = "94 24";
|
||||
text = "OK";
|
||||
|
|
@ -475,7 +475,7 @@ new GuiControl(UVEditorOverlay, EditorGuiGroup) {
|
|||
new GuiButtonCtrl(){
|
||||
HorizSizing = "left";
|
||||
VertSizing = "top";
|
||||
profile = "GuiButtonProfile";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
position = "391 306";
|
||||
extent = "52 24";
|
||||
text = "Cancel";
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
bitmap = "art/gui/background";
|
||||
useVariable = "0";
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiWindowProfile";
|
||||
Profile = "ToolsGuiWindowProfile";
|
||||
HorizSizing = "center";
|
||||
VertSizing = "center";
|
||||
Position = "476 191";
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "10 23";
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "46 317";
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "GE_ReturnToMainMenu();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
text = "Play Game";
|
||||
groupNum = "-1";
|
||||
|
|
@ -94,7 +94,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "1";
|
||||
Profile = "GuiScrollProfile";
|
||||
Profile = "ToolsGuiScrollProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "10 41";
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiMLTextProfile";
|
||||
Profile = "ToolsGuiMLTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "5 1";
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
MinExtent = "8 2";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
lineSpacing = "2";
|
||||
allowColorChars = "0";
|
||||
|
|
@ -142,7 +142,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "112 267";
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "GE_OpenGUIFile();";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
text = "Browse";
|
||||
groupNum = "-1";
|
||||
|
|
@ -162,7 +162,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "9 244";
|
||||
|
|
@ -170,7 +170,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
@ -185,7 +185,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiButtonProfile";
|
||||
Profile = "ToolsGuiButtonProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "10 267";
|
||||
|
|
@ -194,7 +194,7 @@
|
|||
canSave = "1";
|
||||
Visible = "1";
|
||||
Command = "GuiEditorNewGuiDialog.init( \"NewGui\", \"GuiControl\" );" @ "Canvas.pushdialog(GuiEditorNewGuiDialog);";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
text = "New GUI";
|
||||
groupNum = "-1";
|
||||
|
|
@ -205,7 +205,7 @@
|
|||
canSaveDynamicFields = "0";
|
||||
Enabled = "1";
|
||||
isContainer = "0";
|
||||
Profile = "GuiTextProfile";
|
||||
Profile = "ToolsGuiTextProfile";
|
||||
HorizSizing = "right";
|
||||
VertSizing = "bottom";
|
||||
Position = "9 294";
|
||||
|
|
@ -213,7 +213,7 @@
|
|||
MinExtent = "8 8";
|
||||
canSave = "1";
|
||||
Visible = "1";
|
||||
tooltipprofile = "GuiToolTipProfile";
|
||||
tooltipprofile = "ToolsGuiToolTipProfile";
|
||||
hovertime = "1000";
|
||||
Margin = "0 0 0 0";
|
||||
Padding = "0 0 0 0";
|
||||
|
|
|
|||