Package | Description |
---|---|
bibliothek.extension.gui.dock |
Extensions to the
Core framework, including the BubbleTheme ,
EclipseTheme and the preference mechanism. |
bibliothek.extension.gui.dock.preference |
Generic collection of preferences used in this framework.
|
bibliothek.extension.gui.dock.preference.model |
A set of
PreferenceModel s
that show properties of this framework. |
bibliothek.gui.dock.common |
A set of classes that can be used to create basic applications.
|
bibliothek.gui.dock.common.menu |
Some
MenuPiece s to modify the layout and settings of an
application that uses Common . |
bibliothek.gui.dock.common.preference |
Classes used directly or indirectly by the
CPreferenceModel . |
Modifier and Type | Class and Description |
---|---|
class |
DockingFramesPreference
A
PreferenceTreeModel that contains all the preferences that are
used in this framework. |
Modifier and Type | Method and Description |
---|---|
PreferenceModel |
PreferenceTable.getModel()
Gets the model that is used on this table.
|
Modifier and Type | Method and Description |
---|---|
void |
PreferenceTable.setModel(PreferenceModel model)
Changes the model of this table.
|
Constructor and Description |
---|
PreferenceTable(PreferenceModel model)
Creates a new table
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractPreferenceDialog<M extends PreferenceModel>
An abstract dialog used to show the content of some
PreferenceModel . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPreferenceModel
An abstract implementation of
PreferenceModel handling events and
returning null in most methods. |
class |
DefaultPreferenceModel
An implementation of
PreferenceModel using Preference s to
describe its entries. |
class |
MergedPreferenceModel
A preference model that envelops other models and uses their preferences.
|
class |
PreferenceTreeModel
A
PreferenceModel that is also a TreeModel . |
Modifier and Type | Method and Description |
---|---|
PreferenceModel |
PreferenceEditorCallback.getModel()
Gets the model from which this callback takes its values.
|
PreferenceModel |
PreferenceModelText.getModel()
Gets the model which is using this text.
|
PreferenceModel |
PreferenceTreeModel.Node.getModel()
Gets the model of this node.
|
PreferenceModel |
MergedPreferenceModel.getModel(int index)
Gets the
index 'th model of this merged model. |
PreferenceModel |
MergedPreferenceModel.getModel(Path path)
Gets the model which was stored using the key
path . |
PreferenceModel |
PreferenceTreeModel.getModel(Path path)
Gets the model which was stored using
path as key. |
Modifier and Type | Method and Description |
---|---|
void |
MergedPreferenceModel.add(PreferenceModel model,
Path path)
Adds
model at the end of this model. |
PreferenceOperationView |
PreferenceOperation.create(PreferenceModel model)
Creates and returns a view of this
PreferenceOperation for
model . |
protected int |
MergedPreferenceModel.indexAt(PreferenceModel model,
int index)
Finds the global index if
index is part of model . |
int |
MergedPreferenceModel.indexOf(PreferenceModel model)
Gets the index of
model . |
void |
MergedPreferenceModel.insert(int index,
PreferenceModel model,
Path path)
Inserts a new submodel into this model.
|
void |
PreferenceStorage.load(PreferenceModel model,
boolean missingToNull)
Gets through all the preferences of
model and changes
their values according to the values stored in this storage. |
static void |
PreferenceDialog.openDialog(PreferenceModel model,
java.awt.Component owner)
Shows a modal dialog on which the user can change the preferences of
controller . |
void |
PreferenceModelListener.preferenceAdded(PreferenceModel model,
int beginIndex,
int endIndex)
Called when new preferences have been added to
model . |
void |
PreferenceModelListener.preferenceChanged(PreferenceModel model,
int beginIndex,
int endIndex)
Called when some preferences have been changed.
|
void |
PreferenceModelListener.preferenceRemoved(PreferenceModel model,
int beginIndex,
int endIndex)
Called when some preferences have been removed from
model . |
void |
PreferenceTreeModel.put(Path path,
java.lang.String name,
PreferenceModel model)
Sets name and model of a given node.
|
void |
PreferenceTreeModel.putLinked(Path path,
java.lang.String nameId,
PreferenceModel model)
Sets name and model of a given node.
|
void |
PreferenceTreeModel.putModel(Path path,
PreferenceModel model)
Sets the model of the node at
path . |
static void |
PreferenceStorage.read(PreferenceModel model,
java.io.DataInputStream in)
Reads preferences from
in and transfers them into model . |
static void |
PreferenceStorage.readXML(PreferenceModel model,
XElement element)
Reads some preferences from
element and stores them in
model . |
void |
DefaultPreference.setModel(PreferenceModel model) |
void |
Preference.setModel(PreferenceModel model)
Sets the model which is using this preference.
|
protected void |
PreferenceDialog.setModelForContent(PreferenceModel model) |
void |
PreferenceStorage.store(PreferenceModel model)
Stores all the preferences of
model in this storage. |
static void |
PreferenceStorage.write(PreferenceModel model,
java.io.DataOutputStream out)
Writes the current preferences of
model into out . |
static void |
PreferenceStorage.writeXML(PreferenceModel model,
XElement element)
Writes the preferences of
model into element . |
Constructor and Description |
---|
PreferenceDialog(PreferenceModel model,
boolean destroyOnClose)
Creates a new dialog.
|
PreferenceModelText(java.lang.String id,
PreferenceModel model)
Creates a new text.
|
Modifier and Type | Class and Description |
---|---|
class |
BubbleThemePreferenceModel
Preferences used by the
BubbleTheme . |
class |
ButtonContentPreferenceModel
This
PreferenceModel allows the user to set up a ButtonContent using the static
conditions that are defined in ButtonContent . |
class |
EclipseThemePreferenceModel
Various preferences used by the
EclipseTheme . |
class |
KeyStrokePreferenceModel
A model that lists the keystrokes which are used in the framework.
|
class |
LayoutPreferenceModel
A model containing preferences that are related to the layout of
the framework.
|
Modifier and Type | Class and Description |
---|---|
class |
CPreferenceModel
A
PreferenceModel that shows the settings of a CControl . |
Modifier and Type | Method and Description |
---|---|
PreferenceModel |
CControl.getPreferenceModel()
Gets the preference model which is used to translate between the
preferences and this . |
Modifier and Type | Method and Description |
---|---|
void |
CControl.setPreferenceModel(PreferenceModel preferenceModel)
|
Modifier and Type | Method and Description |
---|---|
PreferenceModel |
CPreferenceMenuPiece.getModel()
Gets the model which was explicitly set.
|
Modifier and Type | Method and Description |
---|---|
void |
CPreferenceMenuPiece.setModel(PreferenceModel model)
Explicitly sets the model which will be shown on the dialog.
|
Modifier and Type | Class and Description |
---|---|
class |
CKeyStrokePreferenceModel
A set or
Preference s for the KeyStroke s that are used
in common. |
class |
CLayoutPreferenceModel
A model showing various preferences that are used for the layout.
|