|
|
(54 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
| These are the XML elements and parameters used within the floaters, panels, and so forth, that make up the viewer user interface. They are used by the [[Skinning How To/The XML files and what they do | XUI files]] in the '''\skins\default\xui''' folders. See [[Skinning HowTo/Basics]] for an explanation of how these are used. | | {{XUI Nav}} |
| | == Overview == |
| | This page describes the XML attributes for the XUI widgets that don't fit into any other category below. These are some of the XML elements and parameters used within the floaters, panels, and so forth, that make up the viewer user interface. They are used by the [[Skinning How To/The XML files and what they do | XUI files]] in the '''\skins\default\xui''' folders. |
|
| |
|
| Many widgets use the same XML parameters. Rather than repeating them for every widget, they are described separately in [[Skinning HowTo/Common XUI XML parameters]] and just listed under the elements that use them. | | Many XUI elements share the same parameters. Rather than repeatedly describing them, we just list their names here and describe them at [[Skinning HowTo/Common XUI attributes]]. |
|
| |
|
| === button parameters === | | == icon == |
| ----
| |
| *Class LLButton : LLUICtrl : LLView
| |
| *In source file llui/llbutton.cpp
| |
| *Used by floater, panel, layout_stack, layout_panel, and form.
| |
|
| |
|
| ===== scale_image =====
| | *Class LLIconCtrl : LLUICtrl : LLView |
| ''Optional.'' Specifies whether to scale the button art as its container/floater is resized. As of 1.18.x, all button art has this property set to <code>true</code> where the button size is not equal to 32x128.
| | *In source file llui/lliconctrl.cpp |
| | *Used by floater, panel, layout_stack, layout_panel, multi_floater, and widgetset. |
|
| |
|
| Boolean: <code>scale_image="true"</code>
| | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| | height="80" left="551" min_height="80" min_width="250" mouse_opaque="true" |
| | name="example_icon" tab_stop="false" title="icon" width="250"> |
| | <icon bottom="20" color="1 0.5 0 1" enabled="true" height="30" left="10" |
| | mouse_opaque="false" name="icon" tab_stop="false" width="223" |
| | image_name="icon_day_cycle.tga" /> |
| | </floater></xml> |
|
| |
|
| ===== label ===== | | ===Common attributes=== |
| ''Optional.'' Label is the text on the button's face. Without a specified label (and no <code>image_overlay</code> declared), your button will be labeled "Button". | | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| String: <code>label="Click Me!" </code>
| | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| ===== label_selected =====
| | *'''[[Skinning HowTo/Common XUI attributes#Text|Text]]:''' label |
| ''Optional.'' Label is the text on the button's face when pressed into an 'on' state. Your button will inherit the <code> label</code> if you omit this property. | | *'''Others:''' [[Skinning HowTo/Common XUI attributes#border|border]] |
| String: <code>label_selected="I've been clicked." </code>
| |
| ===== font =====
| |
| (under construction)
| |
| ===== font_style =====
| |
| ''Optional.'' Styles the text. Allows multiple style selections. As of 1.18.x, the style options are: | |
|
| |
|
| * normal: Apply the default styles of the selected font. (For example, SansSerifBold has a default bold style applied to it.)
| | ===Special attributes=== |
| * bold: Bolds the text.
| |
| * italic: Italicizes the text.
| |
| * underline: Underlines the text.
| |
| * drop_shadow: Old-style 1px offset of black under the text.
| |
| * drop_shadow_soft: New-style 3px offset of blurred shadow under the text.
| |
|
| |
|
| String: <code>font_style="bold|underline|drop_shadow_soft"</code>
| | ==== image_name ==== |
| | ''Required.'' Specifies the name of the image to load for this icon. |
|
| |
|
| ===== halign ===== | | String: <code>image_name="myicon.png"</code> |
| ''Optional.'' Controls horizontal alignment of label on button face. Options are "left", "center" and "right".
| |
|
| |
|
| ===== image_unselected ===== | | ==== color ==== |
| ''Optional.'' Overrides the default button art for the unselected/up and enabled button state. Art must be located in the <code>..\skins\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/textures</code>). Art must also be named in <code>textures.xml</code> with an assigned UUID. By default, the button art is stretched to fit the specified button size.
| | ''Optional.'' |
| | |
| String: <code>image_unselected="btn_square_32x128.tga"</code>
| |
| | |
| ===== image_selected =====
| |
| ''Optional.'' Overrides the default button art for the selected/down button state. Art must be located in the <code>..\skins\[SKIN]\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/textures</code>). By default, the button art is stretched to fit the specified button size. | |
| | |
| String: <code>image_selected="btn_square-down_32x128.tga"</code>
| |
| | |
| ===== image_hover_selected =====
| |
| ''Optional.'' Overrides the default button art for the selected/down and mouseover/hover button state. Art must be located in the <code>..\skins\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/[SKIN]/textures</code>). Art must also be named in <code>textures.xml</code> with an assigned UUID. By default, the button art is stretched to fit the specified button size.
| |
| | |
| String: <code>image_unselected="btn_square-down-hover_32x128.tga"</code>
| |
| | |
| ===== image_hover_unselected =====
| |
| ''Optional.'' Overrides the default button art for the unselected/up and mouseover/hover button state. Art must be located in the <code>..\skins\[SKIN]\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/[SKIN]/textures</code>). Art must also be named in <code>textures.xml</code> with an assigned UUID. By default, the button art is stretched to fit the specified button size.
| |
| | |
| String: <code>image_unselected="btn_square-up-hover_32x128.tga"</code>
| |
| | |
| ===== image_disabled =====
| |
| ''Optional.'' Overrides the default button art for the disabled button state. Art must be located in the <code>..\skins\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/[SKIN]/textures</code>). Art must also be named in <code>textures.xml</code> with an assigned UUID. By default, the button art is stretched to fit the specified button size.
| |
| | |
| String: <code>image_unselected="btn_square-disabled_32x128.tga"</code>
| |
| | |
| ===== image_disabled_selected =====
| |
| ''Optional.'' Overrides the default button art for the disabled and selected/down button state. Art must be located in the <code>..\skins\[SKIN]\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/textures</code>). Art must also be named in <code>textures.xml</code> with an assigned UUID. By default, the button art is stretched to fit the specified button size.
| |
|
| |
|
| String: <code>image_unselected="btn_square-down-disabled_32x128.tga"</code>
| | ==== bg_alpha_color ==== |
| | |
| ===== image_overlay ===== | |
| ''Optional.'' Applies an overlay image to the button. The button art will be sized to fit. As of 1.18.x, these icons should be 16 pixels high at maximum on a standard height 24px button to minimize scaling artifacts. Can be used with or without text. Art must be located in the <code>..\skins\[SKIN]\textures</code> directory within the Second Life application folder (on a Mac, this is inside the package at <code>Contents/MacOS/Resources/skins/[SKIN]/textures</code>). Art must also be named in <code>textures.xml</code> with an assigned UUID. See [[#image_overlay_alignment|image_overlay_alignment]] for alignment options.
| |
| | |
| String: <code>image_overlay="icn_media-play_16.tga"</code>
| |
| | |
| ===== image_overlay_alignment =====
| |
| ''Optional.'' Sets the alignment of the <code>image_overlay</code> icon.
| |
| | |
| Values:
| |
| * left: left-aligns the art on the button. This standard is used for new button art with text in the Dazzle branch.
| |
| * right: right-aligns the the art on the button.
| |
| * center: centers the art on the button. This standard is used for new button art without text in the Dazzle branch.
| |
| | |
| String: <code>image_overlay_alignment="left"</code>
| |
| | |
| ===== toggle =====
| |
| ''Optional.'' Determines whether the button is a toggle button or not. The Fly/Stop Flying button is a toggle button, for example.
| |
| | |
| Boolean: <code>toggle="false"</code>
| |
| | |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== tab_group =====
| |
| ''Optional.''
| |
| ===== pad_right =====
| |
| ''Optional.''
| |
| ===== hidden =====
| |
| ''Optional.''
| |
| ===== tab_stop =====
| |
| ''Optional.''
| |
| ===== help_url =====
| |
| ''Optional.''
| |
| ===== sound_flags =====
| |
| ''Optional.''
| |
| ===== auto_resize =====
| |
| ''Optional.''
| |
| ===== user_resize =====
| |
| ''Optional.''
| |
| ===== valign =====
| |
| ''Optional.''
| |
| ===== default =====
| |
| ''Optional.''
| |
| ===== index =====
| |
| ''Optional.''
| |
| ===== text =====
| |
| ''Optional.'' | | ''Optional.'' |
| ===== ignore ===== | | ==== scale_image ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== control_name ===== | | ==== auto_resize ==== |
| ''Optional.''
| |
| ===== label_width =====
| |
| ''Optional.''
| |
| ===== image =====
| |
| ''Optional.'' | | ''Optional.'' |
|
| |
|
| === check_box parameters === | | == inventory_panel == |
| ----
| |
| *Class LLCheckBoxCtrl : LLUICtrl : LLView
| |
| *In source file llui/llcheckboxctrl.cpp
| |
| *Used by floater, panel, and layout_panel.
| |
|
| |
|
| ===== bottom =====
| | *Class LLInventoryPanel : LLPanel : LLUICtrl : LLView |
| ''Optional.''
| | *In source file newview/llinventoryview.cpp |
| ===== bottom_delta =====
| | *Used by floater, panel, and tab_container. |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== initial_value =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== radio_style =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== tab_stop =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== tab_group =====
| |
| ''Optional.''
| |
| ===== halign =====
| |
| ''Optional.''
| |
| ===== border_drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== hidden =====
| |
| ''Optional.''
| |
| ===== max_length =====
| |
| ''Optional.''
| |
|
| |
|
| === color_swatch parameters === | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ----
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| *Class LLColorSwatchCtrl : LLUICtrl : LLView
| | can_resize="false" can_tear_off="false" enabled="true" follows="left|top" |
| *In source file newview/llcolorswatch.cpp
| | height="300" left="550" min_height="300" min_width="250" mouse_opaque="true" |
| *Used by floater and panel.
| | name="example_inventory_panel" tab_stop="false" title="inventory_panel" |
| | width="250"> |
| | <inventory_panel allow_multi_select="true" border="true" bottom="20" enabled="true" height="250" |
| | left="20" mouse_opaque="true" name="inventory_panel" tab_stop="false" |
| | width="215" /> |
| | </floater></xml> |
|
| |
|
| ===== border_color ===== | | ===Common attributes=== |
| ''Optional.'' | | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| ===== bottom =====
| | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| ''Optional.'' | | *'''[[Skinning HowTo/Common XUI attributes#Text|Text]]:''' label |
| ===== bottom_delta =====
| | *'''Others:''' [[Skinning HowTo/Common XUI attributes#border|border]] |
| ''Optional.'' | |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.'' | |
| ===== can_apply_immediately =====
| |
| ===== color =====
| |
| ''Optional.'' | |
| ===== height =====
| |
| ===== width =====
| |
| ===== label =====
| |
| ===== mouse_opaque =====
| |
| ''Optional.'' | |
| ===== name =====
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.'' | |
|
| |
|
| === combo_box parameters === | | ===Special attributes=== |
| ----
| |
| *Class LLComboBox : LLUICtrl : LLView
| |
| *In source file llui/llcombobox.cpp
| |
| *Used by floater, panel, and layout_panel.
| |
| *Can contain combo_item.
| |
|
| |
|
| ===== allow_text_entry ===== | | ==== allow_multi_select ==== |
| ''Optional.''
| | ==== sort_order ==== |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== length =====
| |
| ''Optional.''
| |
| ===== max_chars =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== tab_group =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== initial_value =====
| |
| ''Optional.''
| |
| ===== halign =====
| |
| ''Optional.''
| |
| ===== max_length ===== | |
| ''Optional.''
| |
| ===== bg_readonly_color =====
| |
| ''Optional.''
| |
| ===== text_readonly_color =====
| |
| ''Optional.''
| |
|
| |
|
| === combo_item parameters === | | == locate == |
| ----
| |
| *member of LLComboBox : LLUICtrl : LLView
| |
| *In source file llui/llcombobox.cpp
| |
| *Used by combo_box.
| |
|
| |
|
| ===== name =====
| | These are two tags that mean the same thing. |
| ===== value =====
| |
| ''Optional.''
| |
| ===== type =====
| |
| ''Optional.''
| |
| ===== length =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
|
| |
|
| === flyout_button parameters ===
| | *Class LLUICtrlLocate : LLUICtrl : LLView |
| ----
| | *In source file llui/lluictrlfactory.cpp |
| *Class LLFlyoutButton : LLComboBox : LLUICtrl : LLView | | *Used by floater and panel. |
| *In source file llui/llcombobox.cpp | |
| *Used by floater, panel, and layout_stack. | |
| *Can contain flyout_button_item.
| |
|
| |
|
| ===== bottom ===== | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ''Optional.''
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| ===== bottom_delta =====
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| ''Optional.''
| | height="150" left="550" min_height="150" min_width="250" mouse_opaque="true" |
| ===== left ===== | | name="example_locate" tab_stop="false" title="locate" width="250"> |
| ''Optional.''
| | <locate bottom="100" enabled="true" left="20" mouse_opaque="false" |
| ===== left_delta ===== | | name="locate" tab_stop="false" /> |
| ''Optional.''
| | <icon color="1 0.5 0 1" enabled="true" height="30" |
| ===== follows =====
| | mouse_opaque="false" name="icon" tab_stop="false" width="210" |
| ===== height =====
| | image_name="icon_day_cycle.tga" /> |
| ===== halign ===== | | </floater></xml> |
| ''Optional.''
| |
| ===== width ===== | |
| ===== label ===== | |
| ===== label_selected ===== | |
| ''Optional.''
| |
| ===== list_position =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== tool_tip =====
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== auto_resize =====
| |
| ''Optional.''
| |
| ===== user_resize ===== | |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
|
| |
|
| === flyout_button_item parameters ===
| | '''NOTE''': The pad element is deprecated and not used in Viewer2. |
| ----
| |
| *member of LLFlyoutButton : LLComboBox : LLUICtrl : LLView
| |
| *In source file llui/llcombobox.cpp
| |
| *Used by flyout_button.
| |
|
| |
|
| ===== value ===== | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ===== name ===== | | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| | height="150" left="550" min_height="150" min_width="250" mouse_opaque="true" |
| | name="example_pad" tab_stop="false" title="pad" width="250"> |
| | <pad bottom="100" enabled="true" left="20" mouse_opaque="false" |
| | name="pad" tab_stop="false" /> |
| | <icon color="1 0.5 0 1" enabled="true" height="30" |
| | mouse_opaque="false" name="icon" tab_stop="false" width="210" |
| | image_name="icon_day_cycle.tga" /> |
| | </floater></xml> |
|
| |
|
| === icon parameters === | | ===Common attributes=== |
| ----
| | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| *Used by floater, panel, layout_stack, layout_panel, multi_floater, and widgetset. | | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| *Class LLIconCtrl | |
| *In source file llui/lliconctrl.cpp
| |
| ===== image_name =====
| |
| ''Required.'' Specifies the name of the image to load for this icon. | |
|
| |
|
| String: <code>image_name="myicon.png"</code>
| | == progress_bar == |
| ===== bottom ===== | |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== top =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ''Optional.''
| |
| ===== color =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== bg_alpha_color =====
| |
| ''Optional.''
| |
| ===== border =====
| |
| ''Optional.''
| |
| ===== scale_image =====
| |
| ''Optional.''
| |
| ===== auto_resize =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
|
| |
|
| === inventory_panel parameters ===
| | *Class LLProgressBar : LLView |
| ----
| | *In source file llui/llprogressbar.cpp |
| *Used by floater, panel, and tab_container.
| | *Used by layout_panel. |
| *Class LLInventoryPanel | |
| *In source file newview/llinventoryview.cpp | |
| ===== allow_multi_select =====
| |
| ===== border =====
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
| ===== sort_order =====
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
|
| |
|
| === joystick_turn parameters === | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ----
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| *Used by floater.
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| *Class LLJoystickAgentTurn
| | height="100" left="550" min_height="100" min_width="250" mouse_opaque="true" |
| *In source file newview/lljoystickbutton.cpp
| | name="example_progress_bar" tab_stop="false" title="progress_bar" |
| ===== bottom =====
| | width="250"> |
| ===== left ===== | | <progress_bar bottom="20" enabled="true" height="50" left="20" mouse_opaque="false" |
| ===== enabled =====
| | name="progress_bar" width="200" /> |
| ===== follows =====
| | </floater></xml> |
| ===== halign ===== | |
| ===== height ===== | |
| ===== width =====
| |
| ===== image_selected =====
| |
| ===== image_unselected ===== | |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
| ===== quadrant =====
| |
| ===== scale_image =====
| |
| ===== tool_tip =====
| |
|
| |
|
| === joystick_slide parameters === | | ===Common attributes=== |
| ----
| | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| *Used by floater. | | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| *Class LLJoystickAgentSlide | |
| *In source file newview/lljoystickbutton.cpp
| |
| ===== bottom =====
| |
| ===== left =====
| |
| ===== enabled =====
| |
| ===== follows =====
| |
| ===== halign =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== image_selected =====
| |
| ===== image_unselected =====
| |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
| ===== quadrant =====
| |
| ===== scale_image =====
| |
| ===== tool_tip =====
| |
|
| |
|
| === line_editor parameters === | | ===Special attributes=== |
| ----
| |
| *Used by floater, panel, and layout_panel.
| |
| *Class LLLineEditor
| |
| *In source file llui/lllineeditor.cpp
| |
| <line_editor> creates a single line text box
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== max_length =====
| |
| ''Optional.''
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== bevel_style =====
| |
| ''Optional.''
| |
| * none
| |
| * in
| |
| * out
| |
| * bright
| |
| * line
| |
| * texture
| |
| ===== border_style =====
| |
| ''Optional.''
| |
| ===== border_thickness =====
| |
| ''Optional.''
| |
| ===== select_on_focus =====
| |
| ''Optional.''
| |
| ===== select_all_focus_received =====
| |
| ''Optional.''
| |
| ===== handle_edit_keys_directly =====
| |
| ''Optional.''
| |
| ===== cursor_color =====
| |
| ''Optional.''
| |
| ===== text_color =====
| |
| ''Optional.''
| |
| ===== text_readonly_color =====
| |
| ''Optional.''
| |
| ===== bg_readonly_color =====
| |
| ''Optional.''
| |
| ===== bg_writeable_color =====
| |
| ''Optional.''
| |
| ===== bg_focus_color =====
| |
| ''Optional.''
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== handle_edit_keys_directly =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== tab_group =====
| |
| ''Optional.''
| |
| ===== commit_on_focus_lost =====
| |
| ''Optional.''
| |
| ===== hidden =====
| |
| ''Optional.''
| |
| ===== is_unicode =====
| |
| ''Optional.''
| |
| ===== increment =====
| |
| ''Optional.''
| |
| ===== initial_val =====
| |
| ''Optional.''
| |
| ===== max_val =====
| |
| ''Optional.''
| |
| ===== min_val =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== bg_visible =====
| |
| ''Optional.''
| |
| ===== border_drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== border_visible =====
| |
| ''Optional.''
| |
| ===== drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== h_pad =====
| |
| ''Optional.''
| |
| ===== halign =====
| |
| ''Optional.''
| |
| ===== prevalidate =====
| |
| ''Optional.''
| |
| ===== v_pad =====
| |
| ''Optional.''
| |
| ===== word_wrap =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
|
| |
|
| === locate parameters === | | ==== color ==== |
| ----
| |
| *Used by panel.
| |
| *Class LLUICtrlLocate
| |
| *In source file llui/lluictrlfactory.cpp
| |
| ===== bottom_delta =====
| |
| ===== height =====
| |
| ===== left_delta =====
| |
| ===== name =====
| |
| ===== width =====
| |
|
| |
|
| === multi_slider parameters === | | == search_editor == |
| ----
| |
| *Used by panel.
| |
| *Class LLMultiSlider
| |
| *In source file llui/llmultislider.cpp
| |
| ===== allow_overlap =====
| |
| ===== bottom =====
| |
| ===== left =====
| |
| ===== can_edit_text =====
| |
| ===== control_name =====
| |
| ===== decimal_digits =====
| |
| ===== draw_track =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== increment =====
| |
| ===== initial_val =====
| |
| ===== label =====
| |
| ===== max_sliders =====
| |
| ===== max_val =====
| |
| ===== min_val =====
| |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
| ===== show_text =====
| |
| ===== use_triangle =====
| |
| ''Optional.''
| |
| ===== value =====
| |
|
| |
|
| === name_editor parameters ===
| | *Class LLSearchEditor : LLUICtrl : LLView |
| ----
| | *In source file llui/lllineeditor.cpp |
| *Used by panel.
| | *Used by floater. |
| *Class LLNameEditor | |
| *In source file newview/llnameditor.cpp | |
| ===== bevel_style =====
| |
| ===== bg_readonly_color =====
| |
| ''Optional.''
| |
| ===== border_style =====
| |
| ===== border_thickness =====
| |
| ===== bottom =====
| |
| ===== left_delta =====
| |
| ===== follows =====
| |
| ===== font =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== max_length =====
| |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
| ===== text_readonly_color =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== is_unicode =====
| |
| ''Optional.''
| |
|
| |
|
| === name_list parameters === | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ----
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| *Used by floater and panel.
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| *Can contain column.
| | height="80" left="550" min_height="80" min_width="250" mouse_opaque="true" |
| *Class LLNameListCtrl
| | name="example_search_editor" tab_stop="false" title="search_editor" |
| *In source file newview/llnamelistctrl.cpp
| | width="250"> |
| ===== allow_calling_card_drop =====
| | <search_editor bottom="20" enabled="true" height="20" left="20" mouse_opaque="true" |
| ''Optional.''
| | name="search_editor" tab_stop="true" width="200" /> |
| ===== background_visible =====
| | </floater></xml> |
| ''Optional.''
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta ===== | |
| ''Optional.''
| |
| ===== left ===== | |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== column_padding =====
| |
| ''Optional.''
| |
| ===== draw_border =====
| |
| ''Optional.''
| |
| ===== draw_heading =====
| |
| ''Optional.''
| |
| ===== draw_stripes =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== multi_select =====
| |
| ===== name =====
| |
| ===== name_column_index =====
| |
| ''Optional.''
| |
| ===== heading_font =====
| |
| ''Optional.''
| |
| ===== heading_height =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== bg_selected_color =====
| |
| ''Optional.''
| |
| ===== fg_selected_color =====
| |
| ''Optional.''
| |
| ===== fg_disable_color =====
| |
| ''Optional.''
| |
| ===== fg_unselected_color =====
| |
| ''Optional.''
| |
| ===== background_opaque =====
| |
| ''Optional.''
| |
| ===== bg_alpha_color =====
| |
| ''Optional.''
| |
| ===== bg_opaque_color =====
| |
| ''Optional.''
| |
|
| |
|
| === column parameters === | | ===Common attributes=== |
| ----
| | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| *Used by name_list and scroll_list. | | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| ===== name =====
| | *'''[[Skinning HowTo/Common XUI attributes#Text|Text]]:''' label |
| ===== label =====
| |
| ''Optional.'' | |
| ===== sort =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== dynamicwidth =====
| |
| ''Optional.'' | |
| ===== relwidth =====
| |
| ''Optional.'' | |
| ===== image =====
| |
| ''Optional.'' | |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== user_resize =====
| |
| ''Optional.''
| |
|
| |
|
| === pad parameters === | | == string == |
| ----
| |
| *Used by floater and panel.
| |
| *Class LLUICtrlLocate
| |
| *in source file llui/lluictrlfactory.cpp
| |
| ===== height =====
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
|
| |
|
| === progress_bar parameters ===
| | *member of LLPanel : LLUICtrl : LLView |
| ----
| | *In source file llui/llpanel.cpp |
| *Used by layout_panel. | | *Used by floater, panel, and multi_floater. |
| *Class LLProgressBar
| |
| *In source file llui/llprogressbar.cpp | |
| ===== name =====
| |
| ===== color =====
| |
| ===== height =====
| |
| ===== bottom =====
| |
| ===== left =====
| |
| ===== right =====
| |
| ===== follows =====
| |
|
| |
|
| === radio_group parameters === | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ----
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| *Used by floater and panel.
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| *Can contain radio_item.
| | height="200" left="550" min_height="50" min_width="50" mouse_opaque="true" |
| *Class LLRadioGroup
| | name="example_string" tab_stop="false" title="string" width="250"> |
| *In source file llui/llradiogroup.cpp
| | <string name="string">String</string> |
| ===== bottom =====
| | </floater></xml> |
| ''Optional.''
| |
| ===== bottom_delta ===== | |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== draw_border =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width ===== | |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== text_disabled_color =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
|
| |
|
| === radio_item parameters === | | ==== name ==== |
| ----
| | ==== word_wrap ==== |
| *Used by radio_group.
| |
| ===== type =====
| |
| ''Optional.''
| |
| ===== length =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.'' | | ''Optional.'' |
| ===== name =====
| |
|
| |
|
| === scroll_container parameters === | | == view_border == |
| ----
| |
| *Used by floater.
| |
| *Class LLScrollableContainerView
| |
| *in source file llui/llscrollcontainer.cpp
| |
| ===== bottom =====
| |
| ===== left =====
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== mouse_opaque =====
| |
| ===== opaque =====
| |
| ===== name =====
| |
|
| |
|
| === scroll_list parameters ===
| | *Class LLViewBorder : LLView |
| ----
| | *In source file llui/llviewborder.cpp |
| *Used by floater, panel, layout_stack, and layout_panel.
| | *Used by panel. |
| *Can contain column.
| |
| *Class LLScrollListCtrl | |
| *In source file llui/llscrolllist.cpp | |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== top =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== can_resize =====
| |
| ''Optional.''
| |
| ===== column_padding =====
| |
| ''Optional.''
| |
| ===== column_widths =====
| |
| ''Optional.''
| |
| ===== draw_heading =====
| |
| ''Optional.''
| |
| ===== draw_stripes =====
| |
| ''Optional.''
| |
| ===== draw_border =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== multi_select =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== search_column =====
| |
| ''Optional.''
| |
| ===== sort_column =====
| |
| ''Optional.''
| |
| ===== background_visible =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== tab_group =====
| |
| ''Optional.''
| |
| ===== bg_selected_color =====
| |
| ''Optional.''
| |
| ===== fg_disable_color =====
| |
| ''Optional.''
| |
| ===== fg_selected_color =====
| |
| ''Optional.''
| |
| ===== fg_unselected_color =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== heading_font =====
| |
| ''Optional.''
| |
| ===== heading_height =====
| |
| ''Optional.''
| |
| ===== allow_calling_card_drop =====
| |
| ''Optional.''
| |
| ===== tab_stop =====
| |
| ''Optional.''
| |
| ===== user_resize =====
| |
| ''Optional.''
| |
| ===== sort_ascending =====
| |
| ''Optional.''
| |
|
| |
|
| === column parameters === | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ----
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| Used by name_list and scroll_list.
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| ===== name ===== | | height="80" left="550" min_height="80" min_width="250" mouse_opaque="true" |
| ===== label ===== | | name="example_view_border" tab_stop="false" title="view_border" width="250"> |
| ''Optional.''
| | <view_border bottom="20" enabled="true" height="20" left="20" mouse_opaque="false" |
| ===== sort ===== | | name="view_border" width="200" bevel_style="out" /> |
| ''Optional.''
| | </floater></xml> |
| ===== width =====
| |
| ''Optional.''
| |
| ===== dynamicwidth ===== | |
| ''Optional.''
| |
| ===== relwidth ===== | |
| ''Optional.''
| |
| ===== image =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== user_resize =====
| |
| ''Optional.''
| |
|
| |
|
| === search_editor parameters === | | ===Common attributes=== |
| ----
| | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| *Used by floater. | | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| *Class LLSearchEditor | | *'''Others:''' [[Skinning HowTo/Common XUI attributes#border|border]] |
| *In source file llui/lllineeditor.cpp
| |
| ===== bottom =====
| |
| ===== left =====
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
| ===== enabled =====
| |
| ''Optional.'' | |
|
| |
|
| === slider parameters === | | ===Special attributes=== |
| ----
| |
| *Used by floater and panel.
| |
| *Class LLSliderCtrl
| |
| *In source file llui/llsliderctrl.cpp
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== increment =====
| |
| ===== initial_val =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== label_width =====
| |
| ''Optional.''
| |
| ===== max_val =====
| |
| ===== min_val =====
| |
| ===== name =====
| |
| ===== show_text =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== decimal_digits =====
| |
| ''Optional.''
| |
| ===== can_edit_text =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== value =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== volume =====
| |
| ''Optional.''
| |
| ===== edit_text =====
| |
| ''Optional.''
| |
| | |
| === slider_bar parameters ===
| |
| ----
| |
| *Used by panel.
| |
| *Class LLSlider
| |
| *In source file llui/llslider.cpp
| |
| ===== bottom =====
| |
| ===== enabled =====
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== increment =====
| |
| ===== initial_val =====
| |
| ===== left =====
| |
| ===== max_val =====
| |
| ===== min_val =====
| |
| ===== mouse_opaque =====
| |
| ===== name =====
| |
|
| |
|
| === spinner parameters === | | ==== bevel_style ==== |
| ----
| |
| *Used by floater and panel.
| |
| *Class LLSpinCtrl
| |
| *In source file llui/llspinctrl.cpp
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.'' | | ''Optional.'' |
| ===== right_delta ===== | | ==== border_thickness ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== decimal_digits ===== | | ==== blevel_style ==== |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== halign =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== increment =====
| |
| ''Optional.''
| |
| ===== initial_val =====
| |
| ''Optional.''
| |
| ===== max_val =====
| |
| ===== min_val =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== label_width =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== can_edit_text =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== allow_text_entry =====
| |
| ''Optional.''
| |
| ===== text_enabled_color =====
| |
| ''Optional.''
| |
| ===== text_disabled_color =====
| |
| ''Optional.''
| |
| ===== bg_visible =====
| |
| ''Optional.''
| |
| ===== border_drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== border_visible =====
| |
| ''Optional.''
| |
| ===== drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== h_pad =====
| |
| ''Optional.''
| |
| ===== v_pad =====
| |
| ''Optional.'' | | ''Optional.'' |
|
| |
|
| === string parameters === | | == web_browser == |
| ----
| |
| *Used by floater, panel, multi_floater, and strings.
| |
| ===== name =====
| |
| ===== word_wrap =====
| |
| ''Optional.''
| |
|
| |
|
| === text parameters ===
| | *Class LLWebBrowserCtrl : LLUICtrl : LLView |
| ----
| | *In source file newview/llwebbrowserctrl.cpp |
| *Used by floater, panel, and layout_panel. | |
| ===== type =====
| |
| ''Optional.''
| |
| ===== length =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== bg_visible =====
| |
| ''Optional.''
| |
| ===== border_drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== drop_shadow_visible =====
| |
| ''Optional.''
| |
| ===== border_visible =====
| |
| ''Optional.''
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== top =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== h_pad =====
| |
| ''Optional.''
| |
| ===== halign =====
| |
| ''Optional.''
| |
| ===== v_pad =====
| |
| ''Optional.''
| |
| ===== valign =====
| |
| ''Optional.''
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
| ===== hidden =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== tab_stop =====
| |
| ''Optional.''
| |
| ===== initial_value =====
| |
| ''Optional.''
| |
| ===== label =====
| |
| ''Optional.''
| |
| ===== radio_style =====
| |
| ''Optional.''
| |
| ===== word_wrap =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
| ===== font_size =====
| |
| ''Optional.''
| |
| ===== font_style =====
| |
| ''Optional.''
| |
| ===== font-style =====
| |
| ''Optional.''
| |
| ===== bevel_style =====
| |
| ''Optional.''
| |
| ===== border_style =====
| |
| ''Optional.''
| |
| ===== border_thickness =====
| |
| ''Optional.''
| |
| ===== is_unicode =====
| |
| ''Optional.''
| |
| ===== max_length =====
| |
| ''Optional.''
| |
| ===== hover =====
| |
| ''Optional.''
| |
| ===== hover_cursor =====
| |
| ''Optional.''
| |
| ===== hover_color =====
| |
| ''Optional.''
| |
| ===== text_color =====
| |
| ''Optional.''
| |
| ===== align =====
| |
| ''Optional.''
| |
| ===== text_wrap =====
| |
| ''Optional.''
| |
| ===== text_enabled_color =====
| |
| ''Optional.''
| |
| ===== allow_html =====
| |
| ''Optional.''
| |
| ===== bg_readonly_color =====
| |
| ''Optional.''
| |
| ===== embedded_items =====
| |
| ''Optional.''
| |
| ===== hide_border =====
| |
| ''Optional.''
| |
| ===== hide_scrollbar =====
| |
| ''Optional.''
| |
| ===== line_spacing =====
| |
| ''Optional.''
| |
| ===== disabled_color =====
| |
| ''Optional.''
| |
| | |
| === text_editor parameters ===
| |
| ----
| |
| *Used by floater, panel, and layout_panel. | | *Used by floater, panel, and layout_panel. |
| *Class LLTextEditor.cpp
| |
| *In source file llui/lltexteditor.cpp
| |
| *<text_editor> creates a multi-line text box
| |
| ===== max_length =====
| |
| ''Optional. ''
| |
| ===== embedded_items =====
| |
| ''Optional. ''
| |
| ===== font =====
| |
| ''Optional. ''
| |
| ===== word_wrap =====
| |
| ''Optional. ''
| |
| ===== hide_scrollbar =====
| |
| ''Optional. ''
| |
| ===== cursor_color =====
| |
| ''Optional. ''
| |
| ===== text_color =====
| |
| ''Optional. ''
| |
| ===== text_readonly_color =====
| |
| ''Optional. ''
| |
| ===== bg_readonly_color =====
| |
| ''Optional. ''
| |
| ===== bg_writeable_color =====
| |
| ''Optional. ''
| |
| ===== bg_focus_color =====
| |
| ''Optional. ''
| |
| ===== bottom =====
| |
| ''Optional. ''
| |
| ===== bottom_delta =====
| |
| ''Optional. ''
| |
| ===== left =====
| |
| ''Optional. ''
| |
| ===== left_delta =====
| |
| ''Optional. ''
| |
| ===== right =====
| |
| ''Optional. ''
| |
| ===== top =====
| |
| ''Optional. ''
| |
| ===== follows =====
| |
| ''Optional. ''
| |
| ===== height =====
| |
| ''Optional. ''
| |
| ===== width =====
| |
| ''Optional. ''
| |
| ===== max_length =====
| |
| ''Optional. ''
| |
| ===== mouse_opaque =====
| |
| ''Optional. ''
| |
| ===== name =====
| |
| ===== type =====
| |
| ''Optional. ''
| |
| ===== bevel_style =====
| |
| ''Optional. ''
| |
| ===== border_style =====
| |
| ''Optional. ''
| |
| ===== border_thickness =====
| |
| ''Optional. ''
| |
| ===== enabled =====
| |
| ''Optional. ''
| |
| ===== handle_edit_keys_directly =====
| |
| ''Optional. ''
| |
| ===== select_all_on_focus_received =====
| |
| ''Optional. ''
| |
| ===== select_on_focus =====
| |
| ''Optional. ''
| |
| ===== length =====
| |
| ''Optional. ''
| |
| ===== track_bottom =====
| |
| ''Optional. ''
| |
| ===== ignore_tab =====
| |
| ''Optional. ''
| |
| ===== border_drop_shadow_visible =====
| |
| ''Optional. ''
| |
| ===== border_visible =====
| |
| ''Optional. ''
| |
| ===== show_line_numbers =====
| |
| ''Optional. ''
| |
| ===== allow_html =====
| |
| ''Optional. ''
| |
| ===== hide_border =====
| |
| ''Optional. ''
| |
| ===== tab_stop =====
| |
| ''Optional. ''
| |
| ===== is_unicode =====
| |
| ''Optional. ''
| |
| ===== bg_visible =====
| |
| ''Optional. ''
| |
| ===== drop_shadow_visible =====
| |
| ''Optional. ''
| |
| ===== h_pad =====
| |
| ''Optional. ''
| |
| ===== v_pad =====
| |
| ''Optional. ''
| |
| ===== halign =====
| |
| ''Optional. ''
| |
| ===== background_visible =====
| |
| ''Optional. ''
| |
| ===== text_wrap =====
| |
| ''Optional. ''
| |
|
| |
|
| === texture_picker parameters === | | <xml><?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
| ----
| | <floater bottom="400" can_close="true" can_drag_on_left="false" can_minimize="true" |
| *Used by floater and panel.
| | can_resize="true" can_tear_off="false" enabled="true" follows="left|top" |
| *Class LLTextureCtrl
| | height="400" left="350" min_height="150" min_width="150" mouse_opaque="true" |
| *In source file newview/lltexturectrl.cpp
| | name="example_web_browser" tab_stop="false" title="web_browser" width="550"> |
| ===== allow_no_texture =====
| | <web_browser bottom="20" enabled="true" height="350" left="20" mouse_opaque="false" |
| ''Optional.''
| | name="web_browser" tab_stop="true" width="500" start_url="www.secondlife.com" follows="all" /> |
| ===== bottom =====
| | </floater></xml> |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== can_apply_immediately =====
| |
| ''Optional.''
| |
| ===== default_image_name =====
| |
| ''Optional.''
| |
| ===== enabled ===== | |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width ===== | |
| ===== label =====
| |
| ''Optional.''
| |
| ===== mouse_opaque ===== | |
| ''Optional.''
| |
| ===== name =====
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== visible =====
| |
| ''Optional.''
| |
|
| |
|
| === view_border parameters === | | ===Common attributes=== |
| ----
| | *'''[[Skinning HowTo/Common XUI attributes#Used by all XUI elements|General]]:''' name, mouse_opaque, tool_tip, control_name, enabled, visible, use_bounding_rect, default_tab_group |
| *Used by panel.
| | *'''[[Skinning HowTo/Common XUI attributes#Positioning|Positioning]]:''' width, height, left, right, left_delta, bottom, top, bottom_delta, follows, rect_control |
| *Class LLViewBorder
| | *'''[[Skinning HowTo/Common XUI attributes#Text|Text]]:''' font, font_size, font_style |
| *In source file llui/llviewborder.cpp | |
| ===== bevel_style =====
| |
| ''Optional.'' | |
| ===== border_thickness =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.'' | |
| ===== bottom =====
| |
| ''Optional.'' | |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== mouse_opaque =====
| |
| ''Optional.'' | |
| ===== name =====
| |
| ''Optional.''
| |
| ===== blevel_style =====
| |
| ''Optional.''
| |
| ===== border =====
| |
| ''Optional.'' | |
|
| |
|
| === volume_slider parameters === | | ===Special attributes=== |
| ----
| |
| *Used by floater and panel.
| |
| *Class LLSlider
| |
| *In source file llui/llslider.cpp
| |
| ===== bottom =====
| |
| ''Optional.''
| |
| ===== bottom_delta =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ''Optional.''
| |
| ===== left_delta =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ===== width =====
| |
| ===== increment =====
| |
| ===== initial_val =====
| |
| ===== max_val =====
| |
| ===== min_val =====
| |
| ===== name =====
| |
| ===== mouse_opaque =====
| |
| ''Optional.''
| |
| ===== hidden =====
| |
| ''Optional.''
| |
| ===== enabled =====
| |
| ''Optional.''
| |
| ===== tool_tip =====
| |
| ''Optional.''
| |
| ===== control_name =====
| |
| ''Optional.''
| |
|
| |
|
| === web_browser parameters ===
| | ==== border_visible ==== |
| ----
| |
| *Used by floater, panel, and layout_panel.
| |
| *Class LLWebBrowserCtrl
| |
| *In source file newview/llwebbrowserctrl.cpp
| |
| ===== bottom =====
| |
| ===== top =====
| |
| ''Optional.''
| |
| ===== left =====
| |
| ===== right =====
| |
| ''Optional.''
| |
| ===== follows =====
| |
| ===== font =====
| |
| ''Optional.''
| |
| ===== name =====
| |
| ===== border_visible =====
| |
| ''Optional.''
| |
| ===== width =====
| |
| ''Optional.''
| |
| ===== height =====
| |
| ''Optional.''
| |
| ===== caret_color =====
| |
| ''Optional.'' | | ''Optional.'' |
| ===== start_url ===== | | ==== caret_color ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== embedded_items ===== | | ==== start_url ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== max_length ===== | | ==== embedded_items ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== mouse_opaque ===== | | ==== max_length ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== word_wrap =====
| | ==== word_wrap ==== |
| ''Optional.'' | | ''Optional.'' |
| ===== ignore_ui_scale =====
| | ==== ignore_ui_scale ==== |
| ''Optional.'' | | ''Optional.'' |