QGIS API Documentation  3.4.15-Madeira (e83d02e274)
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.h"
26 #include "qgssettings.h"
27 #include "qgis_gui.h"
28 
29 class QMouseEvent;
30 class QToolButton;
31 class QScrollArea;
32 
37 class 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 
71 class 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 
134  protected:
135  void init();
136 
138  void collapseExpandFixes();
139 
140  void showEvent( QShowEvent *event ) override;
141  void mousePressEvent( QMouseEvent *event ) override;
142  void mouseReleaseEvent( QMouseEvent *event ) override;
143  void changeEvent( QEvent *event ) override;
144 
145  void updateStyle();
146  QRect titleRect() const;
147  void clearModifiers();
148 
150  bool mInitFlat;
153  bool mShown;
154  QScrollArea *mParentScrollArea = nullptr;
155  QgsGroupBoxCollapseButton *mCollapseButton = nullptr;
156  QWidget *mSyncParent = nullptr;
157  QString mSyncGroup;
158  bool mAltDown;
161 
163  QIcon mExpandIcon;
164 };
165 
179 {
180  Q_OBJECT
181 
185  Q_PROPERTY( bool saveCollapsedState READ saveCollapsedState WRITE setSaveCollapsedState )
186 
187 
190  Q_PROPERTY( bool saveCheckedState READ saveCheckedState WRITE setSaveCheckedState )
191 
192  public:
193  QgsCollapsibleGroupBox( QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsSettings *settings = nullptr );
194  QgsCollapsibleGroupBox( const QString &title, QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsSettings *settings = nullptr );
195  ~QgsCollapsibleGroupBox() override;
196 
197  // set custom QgsSettings pointer if group box was already created from QtDesigner promotion
198  void setSettings( QgsSettings *settings );
199 
201  void setSaveCollapsedState( bool save ) { mSaveCollapsedState = save; }
202 
207  void setSaveCheckedState( bool save ) { mSaveCheckedState = save; }
208  bool saveCollapsedState() { return mSaveCollapsedState; }
209  bool saveCheckedState() { return mSaveCheckedState; }
210 
212  void setSettingGroup( const QString &group ) { mSettingGroup = group; }
214  QString settingGroup() const { return mSettingGroup; }
215 
216  protected slots:
217 
225  void loadState();
226 
234  void saveState() const;
235 
236  protected:
237  void init();
238  void showEvent( QShowEvent *event ) override;
239  QString saveKey() const;
240 
241  // pointer to app or custom, external QgsSettings
242  // QPointer in case custom settings obj gets deleted while groupbox's dialog is open
243  QPointer<QgsSettings> mSettings;
245 
248  QString mSettingGroup;
249 };
250 
251 #endif
QgsGroupBoxCollapseButton(QWidget *parent=nullptr)
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:46
QString settingGroup() const
Returns the name of the setting group in which the collapsed state will be saved. ...
This class is a composition of two QSettings instances:
Definition: qgssettings.h:58
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 setScrollOnExpand(bool scroll)
Sets this to false to not automatically scroll parent QScrollArea to this widget&#39;s contents when expa...
void showEvent(QShowEvent *event) override
void setShiftDown(bool shiftdown)
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&#39;s co...
void setSettingGroup(const QString &group)
Sets this to a defined string to share save/restore states across different parent dialogs...
QPointer< QgsSettings > mSettings
QString syncGroup() const
Named group which synchronizes collapsing action when triangle is clicked while holding alt modifier ...