QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsblendmodecombobox.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsblendmodecombobox.h
3 ------------------------
4 begin : March 21, 2013
5 copyright : (C) 2013 by Nyall Dawson
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 QGSBLENDMODECOMBOBOX_H
19#define QGSBLENDMODECOMBOBOX_H
20
21#include <QComboBox>
22#include "qgis_sip.h"
23#include <QPainter> // For QPainter::CompositionMode enum
24#include "qgis_gui.h"
25
30class GUI_EXPORT QgsBlendModeComboBox : public QComboBox
31{
32 Q_OBJECT
33 public:
34
36 QgsBlendModeComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
37
42 QPainter::CompositionMode blendMode();
43
48 void setBlendMode( QPainter::CompositionMode blendMode );
49
61 void setShowClippingModes( bool show );
62
73 bool showClippingModes() const;
74
75 private:
76
77 bool mShowClipModes = false;
78
79 public slots:
80
85 void updateModes();
86
87};
88
89#endif // QGSBLENDMODECOMBOBOX_H
A combobox which lets the user select blend modes from a predefined list.
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53