Skinning.menus: Difference between revisions

From Shareaza Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{Recovered|The following content has been recovered from the old wiki and pantheraproject*net. Competent verification is needed.}}
{{Updated|2014.05.04|2.7.x.0}}


<h2> <span class="mw-headline">Menu Names</span></h2>
=<menus>=
<p>For an up-to-date version of names see <b>default-en.xml</b> in your skins folder. A selection of the current menu names are:
</p>
<table border="1" cellspacing="0" cellpadding="5">


<span id="languageselector-box-1" class="languageselector " style=""><form name="languageselector-form-1" id="languageselector-form-1" method="get" action="/wiki/index.php" style="display:inline;"><input name="title" type="hidden" value="Skinning.menus" /><select name="setlang" id="languageselector-select-1" style=""><option value="en" selected="selected">English</option><option value="es">Español</option><option value="de">Deutsch</option><option value="fr">Français</option><option value="he">עברית</option><option value="it">Italiano</option><option value="nl">Nederlands</option><option value="pl">Polski</option><option value="ru">Русский</option><option value="pt">Português</option><option value="tw">Twi</option></select><input type="submit" value="set" id="languageselector-commit-1" style="" /></form></span><a name=".3Cmenus.3E" id=".3Cmenus.3E"></a><h1> <span class="mw-headline">&lt;menus&gt;</span></h1>
The '''<menus>''' element defines the menus used in the program. Shareaza contains many menus, and each of which is assigned a name to identify it. Skins can override the design for every menu, or just a few. To see what the menus currently look like, check out '''default-en.xml''' in your skins folder.
<p>The <b>&lt;menus&gt;</b> element defines the menus used in the program. Shareaza contains many menus, and each of which is assigned a name to identify it. Skins can override the design for every menu, or just a few. To see what the menus currently look like, check out <b>default-en.xml</b> in your skins folder.
</p><p>Here is an example from <b>MyMenuSkin.xml</b>:
</p>
<div dir="ltr" style="text-align: left;"><div class="source-xml" style="font-family: monospace;"><pre> <span class="re1">&lt;?xml</span> <span class="re0">version</span>=<span class="st0">&quot;1.0&quot;</span> <span class="re0">encoding</span>=<span class="st0">&quot;UTF-8&quot;</span><span class="re2">?&gt;</span>
<span class="re1">&lt;skin</span> <span class="re0">xmlns</span>=<span class="st0">&quot;http://www.shareaza.com/schemas/Skin.xsd&quot;</span> <span class="re0">version</span>=<span class="st0">&quot;1.0&quot;</span><span class="re2">&gt;</span>
  <span class="re1">&lt;manifest</span> <span class="re0">name</span>=<span class="st0">&quot;My Menu Skin&quot;</span> <span class="re0">author</span>=<span class="st0">&quot;Me&quot;</span> <span class="re0">type</span>=<span class="st0">&quot;Skin&quot;</span><span class="re2">/&gt;</span>
  <span class="re1">&lt;menus<span class="re2">&gt;</span></span>
  <span class="re1">&lt;menu</span> <span class="re0">name</span>=<span class="st0">&quot;CHomeWnd&quot;</span><span class="re2">&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_HOME&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Home&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_LIBRARY&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Library&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_NETWORK&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Network&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_TRANSFERS&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Transfers&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;separator</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_CONNECT&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Connect&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_NETWORK_SEARCH&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;New _Search...&quot;</span><span class="re2">/&gt;</span>
  <span class="re1">&lt;/menu<span class="re2">&gt;</span></span>
  <span class="re1">&lt;/menus<span class="re2">&gt;</span></span>
<span class="re1">&lt;/skin<span class="re2">&gt;</span></span></pre></div></div>
<p>Each menu is contained within a <b>&lt;menu&gt;</b> element, which is named by a <b>name</b> attribute. A list of current menu names is included at the end of this section (there are many!).
</p><p>Each menu contains one or more items, which can be either <b>&lt;item&gt;'</b>s, <b>&lt;separator&gt;'</b>s or sub-menus (<b>&lt;menu&gt;'</b>s).
</p>
<a name="Menu_Items" id="Menu_Items"></a><h2> <span class="mw-headline">Menu Items</span></h2>
<p>Menu items are created with an <b>&lt;item/&gt;</b> element, and are the most common element in menus. Each menu has the following attributes:
</p>
<ul><li><b>id</b> - The command ID of the menu item, which controls what it actually does.
</li><li><b>text</b> - The text to display next to the icon for the menu item.
</li></ul>
<p><br />
</p>
<a name="Separators" id="Separators"></a><h2> <span class="mw-headline">Separators </span></h2>
<p>Separators are created with a <b>&lt;separator/&gt;</b> element, and are the second most common element found in menus. Separators have no additional attributes, as they simply produce a "gap" in the menu, often used to group sets of commands together.
</p>
<a name="Sub-Menus" id="Sub-Menus"></a><h2> <span class="mw-headline">Sub-Menus</span></h2>
<p>Menus can be nested by creating sub-menus, or popup-menus within an existing menu. This allows a very logical grouping of commands which can simplify the overall experience. It's easy to create a sub-menu -- simply start a new <b>&lt;menu&gt;</b> element within an existing menu. The only difference is that you don't need to assign a name attribute -- assign a text attribute instead, which will be how the sub-menu is displayed.
</p><p>An example:
</p>
<div dir="ltr" style="text-align: left;"><div class="source-xml" style="font-family: monospace;"><pre> <span class="re1">&lt;?xml</span> <span class="re0">version</span>=<span class="st0">&quot;1.0&quot;</span> <span class="re0">encoding</span>=<span class="st0">&quot;UTF-8&quot;</span><span class="re2">?&gt;</span>
<span class="re1">&lt;skin</span> <span class="re0">xmlns</span>=<span class="st0">&quot;http://www.shareaza.com/schemas/Skin.xsd&quot;</span> <span class="re0">version</span>=<span class="st0">&quot;1.0&quot;</span><span class="re2">&gt;</span>
  <span class="re1">&lt;manifest</span> <span class="re0">name</span>=<span class="st0">&quot;My Menu Skin&quot;</span> <span class="re0">author</span>=<span class="st0">&quot;Me&quot;</span> <span class="re0">type</span>=<span class="st0">&quot;Skin&quot;</span><span class="re2">/&gt;</span>
  <span class="re1">&lt;menus<span class="re2">&gt;</span></span>
    <span class="re1">&lt;menu</span> <span class="re0">name</span>=<span class="st0">&quot;CHomeWnd&quot;</span><span class="re2">&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_HOME&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Home&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_LIBRARY&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Library&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_NETWORK&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Network&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_TRANSFERS&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Transfers&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;separator</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;menu</span> <span class="re0">text</span>=<span class="st0">&quot;_Advanced&quot;</span><span class="re2">&gt;</span>
      <span class="co1">&lt;!--(Sub-Menu)--&gt;</span>
      <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_VIEW_SECURITY&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;Se_curity&quot;</span> <span class="re0">shortcut</span>=<span class="st0">&quot;F7&quot;</span><span class="re2">/&gt;</span>
      <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_VIEW_HOSTS&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;H_ost Cache&quot;</span> <span class="re0">shortcut</span>=<span class="st0">&quot;F8&quot;</span><span class="re2">/&gt;</span>
      <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_VIEW_DISCOVERY&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;Disco_very&quot;</span> <span class="re0">shortcut</span>=<span class="st0">&quot;F9&quot;</span><span class="re2">/&gt;</span>
      <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_VIEW_TRAFFIC&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Graph&quot;</span> <span class="re0">shortcut</span>=<span class="st0">&quot;F10&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;/menu<span class="re2">&gt;</span></span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_TAB_CONNECT&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;_Connect&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;item</span> <span class="re0">id</span>=<span class="st0">&quot;ID_NETWORK_SEARCH&quot;</span> <span class="re0">text</span>=<span class="st0">&quot;New _Search...&quot;</span><span class="re2">/&gt;</span>
    <span class="re1">&lt;/menu<span class="re2">&gt;</span></span>
  <span class="re1">&lt;/menus<span class="re2">&gt;</span></span>
<span class="re1">&lt;/skin<span class="re2">&gt;</span></span></pre></div></div>
<p><br />
</p>
<a name="Menu_Names" id="Menu_Names"></a><h2> <span class="mw-headline">Menu Names</span></h2>
<p>For an up-to-date version of names see <b>default-en.xml</b> in your skins folder. A selection of the current menu names are:
</p>
<table border="1" cellspacing="0" cellpadding="5">


<tr style="background-color:#FFFFC0;">
Here is an example from '''MyMenuSkin.xml''':
<td><b>Menu</b>
 
</td><td><b>Description</b>
<?xml version="1.0" encoding="UTF-8"?>
</td></tr>
<skin xmlns="http://shareaza.sourceforge.net/schemas/Skin.xsd" version="1.0">
<tr>
<manifest name="My Menu Skin" author="Me" type="Skin"/>
<td>CBrowseHostWnd
  <menus>
</td><td>The browse host window popup menu.
      <menu name="CHomeWnd">
</td></tr>
        <item id="ID_TAB_HOME" text="_Home"/>
<tr>
        <item id="ID_TAB_LIBRARY" text="_Library"/>
<td>CDiscoveryWnd
        <item id="ID_TAB_NETWORK" text="_Network"/>
</td><td>The discovery services window popup menu.
        <item id="ID_TAB_TRANSFERS" text="_Transfers"/>
</td></tr>
        <separator/>
<tr>
        <item id="ID_TAB_CONNECT" text="_Connect"/>
<td>CDownloadTabBar
        <item id="ID_NETWORK_SEARCH" text="New _Search..."/>
</td></tr>
      </menu>
<tr>
  </menus>
<td>CDownloadsWnd.Completed
</skin>
</td><td>The download window popup menu, when a completed download is selected.
 
</td></tr>
Each menu is contained within a '''<menu>''' element, which is named by a '''name''' attribute. A list of current menu names is included at the end of this section (there are many!).
<tr>
 
<td>CDownloadsWnd.Download
Each menu contains one or more items, which can be either '''<item>''''s, '''<separator>''''s or sub-menus ('''<menu>''''s).
</td><td>The download window popup menu, when a download is selected.
 
</td></tr>
Menu Items
<tr>
Menu items are created with an '''<item/>''' element, and are the most common element in menus. Each menu has the following attributes:
<td>CDownloadsWnd.Source
 
</td><td>The download window popup menu, when a transfer or source is selected.
* id - The command ID of the menu item, which controls what it actually does.
</td></tr>
* text - The text to display next to the icon for the menu item.
<tr>
 
<td>CHitMonitorWnd
 
</td><td>The hit monitor window popup menu.
==Separators==
</td></tr>
Separators are created with a '''<separator/>''' element, and are the second most common element found in menus. Separators have no additional attributes, as they simply produce a "gap" in the menu, often used to group sets of commands together.
<tr>
 
<td>CHomeWnd
==Sub-Menus==
</td><td>The home window popup menu.
Menus can be nested by creating sub-menus, or popup-menus within an existing menu. This allows a very logical grouping of commands which can simplify the overall experience. It's easy to create a sub-menu -- simply start a new '''<menu>''' element within an existing menu. The only difference is that you don't need to assign a '''name''' attribute -- assign a '''text''' attribute instead, which will be how the sub-menu is displayed.
</td></tr>
 
<tr>
An example:
<td>CHostCacheWnd
<?xml version="1.0" encoding="UTF-8"?>
</td><td>The host cache window popup menu.
<skin xmlns="http://shareaza.sourceforge.net/schemas/Skin.xsd" version="1.0">
</td></tr>
<manifest name="My Menu Skin" author="Me" type="Skin"/>
<tr>
    <menus>
<td>CLibraryFileView
      <menu name="CHomeWnd">
</td></tr>
      <item id="ID_TAB_HOME" text="_Home"/>
<tr>
      <item id="ID_TAB_LIBRARY" text="_Library"/>
<td>CLibraryTileView
      <item id="ID_TAB_NETWORK" text="_Network"/>
</td></tr>
      <item id="ID_TAB_TRANSFERS" text="_Transfers"/>
<tr>
      <separator/>
<td>CLibraryTree.Physical
      <menu text="_Advanced"> <!--(Sub-Menu)-->
</td></tr>
        <item id="ID_VIEW_SECURITY" text="Se_curity" shortcut="F7"/>
<tr>
        <item id="ID_VIEW_HOSTS" text="H_ost Cache" shortcut="F8"/>
<td>CLibraryTree.Virtual
        <item id="ID_VIEW_DISCOVERY" text="Disco_very" shortcut="F9"/>
</td></tr>
        <item id="ID_VIEW_TRAFFIC" text="_Graph" shortcut="F10"/>
<tr>
      </menu>
<td>CLibraryWnd.File
      <item id="ID_TAB_CONNECT" text="_Connect"/>
</td><td>The library window popup menu, when a file is selected.
      <item id="ID_NETWORK_SEARCH" text="New _Search..."/>
</td></tr>
      </menu>
<tr>
    </menus>
<td>CLibraryWnd.Folder
</skin>
</td><td>The library window popup menu, when a folder is selected.
 
</td></tr>
 
<tr>
==Menu Names==
<td>CMainWnd.Basic
For an up-to-date version of names see '''default-en.xml''' in your skins folder. A selection of the current menu names are:
</td><td>The main window menu, in normal mode.
 
</td></tr>
<center>
<tr>
{| border="0" cellspacing="0" cellpadding="5"
<td>CMainWnd.Tabbed
|- style="background-color:#FFFFC0"
</td><td>The main window menu, in tabbed mode.
|'''Menus'''
</td></tr>
|'''Description'''
<tr>
|-
<td>CMainWnd.Tray
|CBrowseHostWnd
</td><td>The popup tray menu.
|The browse host window popup menu.
</td></tr>
|-
<tr>
|CDiscoveryWnd
<td>CMainWnd.Windowed
|The discovery services window popup menu.
</td><td>The main window menu, in windowed mode.
|-
</td></tr>
|CDownloadTabBar
<tr>
|
<td>CMainWnd.View.Tabbed
|-
</td><td>The popup view menu, when the user right-clicks nowhere. Tabbed mode.
|CDownloadsWnd.Completed
</td></tr>
|The download window popup menu, when a completed download is selected.
<tr>
|-
<td>CMainWnd.View.Windowed
|CDownloadsWnd.Download
</td><td>The popup view menu, when the user right-clicks nowhere. Windowed mode.
|The download window popup menu, when a download is selected.
</td></tr>
|-
<tr>
|CDownloadsWnd.Source
<td>CMediaFrame
|The download window popup menu, when a transfer or source is selected.
</td></tr>
|-
<tr>
|CHitMonitorWnd
<td>CMediaFrame.Zoom
|The hit monitor window popup menu.
</td></tr>
|-
<tr>
|CHomeWnd
<td>CMediaList
|The home window popup menu.
</td></tr>
|-
<tr>
|CHostCacheWnd
<td>CNeighboursWnd
|The host cache window popup menu.
</td><td>The neighbours window popup menu.
|-
</td></tr>
|CLibraryFileView
<tr>
|
<td>CPrivateChatFrame
|-
</td></tr>
|CLibraryTileView
<tr>
|
<td>CSearchMonitorWnd
|-
</td><td>The search monitor window popup menu.
|CLibraryTree.Physical
</td></tr>
|
<tr>
|-
<td>CSearchWnd
|CLibraryTree.Virtual
</td><td>The search window popup menu.
|
</td></tr>
|-
<tr>
|CLibraryWnd.File
<td>CSecurityWnd
|The library window popup menu, when a file is selected.
</td><td>The security window popup menu.
|-
</td></tr>
|CLibraryWnd.Folder
<tr>
|The library window popup menu, when a folder is selected.
<td>CSystemWnd
|-
</td><td>The system window popup menu.
|CMainWnd.Basic
</td></tr>
|The main window menu, in normal mode.
<tr>
|-
<td>CTrafficWnd
|CMainWnd.Tabbed
</td><td>The traffic graph window popup menu.
|The main window menu, in tabbed mode.
</td></tr>
|-
<tr>
|CMainWnd.Tray
<td>CUploadsWnd
|The popup tray menu.
</td><td>The uploads window popup menu.
|-
</td></tr></table>
|CMainWnd.Windowed
|The main window menu, in windowed mode.
|-
|CMainWnd.View.Tabbed
|The popup view menu, when the user right-clicks nowhere. Tabbed mode.
|-
|CMainWnd.View.Windowed
|The popup view menu, when the user right-clicks nowhere. Windowed mode.
|-
|CMediaFrame
|
|-
|CMediaFrame.Zoom
|
|-
|CMediaList
|
|-
|CNeighboursWnd
|The neighbours window popup menu.
|-
|CPrivateChatFrame
|
|-
|CSearchMonitorWnd
|The search monitor window popup menu.
|-
|CSearchWnd
|The search window popup menu.
|-
|CSecurityWnd
|The security window popup menu.
|-
|CSystemWnd
|The system window popup menu.
|-
|CTrafficWnd
|The traffic graph window popup menu.
|-
|CUploadsWnd
|The uploads window popup menu.
|}</center>
 
{{Nav2|Skinning tutorial}}

Latest revision as of 21:44, 4 May 2014

  Languages:

[[::Skinning.menus|English]] • [[::Skinning.menus/de|Deutsch]] • [[::Skinning.menus/es|Español]] • [[::Skinning.menus/fr|Français]] • [[::Skinning.menus/he|עברית]] • [[::Skinning.menus/it|Italiano]] • [[::Skinning.menus/nl|Nederlands]] • [[::Skinning.menus/pl|Polski]] • [[::Skinning.menus/pt|Português]] • [[::Skinning.menus/ru|Русский]] • [[::Skinning.menus/zh-hant|‪中文(繁體)]]

e
  Updated:

This page has been updated on 2014.05.04 for the release of Shareaza v2.7.x.0.

e

<menus>

The <menus> element defines the menus used in the program. Shareaza contains many menus, and each of which is assigned a name to identify it. Skins can override the design for every menu, or just a few. To see what the menus currently look like, check out default-en.xml in your skins folder.

Here is an example from MyMenuSkin.xml:

<?xml version="1.0" encoding="UTF-8"?>
<skin xmlns="http://shareaza.sourceforge.net/schemas/Skin.xsd" version="1.0">
<manifest name="My Menu Skin" author="Me" type="Skin"/>
  <menus>  
     <menu name="CHomeWnd">
       <item id="ID_TAB_HOME" text="_Home"/>
       <item id="ID_TAB_LIBRARY" text="_Library"/>
       <item id="ID_TAB_NETWORK" text="_Network"/>
       <item id="ID_TAB_TRANSFERS" text="_Transfers"/>
       <separator/>
       <item id="ID_TAB_CONNECT" text="_Connect"/>
       <item id="ID_NETWORK_SEARCH" text="New _Search..."/>
     </menu>
  </menus>
</skin>

Each menu is contained within a <menu> element, which is named by a name attribute. A list of current menu names is included at the end of this section (there are many!).

Each menu contains one or more items, which can be either <item>'s, <separator>'s or sub-menus (<menu>'s).

Menu Items Menu items are created with an <item/> element, and are the most common element in menus. Each menu has the following attributes:

  • id - The command ID of the menu item, which controls what it actually does.
  • text - The text to display next to the icon for the menu item.


Separators

Separators are created with a <separator/> element, and are the second most common element found in menus. Separators have no additional attributes, as they simply produce a "gap" in the menu, often used to group sets of commands together.

Sub-Menus

Menus can be nested by creating sub-menus, or popup-menus within an existing menu. This allows a very logical grouping of commands which can simplify the overall experience. It's easy to create a sub-menu -- simply start a new <menu> element within an existing menu. The only difference is that you don't need to assign a name attribute -- assign a text attribute instead, which will be how the sub-menu is displayed.

An example:

<?xml version="1.0" encoding="UTF-8"?>
<skin xmlns="http://shareaza.sourceforge.net/schemas/Skin.xsd" version="1.0">
<manifest name="My Menu Skin" author="Me" type="Skin"/>
   <menus>  
     <menu name="CHomeWnd">
     <item id="ID_TAB_HOME" text="_Home"/>
     <item id="ID_TAB_LIBRARY" text="_Library"/>
     <item id="ID_TAB_NETWORK" text="_Network"/>
     <item id="ID_TAB_TRANSFERS" text="_Transfers"/>
     <separator/>
     <menu text="_Advanced"> 
        <item id="ID_VIEW_SECURITY" text="Se_curity" shortcut="F7"/>
        <item id="ID_VIEW_HOSTS" text="H_ost Cache" shortcut="F8"/>
        <item id="ID_VIEW_DISCOVERY" text="Disco_very" shortcut="F9"/>
        <item id="ID_VIEW_TRAFFIC" text="_Graph" shortcut="F10"/>
     </menu>
     <item id="ID_TAB_CONNECT" text="_Connect"/>
     <item id="ID_NETWORK_SEARCH" text="New _Search..."/>
     </menu>
   </menus>
</skin>


Menu Names

For an up-to-date version of names see default-en.xml in your skins folder. A selection of the current menu names are:

Menus Description
CBrowseHostWnd The browse host window popup menu.
CDiscoveryWnd The discovery services window popup menu.
CDownloadTabBar
CDownloadsWnd.Completed The download window popup menu, when a completed download is selected.
CDownloadsWnd.Download The download window popup menu, when a download is selected.
CDownloadsWnd.Source The download window popup menu, when a transfer or source is selected.
CHitMonitorWnd The hit monitor window popup menu.
CHomeWnd The home window popup menu.
CHostCacheWnd The host cache window popup menu.
CLibraryFileView
CLibraryTileView
CLibraryTree.Physical
CLibraryTree.Virtual
CLibraryWnd.File The library window popup menu, when a file is selected.
CLibraryWnd.Folder The library window popup menu, when a folder is selected.
CMainWnd.Basic The main window menu, in normal mode.
CMainWnd.Tabbed The main window menu, in tabbed mode.
CMainWnd.Tray The popup tray menu.
CMainWnd.Windowed The main window menu, in windowed mode.
CMainWnd.View.Tabbed The popup view menu, when the user right-clicks nowhere. Tabbed mode.
CMainWnd.View.Windowed The popup view menu, when the user right-clicks nowhere. Windowed mode.
CMediaFrame
CMediaFrame.Zoom
CMediaList
CNeighboursWnd The neighbours window popup menu.
CPrivateChatFrame
CSearchMonitorWnd The search monitor window popup menu.
CSearchWnd The search window popup menu.
CSecurityWnd The security window popup menu.
CSystemWnd The system window popup menu.
CTrafficWnd The traffic graph window popup menu.
CUploadsWnd The uploads window popup menu.



Navigation:     ShareazaWiki > Skinning tutorial > Skinning.menus