QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgspenstylecombobox.h
Go to the documentation of this file.
1/***************************************************************************
2 qgspenstylecombobox.h
3 ---------------------
4 begin : November 2009
5 copyright : (C) 2009 by Martin Dobias
6 email : wonder dot sk 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
16#ifndef QGSPENSTYLECOMBOBOX_H
17#define QGSPENSTYLECOMBOBOX_H
18
19#include <QComboBox>
20#include "qgis_gui.h"
21#include "qgis_sip.h"
22
27class GUI_EXPORT QgsPenStyleComboBox : public QComboBox
28{
29 Q_OBJECT
30
31 public:
32 QgsPenStyleComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
33
34 Qt::PenStyle penStyle() const;
35
36 void setPenStyle( Qt::PenStyle style );
37
38 protected:
39 QIcon iconForPen( Qt::PenStyle style );
40};
41
46class GUI_EXPORT QgsPenJoinStyleComboBox : public QComboBox
47{
48 Q_OBJECT
49
50 public:
51 QgsPenJoinStyleComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
52
53 Qt::PenJoinStyle penJoinStyle() const;
54
55 void setPenJoinStyle( Qt::PenJoinStyle style );
56};
57
62class GUI_EXPORT QgsPenCapStyleComboBox : public QComboBox
63{
64 Q_OBJECT
65
66 public:
67 QgsPenCapStyleComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
68
69 Qt::PenCapStyle penCapStyle() const;
70
71 void setPenCapStyle( Qt::PenCapStyle style );
72};
73
74#endif
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53