publish changes
This commit is contained in:
parent
afc5064a7b
commit
ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions
|
@ -29,9 +29,9 @@ Function initPages();
|
|||
#define CUSTOM_OPTIONSMENU_ITEMS "{1828D28F-78DD-4647-8532-EBA504B8FC04}"
|
||||
Global ConfigItem optionsmenu_page;
|
||||
|
||||
// this is the page that maps its items to the windows menu (aka View), you can add attribs or more pages (submenus)
|
||||
// this is the page that maps its items to the arch menu (aka View), you can add attribs or more pages (submenus)
|
||||
#define CUSTOM_WINDOWSMENU_ITEMS "{6559CA61-7EB2-4415-A8A9-A2AEEF762B7F}"
|
||||
Global ConfigItem custom_windows_page;
|
||||
Global ConfigItem custom_arch_page;
|
||||
|
||||
// non exposed attribs page
|
||||
#define CUSTOM_PAGE_NONEXPOSED "{E9C2D926-53CA-400f-9A4D-85E31755A4CF}"
|
||||
|
@ -51,7 +51,7 @@ initPages()
|
|||
// load up the cfgpage in which we'll insert our custom page
|
||||
optionsmenu_page = Config.getItem(CUSTOM_OPTIONSMENU_ITEMS);
|
||||
|
||||
custom_windows_page = Config.getItem(CUSTOM_WINDOWSMENU_ITEMS);
|
||||
custom_arch_page = Config.getItem(CUSTOM_WINDOWSMENU_ITEMS);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ Global ConfigAttribute notifier_fadeintime_attrib;
|
|||
Global ConfigAttribute notifier_fadeouttime_attrib;
|
||||
Global ConfigAttribute notifier_holdtime_attrib;
|
||||
Global ConfigAttribute notifier_hideinfullscreen_attrib;
|
||||
Global ConfigAttribute notifier_windowshade_attrib;
|
||||
Global ConfigAttribute notifier_archhade_attrib;
|
||||
|
||||
//Global ConfigAttribute notifier_opennowplaying_attrib;
|
||||
Global ConfigAttribute notifier_artworkinnotification_attrib;
|
||||
|
@ -74,7 +74,7 @@ initAttribs_notifier()
|
|||
ConfigItem custom_page_notifier = addConfigSubMenu(optionsmenu_page, "Notifications", CUSTOM_PAGE_NOTIFIER);
|
||||
|
||||
notifier_always_attrib = custom_page_notifier.newAttribute("Show always", "1");
|
||||
notifier_windowshade_attrib = custom_page_notifier.newAttribute("Show with windowshade and when minimized", "0");
|
||||
notifier_archhade_attrib = custom_page_notifier.newAttribute("Show with archhade and when minimized", "0");
|
||||
notifier_minimized_attrib = custom_page_notifier.newAttribute("Show only when minimized", "0");
|
||||
notifier_minimized_attrib = custom_page_notifier.newAttribute("Show only when minimized", "0");
|
||||
notifier_never_attrib = custom_page_notifier.newAttribute("Never show", "0");
|
||||
|
@ -131,7 +131,7 @@ notifier_always_attrib.onDataChanged()
|
|||
attribs_mychange = 1;
|
||||
notifier_never_attrib.setData("0");
|
||||
notifier_minimized_attrib.setData("0");
|
||||
notifier_windowshade_attrib.setData("0");
|
||||
notifier_archhade_attrib.setData("0");
|
||||
attribs_mychange = 0;
|
||||
}
|
||||
|
||||
|
@ -142,7 +142,7 @@ notifier_never_attrib.onDataChanged()
|
|||
attribs_mychange = 1;
|
||||
notifier_always_attrib.setData("0");
|
||||
notifier_minimized_attrib.setData("0");
|
||||
notifier_windowshade_attrib.setData("0");
|
||||
notifier_archhade_attrib.setData("0");
|
||||
attribs_mychange = 0;
|
||||
}
|
||||
|
||||
|
@ -153,11 +153,11 @@ notifier_minimized_attrib.onDataChanged()
|
|||
attribs_mychange = 1;
|
||||
notifier_never_attrib.setData("0");
|
||||
notifier_always_attrib.setData("0");
|
||||
notifier_windowshade_attrib.setData("0");
|
||||
notifier_archhade_attrib.setData("0");
|
||||
attribs_mychange = 0;
|
||||
}
|
||||
|
||||
notifier_windowshade_attrib.onDataChanged()
|
||||
notifier_archhade_attrib.onDataChanged()
|
||||
{
|
||||
if (attribs_mychange) return;
|
||||
NOOFF
|
||||
|
|
|
@ -58,9 +58,9 @@ initAttribs_windowpage()
|
|||
{
|
||||
initPages();
|
||||
|
||||
sui_eq_attrib = custom_windows_page.newAttribute("Equalizer\tAlt+G", "0");
|
||||
// sui_browser_attrib = custom_windows_page.newAttribute("Web Browser\tAlt+X", "0");
|
||||
sui_config_attrib = custom_windows_page.newAttribute("Skin Settings\tAlt+C", "0");
|
||||
sui_eq_attrib = custom_arch_page.newAttribute("Equalizer\tAlt+G", "0");
|
||||
// sui_browser_attrib = custom_arch_page.newAttribute("Web Browser\tAlt+X", "0");
|
||||
sui_config_attrib = custom_arch_page.newAttribute("Skin Settings\tAlt+C", "0");
|
||||
|
||||
custom_page_fileinfo = addConfigSubMenu(optionsmenu_page, "Multi Content View", CUSTOM_PAGE_FILEINFO);
|
||||
|
||||
|
|
Binary file not shown.
|
@ -188,7 +188,7 @@ Int checkPref(int bypassfs) {
|
|||
if (!bypassfs && notifier_hideinfullscreen_attrib.getData() == "1" && isVideoFullscreen()) return 1;
|
||||
if (notifier_never_attrib.getData() == "1") return 1;
|
||||
if (notifier_minimized_attrib.getData() == "1" && !isMinimized()) return 1;
|
||||
if (notifier_windowshade_attrib.getData() == "1") {
|
||||
if (notifier_archhade_attrib.getData() == "1") {
|
||||
if (isMinimized()) return 0;
|
||||
Container c = getContainer("main");
|
||||
if (!c) return 1;
|
||||
|
|
Binary file not shown.
|
@ -45,7 +45,7 @@
|
|||
downImage="config.button.selected"
|
||||
activeImage="config.button.selected"
|
||||
/>
|
||||
<layer x="0" y="0" image="config.button.text.windowsizing" ghost="1"/>
|
||||
<layer x="0" y="0" image="config.button.text.archizing" ghost="1"/>
|
||||
</groupdef>
|
||||
|
||||
<groupdef id="bucket.entry.3" windowtype="skin.config" w="128" h="20">
|
||||
|
@ -102,38 +102,38 @@
|
|||
<groupdef id="optionsgroup.autoresize">
|
||||
|
||||
<togglebutton x="102" y="14" h="12" w="238" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{0542AFA4-48D9-4c9f-8900-5739D52C114F};Prevent video resize"
|
||||
/>
|
||||
<togglebutton x="106" y="14" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{0542AFA4-48D9-4c9f-8900-5739D52C114F};Prevent video resize" />
|
||||
|
||||
<togglebutton x="102" y="0" h="12" w="238" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Autoresize Main Window if maximized"
|
||||
/>
|
||||
<togglebutton x="106" y="0" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Autoresize Main Window if maximized" />
|
||||
|
||||
<togglebutton x="102" y="28" h="12" w="238" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Link shade and player width"
|
||||
/>
|
||||
<togglebutton x="106" y="28" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Link shade and player width" />
|
||||
|
||||
<layer x="106" y="45" image="config.windowsizing.titlebar.text" ghost="1" />
|
||||
<layer x="106" y="45" image="config.archizing.titlebar.text" ghost="1" />
|
||||
|
||||
<togglebutton x="102" y="59" h="12" w="89" rectrgn="1"
|
||||
hoverImage="config.windowsizing.titlebar.maximize.hover"
|
||||
hoverImage="config.archizing.titlebar.maximize.hover"
|
||||
cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Maximize Window on Titlebar Doubleclick"
|
||||
/>
|
||||
<togglebutton x="106" y="59" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Maximize Window on Titlebar Doubleclick" />
|
||||
|
||||
<togglebutton x="171" y="59" h="12" w="138" rectrgn="1"
|
||||
hoverImage="config.windowsizing.titlebar.shade.hover"
|
||||
hoverImage="config.archizing.titlebar.shade.hover"
|
||||
cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Switch to Shade on Titlebar Doubleclick"
|
||||
/>
|
||||
<togglebutton x="175" y="59" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{E704AB5A-108E-4309-B54B-43EBA5C0C3AA};Switch to Shade on Titlebar Doubleclick" />
|
||||
|
||||
<layer x="106" y="0" image="config.windowsizing.text" ghost="1" />
|
||||
<layer x="106" y="0" image="config.archizing.text" ghost="1" />
|
||||
|
||||
</groupdef>
|
||||
|
||||
|
@ -334,7 +334,7 @@
|
|||
hoverImage="config.notifier.sub.hover"
|
||||
/>
|
||||
<layer id="notifier.show" x="177" y="0" image="config.notifier.text.always" ghost="1"/>
|
||||
<script file="scripts/imagecontrol.maki" param="notifier.show|4|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show always;config.notifier.text.always|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show with windowshade and when minimized;config.notifier.text.shade_minimized|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show only when minimized;config.notifier.text.minimized|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Never show;config.notifier.text.never" />
|
||||
<script file="scripts/imagecontrol.maki" param="notifier.show|4|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show always;config.notifier.text.always|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show with archhade and when minimized;config.notifier.text.shade_minimized|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show only when minimized;config.notifier.text.minimized|{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Never show;config.notifier.text.never" />
|
||||
|
||||
<button
|
||||
action="switchto;optionsgroup.notifier.location;subpage" action_target="skin.config.target"
|
||||
|
@ -375,9 +375,9 @@
|
|||
|
||||
<togglebutton x="103" y="14" h="12" w="179" rectrgn="1"
|
||||
hoverImage="config.notifier.show.hover"
|
||||
cfgattrib="{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show with windowshade and when minimized"
|
||||
cfgattrib="{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show with archhade and when minimized"
|
||||
/>
|
||||
<togglebutton x="106" y="14" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show with windowshade and when minimized" />
|
||||
<togglebutton x="106" y="14" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{1AB968B3-8687-4a35-BA70-FCF6D92FB57F};Show with archhade and when minimized" />
|
||||
|
||||
<togglebutton x="103" y="28" h="12" w="179" rectrgn="1"
|
||||
hoverImage="config.notifier.show.hover"
|
||||
|
@ -586,19 +586,19 @@
|
|||
<groupdef id="optionsgroup.visualization" >
|
||||
|
||||
<togglebutton x="103" y="14" h="12" w="218" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{090B63DE-FD24-4528-ABE5-A522615E8AE9};Open in Big Component View"
|
||||
/>
|
||||
<togglebutton x="106" y="14" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{090B63DE-FD24-4528-ABE5-A522615E8AE9};Open in Big Component View" />
|
||||
|
||||
<togglebutton x="103" y="28" h="12" w="218" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{090B63DE-FD24-4528-ABE5-A522615E8AE9};Open in Multi Content View (stretched)"
|
||||
/>
|
||||
<togglebutton x="106" y="28" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{090B63DE-FD24-4528-ABE5-A522615E8AE9};Open in Multi Content View (stretched)" />
|
||||
|
||||
<togglebutton x="103" y="42" h="12" w="218" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{090B63DE-FD24-4528-ABE5-A522615E8AE9};Open in Multi Content View (mini)"
|
||||
/>
|
||||
<togglebutton x="106" y="42" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{090B63DE-FD24-4528-ABE5-A522615E8AE9};Open in Multi Content View (mini)" />
|
||||
|
@ -610,13 +610,13 @@
|
|||
<groupdef id="optionsgroup.playlist" >
|
||||
|
||||
<togglebutton x="103" y="0" h="12" w="218" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{0167CFD9-5D35-404a-8F03-80ED5B89DEDF};Enlarge Playlist"
|
||||
/>
|
||||
<togglebutton x="106" y="0" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{0167CFD9-5D35-404a-8F03-80ED5B89DEDF};Enlarge Playlist" />
|
||||
|
||||
<togglebutton x="103" y="14" h="12" w="218" rectrgn="1"
|
||||
hoverImage="config.windowsizing.autoresize.hover"
|
||||
hoverImage="config.archizing.autoresize.hover"
|
||||
cfgattrib="{0167CFD9-5D35-404a-8F03-80ED5B89DEDF};Show Album Art if Playlist is enlarged"
|
||||
/>
|
||||
<togglebutton x="106" y="14" image="config.checkbox.inactive" activeImage="config.checkbox.active" ghost="1" cfgattrib="{0167CFD9-5D35-404a-8F03-80ED5B89DEDF};Show Album Art if Playlist is enlarged" />
|
||||
|
|
|
@ -482,7 +482,7 @@
|
|||
|
||||
<!-- Config -->
|
||||
|
||||
<bitmap id="config.button.text.windowsizing" file="window/config.png" x="0" y="0" h="14" w="72" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.button.text.archizing" file="window/config.png" x="0" y="0" h="14" w="72" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.button.text.visualization" file="window/config.png" x="72" y="0" h="14" w="72" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.button.text.songticker" file="window/config.png" x="0" y="14" h="14" w="72" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.button.text.colorthemes" file="window/config.png" x="0" y="28" h="14" w="72" gammagroup="DisplayText"/>
|
||||
|
@ -498,10 +498,10 @@
|
|||
<bitmap id="config.checkbox.active" file="window/config.png" x="158" y="84" h="12" w="12" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.checkbox.inactive" file="window/config.png" x="170" y="84" h="12" w="12" gammagroup="DisplayText"/>
|
||||
|
||||
<bitmap id="config.windowsizing.text" file="window/config.png" x="0" y="70" h="74" w="158" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.windowsizing.autoresize.hover" file="window/config.png" x="158" y="70" h="12" w="158" gammagroup="SelectionBg"/>
|
||||
<bitmap id="config.windowsizing.titlebar.maximize.hover" file="window/config.png" x="158" y="70" h="12" w="54" gammagroup="SelectionBg"/>
|
||||
<bitmap id="config.windowsizing.titlebar.shade.hover" file="window/config.png" x="158" y="70" h="12" w="89" gammagroup="SelectionBg"/>
|
||||
<bitmap id="config.archizing.text" file="window/config.png" x="0" y="70" h="74" w="158" gammagroup="DisplayText"/>
|
||||
<bitmap id="config.archizing.autoresize.hover" file="window/config.png" x="158" y="70" h="12" w="158" gammagroup="SelectionBg"/>
|
||||
<bitmap id="config.archizing.titlebar.maximize.hover" file="window/config.png" x="158" y="70" h="12" w="54" gammagroup="SelectionBg"/>
|
||||
<bitmap id="config.archizing.titlebar.shade.hover" file="window/config.png" x="158" y="70" h="12" w="89" gammagroup="SelectionBg"/>
|
||||
|
||||
<bitmap id="config.appearance.text" file="window/config.png" x="0" y="144" h="84" w="158" gammagroup="DisplayText"/>
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
|
||||
<!-- edit wnds -->
|
||||
<color id="wasabi.window.background" value="color.window.bg" gammagroup="ComponentFrame"/> <!--window background. - If this color is not defined, a whole container is created in memory to extract a pixel, so specifying it makes skin loading faster -->
|
||||
<color id="wasabi.window.text" value="color.window.txt" gammagroup="WindowText"/> <!--text color within windows -->
|
||||
<color id="wasabi.window.text" value="color.window.txt" gammagroup="WindowText"/> <!--text color within arch -->
|
||||
<color id="wasabi.border.sunken" value="73,76,77" gammagroup="ComponentFrame"/> <!-- color of dividers and sunken borders -->
|
||||
|
||||
<color id="wasabi.scrollbar.foreground" value="20,21,22" gammagroup="ScrollBarTrack"/> <!-- scrollbar foreground color -->
|
||||
|
@ -63,7 +63,7 @@
|
|||
<color id="wasabi.scrollbar.background.inverted" value="20,21,22" gammagroup="ScrollBarTrack"/> <!-- inverse scrollbar background color -->
|
||||
|
||||
<color id="wasabi.button.text" value="color.window.txt" gammagroup="Column Text"/> <!-- Buttons text color -->
|
||||
<color id="wasabi.button.hiliteText" value="color.display" gammagroup="DisplayText"/> <!-- Buttons hilite text color, used by tab windows-->
|
||||
<color id="wasabi.button.hiliteText" value="color.display" gammagroup="DisplayText"/> <!-- Buttons hilite text color, used by tab arch-->
|
||||
<color id="wasabi.button.dimmedText" value="149,156,169" gammagroup="PlayerButton"/> <!-- Buttons dimmed text color, when disabled -->
|
||||
|
||||
<bitmap id="wasabi.tree.background" file="$solid" h="64" w="64" color="8,9,10" gammagroup="PlayerDisplay"/><!-- Tree background bitmap (tile) -->
|
||||
|
|
|
@ -102,12 +102,12 @@
|
|||
<bitmap id="wasabi.button.radio" file="window/window-elements.png" x="79" y="77" h="7" w="7" gammagroup="PlayerDisplay"/>
|
||||
<bitmap id="wasabi.button.radio.pressed" file="window/window-elements.png" x="72" y="77" h="7" w="7" gammagroup="DisplayText"/>
|
||||
|
||||
<!-- Frame windows -->
|
||||
<!-- Frame arch -->
|
||||
<bitmap id="wasabi.framewnd.verticaldivider" file="window/window-elements.png" x="124" y="53" h="65" w="8" gammagroup="Frame_Borders"/>
|
||||
<bitmap id="wasabi.framewnd.verticalgrabber" file="window/window-elements.png" x="115" y="53" h="65" w="8" gammagroup="Frame_Borders"/>
|
||||
<bitmap id="wasabi.framewnd.horizontaldivider" file="window/window-elements.png" x="40" y="97" h="8" w="65" gammagroup="Frame_Borders"/>
|
||||
<bitmap id="wasabi.framewnd.horizontalgrabber" file="window/window-elements.png" x="40" y="106" h="8" w="65" gammagroup="Frame_Borders"/>
|
||||
<bitmap id="wasabi.framewnd.windowshade" file="window/framewnd-windowshade.png" gammagroup="Frame_Borders"/>
|
||||
<bitmap id="wasabi.framewnd.archhade" file="window/framewnd-archhade.png" gammagroup="Frame_Borders"/>
|
||||
|
||||
<bitmap id="wasabi.frame.divider.arrow.up" file="window/window-elements.png" x="64" y="124" h="4" w="7" gammagroup="Frame_Borders"/>
|
||||
<bitmap id="wasabi.frame.divider.arrow.down" file="window/window-elements.png" x="64" y="128" h="4" w="7" gammagroup="Frame_Borders"/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue