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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue