Mercurial > hg > svgui
annotate widgets/PaneStack.h @ 48:97b0643bd799
* A bit more work on main window / document / commands stuff. This is still
pretty unstable.
* Enable CSV file reader also to read files with other separators (e.g. .lab
files with space separators)
* Show "(R)" on waveform display when resampling during playback
* Add ability to import additional audio files (can't process them yet)
* Fixes to spectrogram cache for multiple views
* Fix to avoid floating-point exception in sparse model when resolution not
set yet
author | Chris Cannam |
---|---|
date | Mon, 06 Mar 2006 17:20:25 +0000 |
parents | 78515b1e29eb |
children | f2fe98a7c57e |
rev | line source |
---|---|
Chris@0 | 1 |
Chris@0 | 2 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@0 | 3 |
Chris@0 | 4 /* |
Chris@0 | 5 A waveform viewer and audio annotation editor. |
Chris@5 | 6 Chris Cannam, Queen Mary University of London, 2005-2006 |
Chris@0 | 7 |
Chris@0 | 8 This is experimental software. Not for distribution. |
Chris@0 | 9 */ |
Chris@0 | 10 |
Chris@0 | 11 #ifndef _PANESTACK_H_ |
Chris@0 | 12 #define _PANESTACK_H_ |
Chris@0 | 13 |
Chris@0 | 14 #include <QSplitter> |
Chris@0 | 15 |
Chris@0 | 16 class QWidget; |
Chris@0 | 17 class QLabel; |
Chris@0 | 18 class Pane; |
Chris@17 | 19 class Layer; |
Chris@0 | 20 class ViewManager; |
Chris@0 | 21 class PropertyContainer; |
Chris@0 | 22 class PropertyStack; |
Chris@0 | 23 |
Chris@0 | 24 class PaneStack : public QSplitter |
Chris@0 | 25 { |
Chris@0 | 26 Q_OBJECT |
Chris@0 | 27 |
Chris@0 | 28 public: |
Chris@0 | 29 PaneStack(QWidget *parent, ViewManager *viewManager); |
Chris@0 | 30 |
Chris@0 | 31 Pane *addPane(bool suppressPropertyBox = false); // I own the returned value |
Chris@0 | 32 Pane *getPane(int n); // I own the returned value |
Chris@43 | 33 void deletePane(Pane *pane); // Deletes the pane and all its layers |
Chris@0 | 34 int getPaneCount() const; |
Chris@0 | 35 |
Chris@43 | 36 //!!! void hidePane(Pane *pane); |
Chris@43 | 37 // void showPane(Pane *pane); |
Chris@43 | 38 |
Chris@0 | 39 void setCurrentPane(Pane *pane); |
Chris@19 | 40 void setCurrentLayer(Pane *pane, Layer *layer); |
Chris@0 | 41 Pane *getCurrentPane(); |
Chris@0 | 42 |
Chris@0 | 43 signals: |
Chris@0 | 44 void currentPaneChanged(Pane *pane); |
Chris@17 | 45 void currentLayerChanged(Pane *pane, Layer *layer); |
Chris@0 | 46 |
Chris@0 | 47 public slots: |
Chris@0 | 48 void propertyContainerAdded(PropertyContainer *); |
Chris@0 | 49 void propertyContainerRemoved(PropertyContainer *); |
Chris@0 | 50 void propertyContainerSelected(PropertyContainer *); |
Chris@0 | 51 void paneInteractedWith(); |
Chris@0 | 52 |
Chris@0 | 53 protected: |
Chris@0 | 54 Pane *m_currentPane; |
Chris@0 | 55 //!!! should be a single vector of structs |
Chris@0 | 56 std::vector<Pane *> m_panes; // I own these |
Chris@0 | 57 std::vector<QWidget *> m_propertyStacks; // I own these |
Chris@0 | 58 std::vector<QLabel *> m_currentIndicators; // I own these |
Chris@0 | 59 ViewManager *m_viewManager; // I don't own this |
Chris@0 | 60 |
Chris@0 | 61 void sizePropertyStacks(); |
Chris@0 | 62 }; |
Chris@0 | 63 |
Chris@0 | 64 #endif |
Chris@0 | 65 |