Package org.zkoss.zul.theme
Class DesktopThemeRegistry
- java.lang.Object
-
- org.zkoss.zul.theme.DesktopThemeRegistry
-
- All Implemented Interfaces:
ThemeRegistry
- Direct Known Subclasses:
ResponsiveThemeRegistry
public class DesktopThemeRegistry extends java.lang.Object implements ThemeRegistry
A standard implementation of ThemeRegistry, used in ZK CE/PE Used to keep track of a list of available desktop themes to apply- Since:
- 6.5.2
- Author:
- neillee
-
-
Constructor Summary
Constructors Constructor Description DesktopThemeRegistry()
Initialize the registry with the default theme (a.k.a Breeze).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
deregister(Theme theme)
Remove a theme from the list of available desktop themesTheme
getTheme(java.lang.String themeName)
Returns the desktop theme with the given nameTheme[]
getThemes()
Returns a list of currently registered desktop themesboolean
hasTheme(java.lang.String themeName)
Check if a dekstop theme with the given name is available to useboolean
register(Theme theme)
Register a desktop theme.
-
-
-
Method Detail
-
register
public boolean register(Theme theme)
Register a desktop theme.- Specified by:
register
in interfaceThemeRegistry
- Parameters:
theme
- an instance of StandardTheme- Returns:
- true if registration is successful; false if failed
-
deregister
public boolean deregister(Theme theme)
Remove a theme from the list of available desktop themes- Specified by:
deregister
in interfaceThemeRegistry
- Parameters:
theme
- the theme to be removed- Returns:
- true if the theme is successfully removed; false if failed
-
getThemes
public Theme[] getThemes()
Returns a list of currently registered desktop themes- Specified by:
getThemes
in interfaceThemeRegistry
- Returns:
- the list of currently registered desktop themes
-
hasTheme
public boolean hasTheme(java.lang.String themeName)
Check if a dekstop theme with the given name is available to use- Specified by:
hasTheme
in interfaceThemeRegistry
- Parameters:
themeName
- the name of the theme- Returns:
- true if theme is found; false otherwise
-
getTheme
public Theme getTheme(java.lang.String themeName)
Returns the desktop theme with the given name- Specified by:
getTheme
in interfaceThemeRegistry
- Parameters:
themeName
- theme name- Returns:
- an instance of Theme with the given name or null if the registry does not have a theme that goes by that name
-
-