Creation/Dev/Script/Client/GuiControlProfile: Difference between revisions
From Graal Bible
(Added text shadow attributes) |
No edit summary |
||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
GuiControlProfile (TGraalVar): | GuiControlProfile (TGraalVar): | ||
align - string - "left", "center" or "right" | align - string - controls justification of text: "left", "center" or "right" | ||
autosizeheight - boolean | autosizeheight - boolean | ||
autosizewidth - boolean | autosizewidth - boolean | ||
bitmap - string - filename of the image template, ie: "guiblue_window.png" | bitmap - string - filename of the image template, ie: "guiblue_window.png" | ||
border - integer | border - integer (1..5) | ||
bordercolor - | bordercolor - {red,green,blue,alpha} - default border color of the control | ||
bordercolorhl - | bordercolorhl - {red,green,blue,alpha} - border color when the control is active | ||
bordercolorna - | bordercolorna - {red,green,blue,alpha} - border color when the control is disabled | ||
borderthickness - integer - size of the border (in pixels?) | borderthickness - integer - size of the border (in pixels?) | ||
cankeyfocus - boolean - can this control steal key focus? (textboxes must have this set to true) | cankeyfocus - boolean - can this control steal key focus? (textboxes must have this set to true) | ||
cursorcolor - | cursorcolor - {red,green,blue,alpha} - color of the cursor (caret) in a text box | ||
fillcolor - | fillcolor - {red,green,blue,alpha} - default background color | ||
fillcolorhl - | fillcolorhl - {red,green,blue,alpha} - background color when active | ||
fillcolorna - | fillcolorna - {red,green,blue,alpha} - background color when disabled | ||
fontcolor - | fontcolor - {red,green,blue,alpha} - default font color | ||
fontcolorhl - | fontcolorhl - {red,green,blue,alpha} - font color when highlighted | ||
fontcolorna - | fontcolorna - {red,green,blue,alpha} - font color when disabled | ||
fontcolorsel - | fontcolorsel - {red,green,blue,alpha} - font color of selected text (in a textbox) | ||
fontcolorlink - | fontcolorlink - {red,green,blue,alpha} - default font color of links | ||
fontcolorlinkhl - | fontcolorlinkhl - {red,green,blue,alpha} - font color of links when active | ||
fontsize - integer - size of the font | fontsize - integer - size of the font | ||
fontstyle - string - combination of font styles, ie: "bc" | fontstyle - string - combination of font styles, ie: "bc" (b - bold, i - italic, u - underline, s - strikeout, c - centered, r - right aligned) | ||
fonttype - string - type of font to use, ie: "Tempus Sans ITC" | fonttype - string - type of font to use, ie: "Tempus Sans ITC" | ||
justify - string - the same like "align" | justify - string - the same like "align" | ||
linespacing - integer - | linespacing - integer - number of pixels between lines in multiline controls | ||
modal - boolean - | modal - boolean - can be focussed and steals the input (e.g. edit controls or text list control where you navigate with the cursor key) | ||
mouseoverselected - boolean - does putting your mouse over this control act as if it was clicked? | mouseoverselected - boolean - does putting your mouse over this control act as if it was clicked? | ||
numbersonly - boolean - can only numbers be entered in this control? | numbersonly - boolean - can only numbers be entered in this control? | ||
Line 36: | Line 36: | ||
soundbuttonover - string - filename of sound played when the mouse is hovered over the control | soundbuttonover - string - filename of sound played when the mouse is hovered over the control | ||
tab - boolean | tab - boolean | ||
textoffset - string | textoffset - string - controls how far offset the text is from the top-left of the control | ||
textshadow - boolean - enables or disables the shadow | textshadow - boolean - enables or disables the shadow | ||
transparency - float - alpha transparency of the control (from 0 to 1) | transparency - float - alpha transparency of the control (from 0 to 1) | ||
</pre> | </pre> |
Revision as of 15:26, 17 September 2006
GuiControlProfile (TGraalVar): align - string - controls justification of text: "left", "center" or "right" autosizeheight - boolean autosizewidth - boolean bitmap - string - filename of the image template, ie: "guiblue_window.png" border - integer (1..5) bordercolor - {red,green,blue,alpha} - default border color of the control bordercolorhl - {red,green,blue,alpha} - border color when the control is active bordercolorna - {red,green,blue,alpha} - border color when the control is disabled borderthickness - integer - size of the border (in pixels?) cankeyfocus - boolean - can this control steal key focus? (textboxes must have this set to true) cursorcolor - {red,green,blue,alpha} - color of the cursor (caret) in a text box fillcolor - {red,green,blue,alpha} - default background color fillcolorhl - {red,green,blue,alpha} - background color when active fillcolorna - {red,green,blue,alpha} - background color when disabled fontcolor - {red,green,blue,alpha} - default font color fontcolorhl - {red,green,blue,alpha} - font color when highlighted fontcolorna - {red,green,blue,alpha} - font color when disabled fontcolorsel - {red,green,blue,alpha} - font color of selected text (in a textbox) fontcolorlink - {red,green,blue,alpha} - default font color of links fontcolorlinkhl - {red,green,blue,alpha} - font color of links when active fontsize - integer - size of the font fontstyle - string - combination of font styles, ie: "bc" (b - bold, i - italic, u - underline, s - strikeout, c - centered, r - right aligned) fonttype - string - type of font to use, ie: "Tempus Sans ITC" justify - string - the same like "align" linespacing - integer - number of pixels between lines in multiline controls modal - boolean - can be focussed and steals the input (e.g. edit controls or text list control where you navigate with the cursor key) mouseoverselected - boolean - does putting your mouse over this control act as if it was clicked? numbersonly - boolean - can only numbers be entered in this control? opaque - boolean - if set to true, transparency will be ignored returntab - boolean shadowcolor - {red,green,blue} - specifies the color of the shadow (use in combination with textshadow=true) shadowoffset - array of format {offsetx,offsety} - specifies the position of the shadow (use in combination with textshadow=true) soundbuttondown - string - filename of sound played when the control is clicked soundbuttonover - string - filename of sound played when the mouse is hovered over the control tab - boolean textoffset - string - controls how far offset the text is from the top-left of the control textshadow - boolean - enables or disables the shadow transparency - float - alpha transparency of the control (from 0 to 1)