An abstract base class for all 2D Array Widets. More...
#include <Optika_ArrayWidget.hpp>
Public Member Functions | |
Constructors | |
Generic2DArrayWidget (QString name, QString type, const RCP< const ParameterEntryValidator > validator, QWidget *parent=0) | |
Constructs a Generic2DArrayWidget. More... | |
Getters and Setters | |
void | initData (TwoDArray< S > array) |
Initializes all of the data in the array widget so when it pops up, the individual widgets are populate with their current values in the array. Also, sets the baseArray to array . More... | |
TwoDArray< S > | getArrayFromWidgets () |
Retrieves all the data currently entered in each of the individual widgets and compiles it into a TwoDArray. More... | |
virtual S | getWidgetValue (int row, int col)=0 |
Gets the current value entred in the widget located at row,col. More... | |
TwoDArray< S > | getData () const |
gets the data currently stored in baseArray. | |
Public Member Functions inherited from Optika::GenericArrayWidget< S > | |
const QString | getType () const |
Gets the type of array being edited. More... | |
const QString | getName () const |
Returns the name of the parameter being edits. | |
const RCP< const ParameterEntryValidator > | getEntryValidator () const |
Returns the validator being used on the array. | |
virtual void | accept ()=0 |
called when the user is done entering data into the widget. MUST BE IMPLEMENTED AS A SLOT IN CONCRETE SUBCLASSES! | |
GenericArrayWidget (QString name, QString type, const RCP< const ParameterEntryValidator > validator, QWidget *parent=0) | |
Constructs a GenericArrayWidget. More... | |
Protected Member Functions | |
Protected Functions | |
void | doAcceptWork () |
Do all the things that need to be done when accept is called. More... | |
virtual QWidget * | getEditorWidget (int row, int col)=0 |
Protected Member Functions inherited from Optika::GenericArrayWidget< S > | |
virtual void | setupArrayLayout () |
Sets up the layout for the arrayContainer, including adding what ever editing widget should be used for the particual type of array. | |
Protected Attributes | |
Protected members | |
TwoDArray< QWidget * > | widgetArray |
An array containing the individual widgets which make up the array widget editor. The widget at row,col is the widget which will edit the value at row,col in the baseArray. | |
TwoDArray< S > | baseArray |
The actual array data that the widget is editing. When the user is finished editing, this TwoDArray is then populated with the values they entered. | |
Protected Attributes inherited from Optika::GenericArrayWidget< S > | |
QWidget * | arrayContainer |
The widget containing all of the editing widgets (e.g. QLineEdits, and QSpinBoxes) that comprise the array editor. | |
An abstract base class for all 2D Array Widets.
TwoDArray
Optika::Generic2DArrayWidget< S >::Generic2DArrayWidget | ( | QString | name, |
QString | type, | ||
const RCP< const ParameterEntryValidator > | validator, | ||
QWidget * | parent = 0 |
||
) |
Constructs a Generic2DArrayWidget.
name | The name of the parameter beting edited. |
type | The arrays template type. |
validator | The validator to be used on the Array. |
parent | The parent widget. |
|
inlineprotectedvirtual |
Do all the things that need to be done when accept is called.
Namely, set the base array to what is currently entered in the individual widgets and call done.
Implements Optika::GenericArrayWidget< S >.
|
inline |
Retrieves all the data currently entered in each of the individual widgets and compiles it into a TwoDArray.
Referenced by Optika::Generic2DArrayWidget< short >::doAcceptWork().
|
protectedpure virtual |
Get a widget used for editing the value located at row,col in the baseArray.
row | The row of the value for which an editor widget is desired. |
col | The column of the value for which and editor widget is desired. |
Implemented in Optika::String2DArrayWidget, Optika::Float2DArrayWidget, Optika::Double2DArrayWidget, Optika::Short2DArrayWidget, and Optika::Int2DArrayWidget.
|
pure virtual |
Gets the current value entred in the widget located at row,col.
Implemented in Optika::String2DArrayWidget, Optika::Float2DArrayWidget, Optika::Double2DArrayWidget, Optika::Short2DArrayWidget, and Optika::Int2DArrayWidget.
Referenced by Optika::Generic2DArrayWidget< short >::getArrayFromWidgets().
|
inline |
Initializes all of the data in the array widget so when it pops up, the individual widgets are populate with their current values in the array. Also, sets the baseArray
to array
.
array | The array that should be used to populate the individual widgets making up the ArrayWidget. |