Package docking.theme.gui
Class ThemeIconTableModel
- All Implemented Interfaces:
ConfigurableColumnTableModel
,DynamicColumnTableModel<IconValue>
,RowObjectTableModel<IconValue>
,SelectionStorage<IconValue>
,SortedTableModel
,VariableColumnTableModel
,Serializable
,EventListener
,ChangeListener
,TableModel
Table model for theme icons
- See Also:
-
Field Summary
Fields inherited from class docking.widgets.table.GDynamicColumnTableModel
columnSettings, serviceProvider, tableColumns
Fields inherited from class docking.widgets.table.AbstractSortedTableModel
hasEverSorted
Fields inherited from class docking.widgets.table.AbstractGTableModel
isDisposed, WIDTH_UNDEFINED
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
Fields inherited from interface docking.widgets.table.SortedTableModel
ASCENDING_ORDER, DESCENDING_ORDER
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected TableColumnDescriptor
<IconValue> protected void
filter()
Returns the table's context for the data.Implementors should return the current data of the model.getName()
Returns the name of this modelgetThemeValue
(String id) Returns the original value for the id as defined by the current themeboolean
void
Reloads all the current values and all the default values in the table.void
Reloads the just the current values shown in the table.void
setShowSystemValues
(boolean show) Methods inherited from class docking.widgets.table.GDynamicColumnTableModel
addTableColumn, addTableColumn, addTableColumns, addTableColumns, createSortComparator, createSortComparatorForColumn, dispose, disposeDynamicColumnData, getColumn, getColumnClass, getColumnCount, getColumnDescription, getColumnDisplayName, getColumnIndex, getColumnIndex, getColumnName, getColumnSettings, getColumnSettingsDefinitions, getColumnValueForRow, getDefaultColumnCount, getHeaderRenderer, getMaxLines, getPreferredColumnWidth, getRenderer, getTableColumnDescriptor, getUniqueIdentifier, isDefaultColumn, isSortable, isVisibleByDefault, loadDiscoveredTableColumns, reloadColumns, removeTableColumn, removeTableColumns, setAllColumnSettings, stateChanged
Methods inherited from class docking.widgets.table.AbstractSortedTableModel
addSortListener, cleanupTableSortState, createSortingContext, fireTableChanged, getIndexForRowObject, getIndexForRowObject, getPendingSortState, getPrimarySortColumnIndex, getRowIndex, getRowObject, getTableSortState, getValueAt, initializeSorting, isSorted, isSortPending, notifyModelSorted, reSort, setDefaultTableSortState, setTableSortState, sort, sortCompleted
Methods inherited from class docking.widgets.table.AbstractGTableModel
getLastSelectedObjects, getRowCount, isDisposed, refresh, setLastSelectedObjects
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAt
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface docking.widgets.table.RowObjectTableModel
fireTableDataChanged, getRowIndex, getRowObject
Methods inherited from interface javax.swing.table.TableModel
addTableModelListener, getRowCount, getValueAt, isCellEditable, removeTableModelListener, setValueAt
-
Constructor Details
-
ThemeIconTableModel
-
-
Method Details
-
setShowSystemValues
public void setShowSystemValues(boolean show) -
isShowingSystemValues
public boolean isShowingSystemValues() -
filter
protected void filter() -
reloadCurrent
public void reloadCurrent()Reloads the just the current values shown in the table. Called whenever an icon changes. -
reloadAll
public void reloadAll()Reloads all the current values and all the default values in the table. Called when the theme changes or the application defaults have been forced to reload. -
getName
Description copied from interface:RowObjectTableModel
Returns the name of this model- Returns:
- the name of this model
-
getModelData
Description copied from interface:RowObjectTableModel
Implementors should return the current data of the model. For models that support filtering, this will be the filtered version of the data. Furthermore, the data should be the underlying data and not a copy, as this method will potentially sort the given data.For those subclasses using an array, you may use the
Arrays
class to create a list backed by the array (Arrays.asList(Object...)
).- Returns:
- the model data.
-
createTableColumnDescriptor
- Specified by:
createTableColumnDescriptor
in classGDynamicColumnTableModel<IconValue,
Object>
-
getDataSource
Description copied from class:GDynamicColumnTableModel
Returns the table's context for the data.- Specified by:
getDataSource
in classGDynamicColumnTableModel<IconValue,
Object> - Returns:
- the table's context for the data.
-
getThemeValue
Returns the original value for the id as defined by the current theme- Parameters:
id
- the resource id to get a font value for- Returns:
- the original value for the id as defined by the current theme
-