|
|
| 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) |
| | databrowser view will be removed from its parent More...
|
| |
|
| 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 |
| | draw a db cell More...
|
| |
|
| 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) |
| | mouse button was released on a cell More...
|
| |
|
| 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) |
| |
|
| virtual void | dbSelectionChanged (CDataBrowser *browser) |
| | the selection of the db changed More...
|
| |
|
| 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...
|
| |
|
| virtual int32_t | dbOnKeyDown (const VstKeyCode &key, CDataBrowser *browser) |
| |