|
| | JFloatBufferTableData (const JFloatTableData *floatData, const int precision) |
| |
| | ~JFloatBufferTableData () override |
| |
| | JStringTableData () |
| |
| | JStringTableData (const JStringTableData &source) |
| |
| | ~JStringTableData () override |
| |
| const JString & | GetString (const JIndex row, const JIndex col) const |
| |
| const JString & | GetString (const JPoint &cell) const |
| |
| void | SetString (const JIndex row, const JIndex col, const JString &s) |
| |
| void | SetString (const JPoint &cell, const JString &s) |
| |
| | JObjTableData () |
| |
| | JObjTableData (const JObjTableData< JString > &source) |
| |
| | ~JObjTableData () override |
| |
| const JString & | GetItem (const JIndex row, const JIndex col) const |
| |
| const JString & | GetItem (const JPoint &cell) const |
| |
| void | SetItem (const JIndex row, const JIndex col, const JString &data) |
| |
| void | SetItem (const JPoint &cell, const JString &data) |
| |
| void | GetRow (const JIndex index, JPtrArray< JString > *rowData) const |
| |
| void | SetRow (const JIndex index, const JPtrArray< JString > &rowData) |
| |
| void | GetCol (const JIndex index, JPtrArray< JString > *colData) const |
| |
| void | SetCol (const JIndex index, const JPtrArray< JString > &colData) |
| |
| void | InsertRows (const JIndex index, const JSize count, const JPtrArray< JString > *initData=nullptr) |
| |
| void | PrependRows (const JSize count, const JPtrArray< JString > *initData=nullptr) |
| |
| void | AppendRows (const JSize count, const JPtrArray< JString > *initData=nullptr) |
| |
| void | DuplicateRow (const JIndex origIndex, const JIndex newIndex) |
| |
| void | RemoveRow (const JIndex index) |
| |
| void | RemoveNextRows (const JIndex firstIndex, const JSize count) |
| |
| void | RemovePrevRows (const JIndex lastIndex, const JSize count) |
| |
| void | RemoveAllRows () |
| |
| void | MoveRow (const JIndex origIndex, const JIndex newIndex) |
| |
| void | InsertCols (const JIndex index, const JSize count, const JPtrArray< JString > *initData=nullptr) |
| |
| void | PrependCols (const JSize count, const JPtrArray< JString > *initData=nullptr) |
| |
| void | AppendCols (const JSize count, const JPtrArray< JString > *initData=nullptr) |
| |
| void | DuplicateCol (const JIndex origIndex, const JIndex newIndex) |
| |
| void | RemoveCol (const JIndex index) |
| |
| void | RemoveNextCols (const JIndex firstIndex, const JSize count) |
| |
| void | RemovePrevCols (const JIndex lastIndex, const JSize count) |
| |
| void | RemoveAllCols () |
| |
| void | MoveCol (const JIndex origIndex, const JIndex newIndex) |
| |
| | JTableData () |
| |
| | JTableData (const JTableData &source) |
| |
| | ~JTableData () override |
| |
| JTableData & | operator= (const JTableData &source) |
| |
| bool | IsEmpty () const |
| |
| JSize | GetRowCount () const |
| |
| bool | RowIndexValid (const JIndex index) const |
| |
| JSize | GetColCount () const |
| |
| bool | ColIndexValid (const JIndex index) const |
| |
| bool | CellValid (const JPoint &cell) const |
| |
| | JBroadcaster () |
| |
| virtual | ~JBroadcaster () |
| |
| JBroadcaster & | operator= (const JBroadcaster &source) |
| |
| bool | HasSenders () const |
| |
| JSize | GetSenderCount () const |
| |
| bool | HasRecipients () const |
| |
| JSize | GetRecipientCount () const |
| |
| virtual JString | ToString () const |
| |
| template<class T > |
| void | ListenTo (const JBroadcaster *sender, const std::function< void(const T &)> &f) |
| |
Class to buffer a table of numbers as JStrings so drawing the table
will be faster.