QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
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
6  email : [email protected]
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 
30 class GUI_EXPORT QgsBlendModeComboBox : public QComboBox
31 {
32  Q_OBJECT
33  public:
34 
36  QgsBlendModeComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
37 
39  QPainter::CompositionMode blendMode();
41  void setBlendMode( QPainter::CompositionMode blendMode );
42  private:
43 
50  QStringList blendModesList() const;
51 
53  // index within the combo box
54  std::vector<int> mBlendModeToListIndex;
55  std::vector<int> mListIndexToBlendMode;
56 
57  public slots:
58 
63  void updateModes();
64 
65 };
66 
67 #endif // QGSBLENDMODECOMBOBOX_H
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
A combobox which lets the user select blend modes from a predefined list.