|
VSTGUI
4.3
Graphical User Interface Framework not only for VST plugins
|
DataBrowser Interface. More...
Inheritance diagram for IDataBrowserDelegate:Public Types | |
| enum | { kRowSelected = 1 << 1 } |
Public Member Functions | |
Setup | |
| virtual int32_t | dbGetNumRows (CDataBrowser *browser)=0 |
| return number of rows for CDataBrowser browser More... | |
| virtual int32_t | dbGetNumColumns (CDataBrowser *browser)=0 |
| return number of columns for CDataBrowser browser More... | |
| virtual bool | dbGetColumnDescription (int32_t index, CCoord &minWidth, CCoord &maxWidth, CDataBrowser *browser) |
| virtual CCoord | dbGetCurrentColumnWidth (int32_t index, CDataBrowser *browser)=0 |
| return current width of index column More... | |
| virtual void | dbSetCurrentColumnWidth (int32_t index, const CCoord &width, CDataBrowser *browser) |
| the width of a column has changed More... | |
| virtual CCoord | dbGetRowHeight (CDataBrowser *browser)=0 |
| return height of one row More... | |
| virtual bool | dbGetLineWidthAndColor (CCoord &width, CColor &color, CDataBrowser *browser) |
| return the line width and color More... | |
| virtual void | dbAttached (CDataBrowser *browser) |
| databrowser view was attached to a parent More... | |
| virtual void | dbRemoved (CDataBrowser *browser) |
Drawing | |
| virtual void | dbDrawHeader (CDrawContext *context, const CRect &size, int32_t column, int32_t flags, CDataBrowser *browser)=0 |
| draw the db header More... | |
| virtual void | dbDrawCell (CDrawContext *context, const CRect &size, int32_t row, int32_t column, int32_t flags, CDataBrowser *browser)=0 |
Mouse Handling | |
| virtual CMouseEventResult | dbOnMouseDown (const CPoint &where, const CButtonState &buttons, int32_t row, int32_t column, CDataBrowser *browser) |
| mouse button was pressed on a cell More... | |
| virtual CMouseEventResult | dbOnMouseMoved (const CPoint &where, const CButtonState &buttons, int32_t row, int32_t column, CDataBrowser *browser) |
| mouse was moved over a cell More... | |
| virtual CMouseEventResult | dbOnMouseUp (const CPoint &where, const CButtonState &buttons, int32_t row, int32_t column, CDataBrowser *browser) |
Drag'n Drop Handling | |
| virtual void | dbOnDragEnterBrowser (IDataPackage *drag, CDataBrowser *browser) |
| virtual void | dbOnDragExitBrowser (IDataPackage *drag, CDataBrowser *browser) |
| virtual void | dbOnDragEnterCell (int32_t row, int32_t column, const CPoint &where, IDataPackage *drag, CDataBrowser *browser) |
| virtual void | dbOnDragMoveInCell (int32_t row, int32_t column, const CPoint &where, IDataPackage *drag, CDataBrowser *browser) |
| virtual void | dbOnDragExitCell (int32_t row, int32_t column, IDataPackage *drag, CDataBrowser *browser) |
| virtual bool | dbOnDropInCell (int32_t row, int32_t column, const CPoint &where, IDataPackage *drag, CDataBrowser *browser) |
Selection | |
| virtual void | dbSelectionChanged (CDataBrowser *browser) |
Cell Text Editing | |
| virtual void | dbCellTextChanged (int32_t row, int32_t column, UTF8StringPtr newText, CDataBrowser *browser) |
| the text of the cell changed beginTextEdit was called for More... | |
| virtual void | dbCellSetupTextEdit (int32_t row, int32_t column, CTextEdit *textEditControl, CDataBrowser *browser) |
| beginTextEdit calls this, so you can setup the textedit control More... | |
Keyboard Handling | |
| virtual int32_t | dbOnKeyDown (const VstKeyCode &key, CDataBrowser *browser) |
DataBrowser Interface.
|
inlinevirtual |
databrowser view was attached to a parent
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
beginTextEdit calls this, so you can setup the textedit control
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
the text of the cell changed beginTextEdit was called for
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
pure virtual |
draw a db cell
Implemented in GenericStringListDataBrowserSource.
|
pure virtual |
draw the db header
Implemented in GenericStringListDataBrowserSource.
|
inlinevirtual |
Reimplemented in GenericStringListDataBrowserSource.
|
pure virtual |
return current width of index column
Implemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
return the line width and color
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
pure virtual |
return number of columns for CDataBrowser browser
Implemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
pure virtual |
return number of rows for CDataBrowser browser
Implemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
pure virtual |
return height of one row
Implemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
Reimplemented in GenericStringListDataBrowserSource.
|
inlinevirtual |
mouse button was pressed on a cell
Reimplemented in GenericStringListDataBrowserSource.
|
inlinevirtual |
mouse was moved over a cell
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
mouse button was released on a cell
Reimplemented in GenericStringListDataBrowserSource.
|
inlinevirtual |
databrowser view will be removed from its parent
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
the selection of the db changed
Reimplemented in GenericStringListDataBrowserSource.
Here is the caller graph for this function:
|
inlinevirtual |
the width of a column has changed
Reimplemented in GenericStringListDataBrowserSource.