C++ API Reference
|
Base class for creating new spreadsheet controls. More...
#include <MPxUITableControl.h>
Public Types | |
enum | MLabelType { kNoLabel, kRowLabel, kColumnLabel, kAllLabels } |
Types of labels available in the control. More... | |
Public Member Functions | |
MPxUITableControl (MPxControlCommand &) | |
Class constructor. More... | |
~MPxUITableControl () override | |
Class destructor. | |
MStatus | redrawLabels (MLabelType lt=kAllLabels) |
Tells the table control to redraw the label entries. More... | |
MStatus | redrawCells () |
Tells the UI control to redraw the cells of the table. More... | |
MStatus | addToSelection (unsigned int row, unsigned int col) |
Add the follow cell to the selection data structure. More... | |
MStatus | removeFromSelection (unsigned int row, unsigned int column) |
Removes the specified cell entry from the internal selection list. More... | |
MStatus | clearSelection () |
Clears the selection table. More... | |
MStatus | setSelection (unsigned int row, unsigned int column) |
Sets the table selection list based on the row & column entry. More... | |
MStatus | setSelection (unsigned int firstRow, unsigned int lastRow, unsigned int firstCol, unsigned int lastCol) |
Sets the selection to be the range of cells specified. More... | |
MStatus | setNumberOfRows (unsigned int count) |
Specifies the number of rows for the table. More... | |
unsigned int | numberOfRows (MStatus *ReturnStatus=nullptr) |
Returns the number of rows in the table. More... | |
MStatus | setNumberOfColumns (unsigned int count) |
Specifies the number of columns for the table. More... | |
unsigned int | numberOfColumns (MStatus *ReturnStatus=nullptr) const |
Returns the number of columns in the table. More... | |
bool | suspendUpdates (bool update, MStatus *ReturnStatue=nullptr) |
When set to true, it prevents the UI from updating the table. More... | |
bool | isSelected (unsigned int row, unsigned int col, MStatus *status=nullptr) |
Returns true if the specified cell is selected. More... | |
virtual bool | collapseOrExpandRow (unsigned int row) |
This is called when a row should be collapsed or expanded (depending on its current state). More... | |
Public Member Functions inherited from MPxUIControl | |
virtual | ~MPxUIControl () |
Class destructor. | |
Static Public Member Functions | |
static const char * | className () |
Returns the name of this class. More... | |
Static Public Member Functions inherited from MPxUIControl | |
static const char * | className () |
Returns the name of this class. More... | |
Protected Member Functions | |
virtual MString | cellString (unsigned int r, unsigned int c, bool &ValidCell) |
Returns the contents of a cell. More... | |
virtual MString | labelString (MLabelType labelType, unsigned int n) |
Returns the text of the label for the given row or column. More... | |
virtual bool | getCell (unsigned int r, unsigned int c, MString &value) |
NO SCRIPT SUPPORT. More... | |
virtual void | getLabel (MLabelType labelType, unsigned int n, MString &value) |
NO SCRIPT SUPPORT. More... | |
virtual bool | allowEdit () const |
Tells the base UI table control class if this control is editable. More... | |
virtual bool | allowSelection (int top, int left, int bottom, int right) |
This method is called when a selection occurs. More... | |
virtual bool | getCellColor (unsigned int r, unsigned int c, int &red, int &green, int &blue) |
Returns the background color of a cell. More... | |
Base class for creating new spreadsheet controls.
MPxUITableControl is the base class for creating new spreadsheet like interfaces. Every UI control has an associated command that is 'in-charge' of that control. Therefore, when creating a new table control, you will need to create an associated MPxControlCommand. Please refer to the MPxControlCommand documentation for details on how to use these class together.
At a minimum, when creating a new table control, you must overload getCell( ... ). Other methods available for overloading are getLabel(...), allowEdit( ... ), allowSelection( ... ), and collapseOrExpandRow( ... ).
enum MLabelType |
MPxUITableControl | ( | MPxControlCommand & | command | ) |
Class constructor.
You will always need to provide a constructor that takes a control command instance as an argument, and it is illegal to define your standard constructors.
MStatus redrawLabels | ( | MPxUITableControl::MLabelType | labelType = kAllLabels | ) |
Tells the table control to redraw the label entries.
[in] | labelType | Specifies which labels to redraw. |
MStatus redrawCells | ( | ) |
Tells the UI control to redraw the cells of the table.
The table control maintains a database of cell entries and it will populate these entries using getCell interface.
MStatus addToSelection | ( | unsigned int | row, |
unsigned int | col | ||
) |
Add the follow cell to the selection data structure.
To keep track of which entries that should be highlighted, an internal table is maintained.
[in] | row | table row entry. |
[in] | col | table col entry. |
MStatus removeFromSelection | ( | unsigned int | row, |
unsigned int | column | ||
) |
Removes the specified cell entry from the internal selection list.
[in] | row | cell row entry |
[in] | column | cell column entry |
MStatus clearSelection | ( | ) |
Clears the selection table.
This will remove all highlighted cells from the table.
MStatus setSelection | ( | unsigned int | row, |
unsigned int | column | ||
) |
Sets the table selection list based on the row & column entry.
This replaces the current selection list with the new entry.
[in] | row | cell row entry |
[in] | column | cell column entry |
MStatus setSelection | ( | unsigned int | firstRow, |
unsigned int | lastRow, | ||
unsigned int | firstCol, | ||
unsigned int | lastCol | ||
) |
Sets the selection to be the range of cells specified.
This replaces the current selection with the specified selection range.
[in] | firstRow | first row of the selection |
[in] | lastRow | last row of the selection |
[in] | firstCol | first column of the selection |
[in] | lastCol | last column of the selection |
MStatus setNumberOfRows | ( | unsigned int | count | ) |
Specifies the number of rows for the table.
[in] | count | number of rows desired. |
unsigned int numberOfRows | ( | MStatus * | ReturnStatus = nullptr | ) |
Returns the number of rows in the table.
[out] | ReturnStatus | Status of the call. |
MStatus setNumberOfColumns | ( | unsigned int | count | ) |
Specifies the number of columns for the table.
[in] | count | number of columns desired. |
unsigned int numberOfColumns | ( | MStatus * | ReturnStatus = nullptr | ) | const |
Returns the number of columns in the table.
[out] | ReturnStatus | status of the call. |
bool suspendUpdates | ( | bool | update, |
MStatus * | ReturnStatus = nullptr |
||
) |
When set to true, it prevents the UI from updating the table.
The old suspend status is returned.
[in] | update | state the new suspend status. |
[out] | ReturnStatus | status of the call. |
bool isSelected | ( | unsigned int | row, |
unsigned int | col, | ||
MStatus * | ReturnStatus = nullptr |
||
) |
Returns true if the specified cell is selected.
[in] | row | cell row position. |
[in] | col | cell col position. |
[out] | ReturnStatus | Status code. |
|
virtual |
This is called when a row should be collapsed or expanded (depending on its current state).
[in] | row | the row to collapse. |
|
static |
Returns the name of this class.
|
protectedvirtual |
Returns the contents of a cell.
Derived classes MUST override either this method or getCell().
[in] | r | Row index of the cell. |
[in] | c | Column index of the cell. |
[out] | isValidCell | True if the row and column specify a valid cell, false otherwise. |
|
protectedvirtual |
Returns the text of the label for the given row or column.
The base implementation of the method always returns an empty string.
[in] | labelType | Specifies whether a row or column label is requested. |
[in] | n | Row or column index. |
|
protectedvirtual |
NO SCRIPT SUPPORT.
Returns the contents of a cell.
Derived classes MUST override either this method or cellString().
Python Notes
This method is not supported in Python. Use cellString() instead.
[in] | row | Row index of cell. |
[in] | column | Column index of cell. |
[out] | value | Contents of the specified cell, as a string, or an empty string if an invalid cell was specified. |
|
protectedvirtual |
NO SCRIPT SUPPORT.
Returns the text of the label for the given row or column.
The base implementation of the method always returns an empty string.
Python Notes
This method is not supported in Python. Use labelString() instead.
[in] | labelType | Specifies whether a row or column label is requested. |
[in] | n | Row or column index. |
[out] | value | Text of the requested label or an empty string if 'index' is invalid. |
|
protectedvirtual |
Tells the base UI table control class if this control is editable.
It is possible to implement tables that simple display information and do not allow the user to edit them.
|
protectedvirtual |
This method is called when a selection occurs.
In this base implementation it always returns true. However, this method can be overridden to allow or disallow a selection.
[in] | top | top cell coordinate |
[in] | left | left cell coordinate |
[in] | bottom | bottom cell coordinate |
[in] | right | right cell coordinate |
|
protectedvirtual |
Returns the background color of a cell.
[in] | row | Row index of cell. |
[in] | column | Column index of cell. |
[out] | red | The Red component of the colour |
[out] | green | The Green component of the colour |
[out] | blue | The Blue component of the colour |