#include <datasetControl.h>
Inheritance diagram for VIEW::DatasetControl:
Public Member Functions | |
DatasetControl (QWidget *parent=0, const char *name=0) throw () | |
Default Constructor. | |
virtual | ~DatasetControl () throw () |
Destructor. | |
virtual void | onNotify (Message *message) throw () |
Overload this method to react to further messages Reacts to DatasetMessage, it will be passed on to the corresponding DatasetController. | |
virtual void | initializeWidget (MainControl &main_control) throw () |
Initialize the widget. | |
virtual void | checkMenu (MainControl &main_control) throw () |
Check the menu entries. | |
virtual bool | canHandle (const String &fileformat) const |
Test if this ModularWidget can handle a given file format. | |
virtual bool | openFile (const String &filename) |
Tell this ModularWidget to open a given file. | |
virtual bool | registerController (DatasetController *con) |
Register a DatasetController. | |
DatasetController * | getController (const String &type) |
Return the registered DatasetController with the given type. | |
DatasetController * | getController (QTreeWidgetItem *item) |
Get the DatasetController, that is responsible for the item. | |
vector< Dataset * > | getDatasets (const String &type) |
Get all Datasets with one type. | |
Size | getSelectionSize () |
Return the number of selected entries. | |
String | getType (QTreeWidgetItem *item) |
Get the type for one QTreeWidgetItem. | |
Protected Slots | |
virtual void | showGuestContextMenu (const QPoint &pos) |
void | updateSelection () throw () |
Called when the item selection changes. | |
Protected Member Functions | |
DatasetControl (const DatasetControl &control) throw () | |
Protected Attributes | |
vector< DatasetController * > | controllers_ |
For each type a derived DatasetController class must be registered. The DatasetControl has three columns: Name, from (Composite) and Type.
|
Default Constructor. Calls registerWidget().
|
|
Destructor.
|
|
Test if this ModularWidget can handle a given file format. (Overloaded from ModularWidget) Calls DatasetControl::getSupportedFileFormats.
Reimplemented from VIEW::ModularWidget. |
|
Check the menu entries. Calls DatasetController::checkMenu Reimplemented from VIEW::ModularWidget. |
|
Get the DatasetController, that is responsible for the item.
|
|
Return the registered DatasetController with the given type.
|
|
Get all Datasets with one type.
|
|
Initialize the widget.
Reimplemented from VIEW::GenericControl. |
|
Overload this method to react to further messages Reacts to DatasetMessage, it will be passed on to the corresponding DatasetController.
Reimplemented from VIEW::GenericControl. |
|
Tell this ModularWidget to open a given file. (Overloaded from ModularWidget) Will call DatasetController::openFile.
Reimplemented from VIEW::ModularWidget. |
|
Register a DatasetController. The DatasetController must be created on the heap and will be deleted together with the DatasetControl. |
|
Called when the item selection changes. Sends a DatasetMessage with type DatasetMessage::SELECTED. Reimplemented from VIEW::GenericControl. |