Mercurial > hg > svgui
comparison view/PaneStack.h @ 495:92b89764eb3b
* a few more midi bits, attempt to fix vertical-black-bar-misplacement-on-mac
author | Chris Cannam |
---|---|
date | Mon, 23 Feb 2009 14:40:17 +0000 |
parents | 6167a28d25fc |
children | 666cdcae5f0d |
comparison
equal
deleted
inserted
replaced
494:b3140e9e0665 | 495:92b89764eb3b |
---|---|
23 | 23 |
24 class QWidget; | 24 class QWidget; |
25 class QLabel; | 25 class QLabel; |
26 class QStackedWidget; | 26 class QStackedWidget; |
27 class QSplitter; | 27 class QSplitter; |
28 class QHBoxLayout; | 28 class QGridLayout; |
29 class View; | 29 class View; |
30 class Pane; | 30 class Pane; |
31 class Layer; | 31 class Layer; |
32 class ViewManager; | 32 class ViewManager; |
33 class PropertyContainer; | 33 class PropertyContainer; |
108 { | 108 { |
109 Pane *pane; | 109 Pane *pane; |
110 QWidget *propertyStack; | 110 QWidget *propertyStack; |
111 QLabel *currentIndicator; | 111 QLabel *currentIndicator; |
112 QFrame *frame; | 112 QFrame *frame; |
113 QHBoxLayout *layout; | 113 QGridLayout *layout; |
114 }; | 114 }; |
115 | 115 |
116 std::vector<PaneRec> m_panes; | 116 std::vector<PaneRec> m_panes; |
117 std::vector<PaneRec> m_hiddenPanes; | 117 std::vector<PaneRec> m_hiddenPanes; |
118 | 118 |