QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
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#include "moc_qgseffectdrawmodecombobox.cpp"
18#include "qgsapplication.h"
19
20#include <QList>
21#include <QPair>
22
24 : QComboBox( parent )
25{
26 QList < QPair<QgsPaintEffect::DrawMode, QString> > modes;
27 modes << qMakePair( QgsPaintEffect::Render, tr( "Render only" ) )
28 << qMakePair( QgsPaintEffect::Modifier, tr( "Modifier only" ) )
29 << qMakePair( QgsPaintEffect::ModifyAndRender, tr( "Render and modify" ) );
30
31 for ( int i = 0; i < modes.count(); i++ )
32 {
33 const QgsPaintEffect::DrawMode mode = modes.at( i ).first;
34 const QString name = modes.at( i ).second;
35 addItem( name, QVariant( ( int ) mode ) );
36 }
37}
38
43
45{
46 const int idx = findData( QVariant( ( int ) drawMode ) );
47 setCurrentIndex( idx == -1 ? 0 : idx );
48}
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.