Skinning.windowSkins/fr: Difference between revisions
No edit summary |
|||
Line 1: | Line 1: | ||
{{Language|Skinning.windowSkins}} | |||
{{Updated|02 mai 2014|2.7.x.0}} | |||
=<windowSkins>= | |||
L'élément '''<windowSkins>''' est l'élément le plus puissant disponible. Il permet de personnaliser l'apparence de n'importe quelle fenêtre de Shareaza. Elle affecte les frontières extérieures que vous voyez dans une peau de Shareaza, ainsi que les bordures extérieures de la fenêtre principale. | |||
Les thèmes de fenêtre sont contrôlés par les éléments <windowSkins>. Chaque thème possède une foule d'éléments qui contrôlent des aspects différents de l'apparence d'une fenêtre. | |||
Ci-dessous un petit exemple : | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<skin xmlns="http://shareaza.sourceforge.net/schemas/Skin.xsd" version="1.0"> | |||
<manifest name="Mon Thème windowSkin" author="Moi" type="Skin"/> | |||
<windowSkins> | |||
<windowSkin> | |||
<target name="CMainWnd"/> | |||
<image path="MySkin.bmp"/> | |||
<parts> | |||
<part name="Top" rect="0,0,64,20"/> | |||
</parts> | |||
</windowSkin> | |||
</windowSkins> | |||
</skin> | |||
==Les Éléments== | ==Les Éléments== | ||
Line 5: | Line 28: | ||
{| border="0" cellspacing="0" cellpadding="5" | {| border="0" cellspacing="0" cellpadding="5" | ||
|- style="background-color:#FFFFC0" | |- style="background-color:#FFFFC0" | ||
|''' | |'''Element''' | ||
|'''Description''' | |'''Description''' | ||
|- | |- | ||
| | |<target> | ||
|Applies the skin to a specific window or family of windows. | |||
| | |||
|- | |- | ||
| | |<image> | ||
| | |Loads a bitmap to use in the skin. | ||
|- | |- | ||
| | |<parts> | ||
| | |Defines parts (areas) of the source image to be used to paint the window | ||
|- | |- | ||
| | |<anchors> | ||
| | |Defines areas of the window which have special meaning, such as buttons. | ||
|- | |- | ||
| | |<caption> | ||
| | |Sets up how the text-caption should be painted | ||
|- | |- | ||
| | |<region> | ||
|Generates a non-rectangular region for the window. | |||
|}</center> | |||
Revision as of 14:01, 2 May 2014
Languages: |
English • Deutsch • Español • Français • עברית • Italiano • Nederlands • Polski • Português • Русский • 中文(繁體) | e |
Updated: |
This page has been updated on 02 mai 2014 for the release of Shareaza v2.7.x.0. | e |
<windowSkins>
L'élément <windowSkins> est l'élément le plus puissant disponible. Il permet de personnaliser l'apparence de n'importe quelle fenêtre de Shareaza. Elle affecte les frontières extérieures que vous voyez dans une peau de Shareaza, ainsi que les bordures extérieures de la fenêtre principale. Les thèmes de fenêtre sont contrôlés par les éléments <windowSkins>. Chaque thème possède une foule d'éléments qui contrôlent des aspects différents de l'apparence d'une fenêtre.
Ci-dessous un petit exemple :
<?xml version="1.0" encoding="UTF-8"?> <skin xmlns="http://shareaza.sourceforge.net/schemas/Skin.xsd" version="1.0"> <manifest name="Mon Thème windowSkin" author="Moi" type="Skin"/> <windowSkins> <windowSkin> <target name="CMainWnd"/> <image path="MySkin.bmp"/> <parts> <part name="Top" rect="0,0,64,20"/> </parts> </windowSkin> </windowSkins> </skin>
Les Éléments
Il existe quelques éléments qui peuvent être inclus dans un thème, voici leur description :
Element | Description |
<target> | Applies the skin to a specific window or family of windows. |
<image> | Loads a bitmap to use in the skin. |
<parts> | Defines parts (areas) of the source image to be used to paint the window |
<anchors> | Defines areas of the window which have special meaning, such as buttons. |
Sets up how the text-caption should be painted | |
<region> | Generates a non-rectangular region for the window. |