QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgscollapsiblegroupbox.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscollapsiblegroupbox.h
3 -------------------
4 begin : August 2012
5 copyright : (C) 2012 by Etienne Tourigny
6 email : etourigny dot dev at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef QGSCOLLAPSIBLEGROUPBOX_H
19#define QGSCOLLAPSIBLEGROUPBOX_H
20
21#include <QGroupBox>
22#include <QPointer>
23#include <QToolButton>
24
25#include "qgis_sip.h"
26#include "qgssettings.h"
27#include "qgis_gui.h"
28
29class QMouseEvent;
30class QToolButton;
31class QScrollArea;
32
37class GUI_EXPORT QgsGroupBoxCollapseButton : public QToolButton
38{
39 Q_OBJECT
40
41 public:
42 QgsGroupBoxCollapseButton( QWidget *parent SIP_TRANSFERTHIS = nullptr )
43 : QToolButton( parent )
44 {}
45
46 bool altDown() const { return mAltDown; }
47 void setAltDown( bool updown ) { mAltDown = updown; }
48
49 bool shiftDown() const { return mShiftDown; }
50 void setShiftDown( bool shiftdown ) { mShiftDown = shiftdown; }
51
52 protected:
53 void mouseReleaseEvent( QMouseEvent *event ) override;
54
55 private:
56 bool mAltDown = false;
57 bool mShiftDown = false;
58};
59
71class GUI_EXPORT QgsCollapsibleGroupBoxBasic : public QGroupBox
72{
73 Q_OBJECT
74
79 Q_PROPERTY( bool collapsed READ isCollapsed WRITE setCollapsed USER true )
80
81
85 Q_PROPERTY( QString syncGroup READ syncGroup WRITE setSyncGroup )
86
91 Q_PROPERTY( bool scrollOnExpand READ scrollOnExpand WRITE setScrollOnExpand )
92
93 public:
94 QgsCollapsibleGroupBoxBasic( QWidget *parent SIP_TRANSFERTHIS = nullptr );
95 QgsCollapsibleGroupBoxBasic( const QString &title, QWidget *parent SIP_TRANSFERTHIS = nullptr );
96
100 bool isCollapsed() const { return mCollapsed; }
101
107 void setCollapsed( bool collapse );
108
112 QString syncGroup() const { return mSyncGroup; }
113
117 void setSyncGroup( const QString &grp );
118
120 void setScrollOnExpand( bool scroll ) { mScrollOnExpand = scroll; }
121
123 bool scrollOnExpand() { return mScrollOnExpand; }
124
125 signals:
127 void collapsedStateChanged( bool collapsed );
128
129 public slots:
130 void checkToggled( bool ckd );
131 void checkClicked( bool ckd );
132 void toggleCollapsed();
133
139 void setStyleSheet( const QString &style );
140
141 protected:
143 void collapseExpandFixes();
144
145 void showEvent( QShowEvent *event ) override;
146 void mousePressEvent( QMouseEvent *event ) override;
147 void mouseReleaseEvent( QMouseEvent *event ) override;
148 void changeEvent( QEvent *event ) override;
149
150 void updateStyle();
151 QRect titleRect() const;
152 void clearModifiers();
153
158 bool mShown;
159 QScrollArea *mParentScrollArea = nullptr;
160 QgsGroupBoxCollapseButton *mCollapseButton = nullptr;
161 QWidget *mSyncParent = nullptr;
162 QString mSyncGroup;
166
169
170 private:
171 void init();
172};
173
187{
188 Q_OBJECT
189
193 Q_PROPERTY( bool saveCollapsedState READ saveCollapsedState WRITE setSaveCollapsedState )
194
195
198 Q_PROPERTY( bool saveCheckedState READ saveCheckedState WRITE setSaveCheckedState )
199
200 public:
201 QgsCollapsibleGroupBox( QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsSettings *settings = nullptr );
202 QgsCollapsibleGroupBox( const QString &title, QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsSettings *settings = nullptr );
203 ~QgsCollapsibleGroupBox() override;
204
205 // set custom QgsSettings pointer if group box was already created from QtDesigner promotion
206 void setSettings( QgsSettings *settings );
207
209 void setSaveCollapsedState( bool save ) { mSaveCollapsedState = save; }
210
216 void setSaveCheckedState( bool save ) { mSaveCheckedState = save; }
217 bool saveCollapsedState() { return mSaveCollapsedState; }
218 bool saveCheckedState() { return mSaveCheckedState; }
219
221 void setSettingGroup( const QString &group ) { mSettingGroup = group; }
223 QString settingGroup() const { return mSettingGroup; }
224
225 protected slots:
226
235 void loadState();
236
245 void saveState() const;
246
247 protected:
248 void showEvent( QShowEvent *event ) override;
249 QString saveKey() const;
250
251 private:
252 void init();
253
254 // pointer to app or custom, external QgsSettings
255 // QPointer in case custom settings obj gets deleted while groupbox's dialog is open
256 QPointer<QgsSettings> mSettings;
257 bool mDelSettings;
258
259 bool mSaveCollapsedState;
260 bool mSaveCheckedState;
261 QString mSettingGroup;
262};
263
264#endif
A groupbox that collapses/expands when toggled.
bool scrollOnExpand()
If this is set to false the parent QScrollArea will not be automatically scrolled to this widget's co...
void setScrollOnExpand(bool scroll)
Sets this to false to not automatically scroll parent QScrollArea to this widget's contents when expa...
QString syncGroup() const
Named group which synchronizes collapsing action when triangle is clicked while holding alt modifier ...
void collapsedStateChanged(bool collapsed)
Signal emitted when groupbox collapsed/expanded state is changed, and when first shown.
A groupbox that collapses/expands when toggled and can save its collapsed and checked states.
void setSaveCheckedState(bool save)
Set this to true to save/restore checked state.
void setSettingGroup(const QString &group)
Sets this to a defined string to share save/restore states across different parent dialogs.
QString settingGroup() const
Returns the name of the setting group in which the collapsed state will be saved.
void setShiftDown(bool shiftdown)
QgsGroupBoxCollapseButton(QWidget *parent=nullptr)
This class is a composition of two QSettings instances:
Definition qgssettings.h:64
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53