#include <genericControl.h>
Inheritance diagram for VIEW::GenericControl:
Public Types | |
typedef QList< QTreeWidgetItem * > | ItemList |
typedef | |
Public Slots | |
virtual void | deleteCurrentItems () throw () |
Called by if del is pressed. | |
Public Member Functions | |
Constructors and Destructors | |
GenericControl (QWidget *parent=0, const char *name=0) throw () | |
Default Constructor. | |
virtual | ~GenericControl () throw () |
Destructor. | |
ItemList | getSelectedItems () throw () |
QTreeWidgetItem * | addRow (const QStringList &entries) |
virtual void | onNotify (Message *message) throw () |
React to a DeselectControlsMessage. | |
virtual void | initializeWidget (MainControl &main_control) throw () |
Initialize the menu entries: - delete. | |
Protected Slots | |
virtual void | deselectOtherControls_ () |
virtual void | updateSelection () |
virtual void | onItemClicked (QTreeWidgetItem *, int) |
Protected Member Functions | |
virtual void | removeItem_ (QTreeWidgetItem *item) throw () |
Protected Attributes | |
QTreeWidgetItem * | context_item_ |
TreeWidget * | listview |
bool | checkable_ |
It uses the datastructure QListView from the QT-libary. There are two columns. The Name column and the Type column. In the Name column the item tree will be shown and in the Type column the type of each item. There are methods available to change the structure as well as copy or paste objects into the GenericControl. Various virtual methods can be overridden to customize the behavior of these structure changing methods. To use this widget in the application just create it with MainGenericControl as parent.
|
Default Constructor. (See documentation of QT-library for information concerning widgets and signal/slot mechanism.)
|
|
Destructor.
|
|
Initialize the menu entries: - delete.
Reimplemented from VIEW::DockWidget. Reimplemented in VIEW::DatasetControl, VIEW::GeometricControl, and VIEW::MolecularControl. |
|
React to a DeselectControlsMessage. If such a message is send from other GenericControls, this GenericControl deselects all its items, so that only one GenericControl has a Selection at any time. Call this Method in the derived Classes in their onNotify(). Reimplemented from VIEW::ConnectionObject. Reimplemented in VIEW::DatasetControl, VIEW::GeometricControl, and VIEW::MolecularControl. |