Difference between revisions of "Skinning How To/Edit a menu"

From Second Life Wiki
Jump to navigation Jump to search
Line 13: Line 13:
               <on_check>
               <on_check>
           </menu_item_check>
           </menu_item_check>
          <menu_item_separator />
           <menu_item_call>  
           <menu_item_call>  
               <on_click>
               <on_click>
Line 25: Line 26:
* Inventory menu: '''floater_inventory.xml'''
* Inventory menu: '''floater_inventory.xml'''
* Inventory item menu when right clicked: '''menu_inventory.xml'''
* Inventory item menu when right clicked: '''menu_inventory.xml'''
* Landmark menu when right clicked: '''menu_slurl.xml'''
* SLURL menu when right clicked (not currently enabled): '''menu_slurl.xml'''
* Menu at the login screen: '''menu_login.xml'''
* Menu at the login screen: '''menu_login.xml'''
* Pie menu when you right click:
* Pie menu when you right click:
Line 35: Line 36:


= Tags =
= Tags =
== <menu_bar> ==
Bar that holds menu entries. Accepts <code>name</code> and <code>opaque</code>.


== <menu> ==
== <menu> ==
Top level menu. Flyout menu when nested.
Top level menu. Flyout menu when nested.
== <menu_bar> ==


== <menu_item_call> ==
== <menu_item_call> ==
Line 50: Line 51:
Nested in a menu item. Sets the function when option is enabled.  
Nested in a menu item. Sets the function when option is enabled.  


== <menu_item_separator> ==
== <menu_item_separator /> ==
Draws a separator between menu options.
Draws a separator between menu options.


Line 67: Line 68:
== enabled ==
== enabled ==
Sets whether or not a menu is enabled or not. Use in <menu>.  
Sets whether or not a menu is enabled or not. Use in <menu>.  
Boolean: <code>enabled="true"</code>
Boolean: <code>enabled="true"</code> (Default true)
== label ==
== label ==
Sets the name the user sees. Necessary for <menu> and menu items.  
Sets the name the user sees. Necessary for <menu> and menu items.  
Line 75: Line 76:
String: <code>name="MenuAwesome"</code>
String: <code>name="MenuAwesome"</code>
* Changing the name of the Tools menu will make it not auto-hide.
* Changing the name of the Tools menu will make it not auto-hide.
== tear_off ==
== tear_off ==
''Optional''. Sets whether or not the menu can be torn off (the double bars at the top of a menu).  Use in <menu>.   
''Optional''. Sets whether or not the menu can be torn off (the double bars at the top of a menu).  Use in <menu>.   
Boolean: <code>tear_off="true"</code>
Boolean: <code>tear_off="true"</code> (Default true)
== opaque ==
== opaque ==
''Optional''. Sets whether or not the menu is opaque Setting a top-level menu like World to false turns the menu transparent (unless it's torn off and reattached, then you have to relog). Setting the menu bar to false will turn it transparent per its setting in colors.xml. Use in <menu> and <menu_bar>.  
''Optional''. Sets whether or not the menu is opaque Setting a top-level menu like World to false turns the menu transparent (unless it's torn off and reattached, then you have to relog). Setting the menu bar to false will turn it transparent per its setting in colors.xml. Use in <menu> and <menu_bar>.  
Boolean: <code>opaque="true"</code>
Boolean: <code>opaque="true"</code>
== mouse_opaque ==
== mouse_opaque ==
== drop_shadow ==
== drop_shadow ==
Default.
== create_jump_keys ==
== create_jump_keys ==
''Optional''. Allows keyboard navigation via jump keys. Menus can be navigated using the keyboard by holding down ALT and pressing up or down.
Boolean: <code>create_jump_keys="true"</code>
== userdata ==
== userdata ==
''Optional''. Any data sent to the function. Use in <on_click>, etc.
''Optional''. Any data sent to the function. Use in <on_click>, etc.

Revision as of 09:46, 5 July 2008

Introduction

  • All viewer menu options are set in menu_viewer.xml except for the Advanced/Admin menus (see VWR-2896).
  • Width/height/bottom/left/top are irrelevant in the menu files. The viewer constructs menus based on the xml file's organization and ignores these parameters.
  • Example menu structure:
<menu>
     <menu_item_call>
          <on_click>
     </menu_item_call>
     <menu> 
          <menu_item_check> 
               <on_check>
          </menu_item_check>
          <menu_item_separator />
          <menu_item_call> 
               <on_click>
               <on_enable>
          </menu_item_call>
     </menu>
</menu>

Menu files

  • Viewer menu: menu_viewer.xml
  • Inventory menu: floater_inventory.xml
  • Inventory item menu when right clicked: menu_inventory.xml
  • SLURL menu when right clicked (not currently enabled): menu_slurl.xml
  • Menu at the login screen: menu_login.xml
  • Pie menu when you right click:
    • An object: menu_pie_object.xml
    • Yourself: menu_pie_self.xml
    • Land: menu_pie_land.xml
    • Someone else: menu_pie_avatar.xml
    • An attachment: menu_pie_attachment.xml

Tags

<menu_bar>

Bar that holds menu entries. Accepts name and opaque.

<menu>

Top level menu. Flyout menu when nested.

<menu_item_call>

Menu item that tells the viewer to execute a specific function.

<on_click>

Nested in a menu item. Sets the function when clicked.

<on_enable>

Nested in a menu item. Sets the function when option is enabled.

<menu_item_separator />

Draws a separator between menu options.

<menu_item_check>

Menu item that toggles whether something is active or inactive (set via an X next to the name).

<on_check>

Nested in a menu item. Sets the function when checked.

<tearoff_menu>

Does nothing. Assumed to be a legacy setting.


Parameters

enabled

Sets whether or not a menu is enabled or not. Use in <menu>. Boolean: enabled="true" (Default true)

label

Sets the name the user sees. Necessary for <menu> and menu items. String: label="Awesome Menu"

name

Sets the name the viewer sees. Necessary for <menu> and menu items. String: name="MenuAwesome"

  • Changing the name of the Tools menu will make it not auto-hide.

tear_off

Optional. Sets whether or not the menu can be torn off (the double bars at the top of a menu). Use in <menu>. Boolean: tear_off="true" (Default true)

opaque

Optional. Sets whether or not the menu is opaque Setting a top-level menu like World to false turns the menu transparent (unless it's torn off and reattached, then you have to relog). Setting the menu bar to false will turn it transparent per its setting in colors.xml. Use in <menu> and <menu_bar>. Boolean: opaque="true"

mouse_opaque

drop_shadow

Default.

create_jump_keys

Optional. Allows keyboard navigation via jump keys. Menus can be navigated using the keyboard by holding down ALT and pressing up or down. Boolean: create_jump_keys="true"

userdata

Optional. Any data sent to the function. Use in <on_click>, etc. String: userdata="800,600"

function

Associates a function with a menu item and action. Use in <on_click>, etc. String: function="Tools.SelectedScriptAction"

shortcut

Optional. Sets the keyboard shortcut for a menu item. Each key is separated by pipes. String: shortcut="control|alt|T"

Changing a menu

  • If you're adding a shortcut, make sure it isn't used by another item first.
  • Renaming a menu or menu item is fine as long as it calls a working function.
  • Any number of top level menus, flyout menus, and menu items can be set.
  • Don't worry about width/height/bottom/left/top. As said in the intro, these don't do anything anymore.
  • If you want to create a new menu item that doesn't call an existing function, you need to edit the source as well. See Adding_a_menu_item for a start.