Mercurial > hg > svgui
diff widgets/ModelDataTableDialog.h @ 400:32acd578fcba
* Basic implementation of add and remove point in data editor
* Improve resilience of frame - real-time - frame round-trip conversions
author | Chris Cannam |
---|---|
date | Mon, 16 Jun 2008 14:48:42 +0000 |
parents | 80c7dd3c8dce |
children | 96531861b2f3 |
line wrap: on
line diff
--- a/widgets/ModelDataTableDialog.h Fri Jun 13 21:09:43 2008 +0000 +++ b/widgets/ModelDataTableDialog.h Mon Jun 16 14:48:42 2008 +0000 @@ -37,19 +37,21 @@ public slots: void scrollToFrameRequested(unsigned long frame); - void executeCommand(Command *); + void addCommand(Command *); protected slots: void viewClicked(const QModelIndex &); void viewPressed(const QModelIndex &); + void currentChanged(const QModelIndex &, const QModelIndex &); void insertRow(); - void deleteRow(); + void deleteRows(); void editRow(); protected: ModelDataTableModel *m_table; QTableView *m_tableView; + int m_currentRow; }; #endif