Mercurial > hg > svgui
comparison view/PaneStack.h @ 1324:13d9b422f7fe zoom
Merge from default branch
author | Chris Cannam |
---|---|
date | Mon, 17 Sep 2018 13:51:31 +0100 |
parents | 7527701c8076 |
children | 8afea53332f3 |
comparison
equal
deleted
inserted
replaced
1183:57d192e26331 | 1324:13d9b422f7fe |
---|---|
11 published by the Free Software Foundation; either version 2 of the | 11 published by the Free Software Foundation; either version 2 of the |
12 License, or (at your option) any later version. See the file | 12 License, or (at your option) any later version. See the file |
13 COPYING included with this distribution for more information. | 13 COPYING included with this distribution for more information. |
14 */ | 14 */ |
15 | 15 |
16 #ifndef _PANESTACK_H_ | 16 #ifndef SV_PANESTACK_H |
17 #define _PANESTACK_H_ | 17 #define SV_PANESTACK_H |
18 | 18 |
19 #include <QFrame> | 19 #include <QFrame> |
20 | 20 |
21 #include <map> | 21 #include <map> |
22 | 22 |
115 protected: | 115 protected: |
116 Pane *m_currentPane; | 116 Pane *m_currentPane; |
117 | 117 |
118 struct PaneRec | 118 struct PaneRec |
119 { | 119 { |
120 Pane *pane; | 120 Pane *pane; |
121 QWidget *propertyStack; | 121 QWidget *propertyStack; |
122 QPushButton *xButton; | 122 QPushButton *xButton; |
123 QLabel *currentIndicator; | 123 QLabel *currentIndicator; |
124 QFrame *frame; | 124 QFrame *frame; |
125 QGridLayout *layout; | 125 QGridLayout *layout; |
126 AlignmentView *alignmentView; | 126 AlignmentView *alignmentView; |
127 }; | 127 }; |
128 | 128 |