BALL::VIEW::DatasetController Class Reference

#include <BALL/VIEW/DATATYPE/dataset.h>

Inheritance diagram for BALL::VIEW::DatasetController:
Inheritance graph
[legend]

List of all members.

Public Slots

virtual bool write ()
 Show a file dialog for writing the selected Dataset.
bool open ()
virtual bool deleteDatasets ()
 Delete all Datasets.
virtual bool deleteDataset ()
 Delete the currently highlighted Dataset.

Public Member Functions

 DatasetController ()
 DatasetController (DatasetController &dc)
virtual ~DatasetController ()
void setDatasetControl (DatasetControl *dc)
DatasetControlgetDatasetControl ()
virtual bool handle (DatasetMessage *msg)
virtual bool insertDataset (Dataset *set)
virtual bool deleteDataset (Dataset *set)
virtual bool createMenuEntries ()
virtual QMenu * buildContextMenu (QTreeWidgetItem *item)
vector< Dataset * > getDatasets ()
 Get all Datasets of this type in the DatasetControl.
vector< Dataset * > getSelectedDatasets ()
 Get all selected Datasets of this type in the DatasetControl.
DatasetgetSelectedDataset ()
bool hasDataset (Dataset *set)
bool hasItem (QTreeWidgetItem *item)
 Test if a given QTreeWidgetItem corresponds to a registered Dataset.
DatasetgetDataset (QTreeWidgetItem *item)
 Get the Dataset for a QTreeWidgetItem.
String getType ()
virtual void checkMenu (MainControl &mc)
vector< StringgetSupportedFileFormats ()

Protected Member Functions

void setStatusbarText (const String &text, bool important=false)
void setStatusbarText (const QString &text, bool important=false)
virtual bool write (Dataset *, String, String)
virtual Datasetopen (String, String)
String getFileTypes_ ()
String getNameFromFileName_ (String filename)
QActioninsertMenuEntry_ (Position pid, const String &name, const char *slot, const String &description="", QKeySequence accel=QKeySequence())
virtual void deleteDataset_ (Dataset *)

Protected Attributes

String type_
vector< Stringfile_formats_
DatasetControlcontrol_
vector< QAction * > actions_
HashSet< QAction * > actions_for_one_set_
HashMap< QTreeWidgetItem
*, Dataset * > 
item_to_dataset_
HashMap< Dataset
*, QTreeWidgetItem * > 
dataset_to_item_

Friends

class DatasetControl

Detailed Description

Controller base class for one type of Dataset A DatasetController provides all neccessary means to manage and manipulate a kind of data in the DatasetControl. The class has the following features:

To use this class, derive a new class from it and overload/create the following methods:

Furthermore

See also:
DatasetControl
Dataset
DatasetMessage
Embeddable

Definition at line 188 of file dataset.h.


Constructor & Destructor Documentation

BALL::VIEW::DatasetController::DatasetController (  ) 
BALL::VIEW::DatasetController::DatasetController ( DatasetController dc  ) 
virtual BALL::VIEW::DatasetController::~DatasetController (  )  [virtual]

Member Function Documentation

virtual QMenu* BALL::VIEW::DatasetController::buildContextMenu ( QTreeWidgetItem item  )  [virtual]

Create a context menu for this data type. Initial support for deleting and saving entries is included. Overload this method for providing further entries.

Reimplemented in BALL::VIEW::RegularData3DController, BALL::VIEW::TrajectoryController, BALL::VIEW::DockResultController, BALL::VIEW::VectorGridController, and BALL::VIEW::RaytraceableGridController.

virtual void BALL::VIEW::DatasetController::checkMenu ( MainControl mc  )  [virtual]

Check the menu entries for this data type. If the MainControl is currently busy, all entries are disabled. If multiple entries are selected, it is tested, if an QAction is included in actions_for_one_set_. If true, this QAction is disabled. Overload this method for more sophisticated behaviour.

virtual bool BALL::VIEW::DatasetController::createMenuEntries (  )  [virtual]

Create menu entries for this data type. Initial support for open file menu entry is included. Overload this method for providing further entries.

Reimplemented in BALL::VIEW::RegularData3DController, BALL::VIEW::TrajectoryController, BALL::VIEW::DockResultController, BALL::VIEW::VectorGridController, and BALL::VIEW::RaytraceableGridController.

virtual bool BALL::VIEW::DatasetController::deleteDataset (  )  [virtual, slot]

Delete the currently highlighted Dataset.

virtual bool BALL::VIEW::DatasetController::deleteDataset ( Dataset set  )  [virtual]
virtual void BALL::VIEW::DatasetController::deleteDataset_ ( Dataset  )  [inline, protected, virtual]

In the derived class: cast to concrete type and delete the data!

Reimplemented in BALL::VIEW::RegularData3DController, BALL::VIEW::TrajectoryController, BALL::VIEW::DockResultController, BALL::VIEW::VectorGridController, and BALL::VIEW::RaytraceableGridController.

Definition at line 316 of file dataset.h.

virtual bool BALL::VIEW::DatasetController::deleteDatasets (  )  [virtual, slot]

Delete all Datasets.

Dataset* BALL::VIEW::DatasetController::getDataset ( QTreeWidgetItem item  ) 

Get the Dataset for a QTreeWidgetItem.

DatasetControl* BALL::VIEW::DatasetController::getDatasetControl (  )  [inline]

Definition at line 213 of file dataset.h.

vector<Dataset*> BALL::VIEW::DatasetController::getDatasets (  ) 

Get all Datasets of this type in the DatasetControl.

String BALL::VIEW::DatasetController::getFileTypes_ (  )  [protected]
String BALL::VIEW::DatasetController::getNameFromFileName_ ( String  filename  )  [protected]
Dataset* BALL::VIEW::DatasetController::getSelectedDataset (  ) 

Get one selected Datasets of this type in the DatasetControl. If multiple entries are selected in the DatasetControl, 0 is returned.

vector<Dataset*> BALL::VIEW::DatasetController::getSelectedDatasets (  ) 

Get all selected Datasets of this type in the DatasetControl.

vector<String> BALL::VIEW::DatasetController::getSupportedFileFormats (  )  [inline]

Return a vector with all supported file formats. Set the member file_formats_ in the constructor of the derived class. The methods open(...) and write(...) must be overloaded such that they know how to handle the supported file formats.

Definition at line 281 of file dataset.h.

String BALL::VIEW::DatasetController::getType (  )  [inline]

Get the String type identifier for this data type.

Definition at line 266 of file dataset.h.

virtual bool BALL::VIEW::DatasetController::handle ( DatasetMessage msg  )  [virtual]

Message handling. If a DatasetControl receives a DatasetMessage, it queries the data type and calls this method in the corresponding DatasetController. This method has intial support for DatasetMessage::ADD and DatasetMessage::REMOVE. For these cases, it calls insertDataset or respectively deleteDataset.

bool BALL::VIEW::DatasetController::hasDataset ( Dataset set  ) 

Test if a Dataset is registered in this controller.

bool BALL::VIEW::DatasetController::hasItem ( QTreeWidgetItem item  ) 

Test if a given QTreeWidgetItem corresponds to a registered Dataset.

virtual bool BALL::VIEW::DatasetController::insertDataset ( Dataset set  )  [virtual]
QAction* BALL::VIEW::DatasetController::insertMenuEntry_ ( Position  pid,
const String name,
const char *  slot,
const String description = "",
QKeySequence  accel = QKeySequence() 
) [protected]
virtual Dataset* BALL::VIEW::DatasetController::open ( String  ,
String   
) [protected, virtual]
bool BALL::VIEW::DatasetController::open (  )  [slot]

Show a file dialog to open a data file. Calls open(String, String). Overload this method to support multiple file formats.

void BALL::VIEW::DatasetController::setDatasetControl ( DatasetControl dc  )  [inline]

Definition at line 210 of file dataset.h.

void BALL::VIEW::DatasetController::setStatusbarText ( const QString &  text,
bool  important = false 
) [protected]
void BALL::VIEW::DatasetController::setStatusbarText ( const String text,
bool  important = false 
) [protected]
virtual bool BALL::VIEW::DatasetController::write ( Dataset ,
String  ,
String   
) [protected, virtual]
virtual bool BALL::VIEW::DatasetController::write (  )  [virtual, slot]

Show a file dialog for writing the selected Dataset.

Reimplemented in BALL::VIEW::RegularData3DController.


Friends And Related Function Documentation

friend class DatasetControl [friend]

Definition at line 194 of file dataset.h.


Member Data Documentation

Definition at line 321 of file dataset.h.

Definition at line 322 of file dataset.h.

Definition at line 320 of file dataset.h.

Definition at line 324 of file dataset.h.

Definition at line 319 of file dataset.h.

Definition at line 323 of file dataset.h.

Definition at line 316 of file dataset.h.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines
Generated by  doxygen 1.6.3