QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgslayoutunitscombobox.h
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutunitscombobox.h
3 ------------------------
4 Date : July 2017
5 Copyright : (C) 2017 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15#ifndef QGSLAYOUTUNITSCOMBOBOX_H
16#define QGSLAYOUTUNITSCOMBOBOX_H
17
18#include "qgis_gui.h"
19#include "qgis_sip.h"
20#include "qgsunittypes.h"
21
22#include <QComboBox>
23#include <QDoubleSpinBox>
24#include <QPointer>
25
27
33class GUI_EXPORT QgsLayoutUnitsComboBox : public QComboBox
34{
35 Q_OBJECT
36 Q_PROPERTY( Qgis::LayoutUnit unit READ unit WRITE setUnit NOTIFY changed )
37
38 public:
39
43 QgsLayoutUnitsComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
44
49 Qgis::LayoutUnit unit() const;
50
56
67 void linkToWidget( QDoubleSpinBox *widget );
68
74
82
83 signals:
84
85#ifndef SIP_RUN
86
91#endif
92
96 void changed( int unit );
97
98 private slots:
99
100 void indexChanged( int index );
101
102 private:
103 QgsLayoutMeasurementConverter *mConverter = nullptr;
104
106
107 QList<QPointer<QDoubleSpinBox>> mLinkedSpinBoxes;
108};
109
110#endif // QGSLAYOUTUNITSCOMBOBOX_H
LayoutUnit
Layout measurement units.
Definition qgis.h:5203
@ Millimeters
Millimeters.
Definition qgis.h:5204
Provides a method of converting QgsLayoutMeasurements from one unit to another.
void linkToWidget(QDoubleSpinBox *widget)
Registers a spin box widget as linked with the combo box.
QgsLayoutMeasurementConverter * converter() const
Returns the converter used when automatically converting units for linked widgets.
void unitChanged(Qgis::LayoutUnit unit)
Emitted when the unit is changed.
void setConverter(QgsLayoutMeasurementConverter *converter)
Sets a converter to use when automatically converting units for linked widgets.
void changed(int unit)
Emitted when the unit is changed.
void setUnit(Qgis::LayoutUnit unit)
Sets the unit currently selected in the combo box.
QgsLayoutUnitsComboBox(QWidget *parent=nullptr)
Constructor for QgsLayoutUnitsComboBox.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53