QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgseffectdrawmodecombobox.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgseffectdrawmodecombobox.cpp
3 -----------------------------
4 begin : March 2015
5 copyright : (C) 2015 by 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
17
18#include "qgsapplication.h"
19
20#include <QList>
21#include <QPair>
22
23#include "moc_qgseffectdrawmodecombobox.cpp"
24
26 : QComboBox( parent )
27{
28 QList<QPair<QgsPaintEffect::DrawMode, QString>> modes;
29 modes << qMakePair( QgsPaintEffect::Render, tr( "Render only" ) )
30 << qMakePair( QgsPaintEffect::Modifier, tr( "Modifier only" ) )
31 << qMakePair( QgsPaintEffect::ModifyAndRender, tr( "Render and modify" ) );
32
33 for ( int i = 0; i < modes.count(); i++ )
34 {
35 const QgsPaintEffect::DrawMode mode = modes.at( i ).first;
36 const QString name = modes.at( i ).second;
37 addItem( name, QVariant( ( int ) mode ) );
38 }
39}
40
45
47{
48 const int idx = findData( QVariant( ( int ) drawMode ) );
49 setCurrentIndex( idx == -1 ? 0 : idx );
50}
void setDrawMode(QgsPaintEffect::DrawMode drawMode)
Sets the currently selected draw mode for the combo box.
QgsPaintEffect::DrawMode drawMode() const
Returns the currently selected draw mode for the combo box.
QgsEffectDrawModeComboBox(QWidget *parent SIP_TRANSFERTHIS=nullptr)
DrawMode
Drawing modes for effects.
@ Render
The result of the effect is rendered on the destination, but does not affect subsequent effects in th...
@ Modifier
The result of the effect is not rendered, but is passed on to following effects in the stack.
@ ModifyAndRender
The result of the effect is both rendered and passed on to subsequent effects in the stack.