Mercurial > hg > svapp
comparison framework/MainWindowBase.h @ 126:d615d0220828
* Add audio device selection to preferences
* Add (not yet functional) insert, delete, edit buttons to data edit window
* Add proper set methods for time fields in data edit window (using general
sparse model base class)
author | Chris Cannam |
---|---|
date | Fri, 13 Jun 2008 21:09:43 +0000 |
parents | 74dd55646f52 |
children | 09e6016c5436 |
comparison
equal
deleted
inserted
replaced
125:e4635503a6d2 | 126:d615d0220828 |
---|---|
298 void createDocument(); | 298 void createDocument(); |
299 | 299 |
300 Pane *addPaneToStack(); | 300 Pane *addPaneToStack(); |
301 Layer *getSnapLayer() const; | 301 Layer *getSnapLayer() const; |
302 | 302 |
303 typedef std::map<Layer *, ModelDataTableDialog *> LayerDataDialogMap; | 303 typedef std::map<Layer *, QPointer<ModelDataTableDialog> > LayerDataDialogMap; |
304 typedef std::set<ModelDataTableDialog *> DataDialogSet; | 304 typedef std::set<QPointer<ModelDataTableDialog> > DataDialogSet; |
305 typedef std::map<View *, DataDialogSet> ViewDataDialogMap; | 305 typedef std::map<View *, DataDialogSet> ViewDataDialogMap; |
306 | 306 |
307 LayerDataDialogMap m_layerDataDialogMap; | 307 LayerDataDialogMap m_layerDataDialogMap; |
308 ViewDataDialogMap m_viewDataDialogMap; | 308 ViewDataDialogMap m_viewDataDialogMap; |
309 | 309 |