|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectbibliothek.gui.dock.themes.BasicTheme
public class BasicTheme
A theme
that does not install anything and uses the
default-implementations off all factories. It is possible to replace
any of the factories.
Constructor Summary | |
---|---|
BasicTheme()
Creates a new BasicTheme . |
Method Summary | |
---|---|
ColorScheme |
getColorScheme()
Gets the currently used color scheme |
Combiner |
getCombiner(DockStation station)
Gets the Combiner for station . |
DockController[] |
getControllers()
Gets a list of all DockController which are currently installed
with this theme. |
DisplayerFactory |
getDisplayFactory(DockStation station)
Gets a displayer factory for station . |
DockableMovingImageFactory |
getMovingImageFactory(DockController controller)
Gets a factory for images which are moved around by the user. |
StationPaint |
getPaint(DockStation station)
Gets the paint which is used to draw things onto station . |
DockTitleFactory |
getTitleFactory(DockController controller)
Gets the default DockTitleFactory which is used if no
other factory is set.To replace all factories, the method DockTitleManager.registerTheme(String, DockTitleFactory)
should be used. |
void |
install(DockController controller)
Install this theme at controller . |
void |
setColorScheme(ColorScheme colorScheme)
Sets the currently used set of colors. |
void |
setCombiner(Combiner combiner)
Sets the Combiner of this theme. |
void |
setDisplayerFactory(DisplayerFactory factory)
Sets the DisplayerFactory of this theme. |
void |
setMovingImageFactory(DockableMovingImageFactory movingImage)
Sets the movingImage-property. |
void |
setPaint(StationPaint paint)
Sets the StationPaint of this theme. |
void |
setStackDockComponentFactory(StackDockComponentFactory stackDockComponentFactory)
Sets the factory which will be used to create components for StackDockStation . |
void |
setTitleFactory(DockTitleFactory titleFactory)
Sets the DockTitleFactory of this station. |
void |
uninstall(DockController controller)
Uninstalls this theme from controller . |
protected void |
updateColor(DockController[] controllers,
String id,
Color backup)
Changes the color of all ColorManager s to the color obtained
through the ColorScheme or to backup if the scheme
returns a null value. |
protected void |
updateColorProvider(DockController[] controllers,
Class<? extends DockColor> kind)
Publishes to ColorProvider for kind on all controllers . |
protected void |
updateColors(DockController[] controllers)
Called when the the colors of the ColorManager have to be updated. |
void |
updateUI()
Called when the LookAndFeel changed, should update colors, fonts, ... |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BasicTheme()
BasicTheme
.
Method Detail |
---|
public void install(DockController controller)
DockTheme
controller
. The theme
may change any properties it likes.
install
in interface DockTheme
controller
- the controllerpublic void uninstall(DockController controller)
DockTheme
controller
. The theme
has to remove all listeners it added.
uninstall
in interface DockTheme
controller
- the controllerpublic void updateUI()
LookAndFeel
changed, should update colors, fonts, ...
protected void updateColors(DockController[] controllers)
ColorManager
have to be updated.
Subclasses should override this method and explicitly call
updateColor
and
updateColorProvider
for all Color
s and ColorProvider
s that will be used by
this theme. Since ColorScheme
s can create new colors and providers
lazily, just reading out all colors will ensure that all colors
and providers exists and are registered at the ColorManager
s.
controllers
- the set of controllers whose colors must be updated.protected void updateColor(DockController[] controllers, String id, Color backup)
ColorManager
s to the color obtained
through the ColorScheme
or to backup
if the scheme
returns a null
value.
controllers
- the set of affected controllersid
- the id of the new colorbackup
- backup color in case that the scheme does not
know what to useprotected void updateColorProvider(DockController[] controllers, Class<? extends DockColor> kind)
ColorProvider
for kind
on all controllers
.
controllers
- the set of affected controllerskind
- the kind of provider that should be publishedpublic DockController[] getControllers()
DockController
which are currently installed
with this theme.
public void setColorScheme(ColorScheme colorScheme)
DockController
s
will change immediately.
colorScheme
- the new schemepublic ColorScheme getColorScheme()
public void setStackDockComponentFactory(StackDockComponentFactory stackDockComponentFactory)
StackDockStation
. Note that this property has to be set
before the theme is installed. Otherwise it will take no effect.
stackDockComponentFactory
- the factory or null
public void setMovingImageFactory(DockableMovingImageFactory movingImage)
Dockable
movingImage
- the new factory, not null
public void setCombiner(Combiner combiner)
Combiner
of this theme. The combiner is used to
merge two Dockables.
combiner
- the combiner, not null
public void setPaint(StationPaint paint)
StationPaint
of this theme. The paint is used to
draw markings on stations.
paint
- the paint, not null
public void setDisplayerFactory(DisplayerFactory factory)
DisplayerFactory
of this theme. The factory is needed
to create DockableDisplayer
.
factory
- the factory, not null
public void setTitleFactory(DockTitleFactory titleFactory)
DockTitleFactory
of this station. The factory is
used to create DockTitles
for some Dockables.
titleFactory
- the factory, not null
public DockableMovingImageFactory getMovingImageFactory(DockController controller)
DockTheme
getMovingImageFactory
in interface DockTheme
controller
- the controller for which the factory is needed
public Combiner getCombiner(DockStation station)
DockTheme
station
.
getCombiner
in interface DockTheme
station
- the station whose combiner is searched
station
public StationPaint getPaint(DockStation station)
DockTheme
station
.
getPaint
in interface DockTheme
station
- the station to paint on
station
public DisplayerFactory getDisplayFactory(DockStation station)
DockTheme
station
.
getDisplayFactory
in interface DockTheme
station
- the station on which the created DockableDisplayer
is shown
public DockTitleFactory getTitleFactory(DockController controller)
DockTheme
DockTitleFactory
which is used if no
other factory is set.DockTitleManager.registerTheme(String, DockTitleFactory)
should be used.
getTitleFactory
in interface DockTheme
controller
- the controller using this theme
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |