QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgscolordialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscolordialog.h - color selection dialog
3
4 ---------------------
5 begin : March 19, 2013
6 copyright : (C) 2013 by Larry Shaffer
7 email : larrys at dakcarto dot com
8 ***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#ifndef QGSCOLORDIALOG_H
18#define QGSCOLORDIALOG_H
19
20#include "ui_qgscolordialog.h"
21
22#include "qgis_gui.h"
23#include "qgis_sip.h"
24#include "qgsguiutils.h"
25
26#include <QColorDialog>
27
28class QColor;
29
38
39class GUI_EXPORT QgsColorDialog : public QDialog, private Ui::QgsColorDialogBase
40{
41 Q_OBJECT
42
43 public:
44
51 QgsColorDialog( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags, const QColor &color = QColor() );
52
57 QColor color() const;
58
63 void setTitle( const QString &title );
64
70 void setAllowOpacity( bool allowOpacity );
71
80 static QColor getColor( const QColor &initialColor, QWidget *parent, const QString &title = QString(), bool allowOpacity = false );
81
82 signals:
83
88 void currentColorChanged( const QColor &color );
89
90 public slots:
91
96 void setColor( const QColor &color );
97
98 protected:
99 void closeEvent( QCloseEvent *e ) override;
100
101 private slots:
102
103 void mButtonBox_accepted();
104 void mButtonBox_rejected();
105 void mButtonBox_clicked( QAbstractButton *button );
106 void discardColor();
107 void showHelp();
108
109 private:
110 QColor mPreviousColor;
111
112 bool mAllowOpacity = true;
113};
114
115#endif // #ifndef QGSCOLORDIALOG_H
QColor color() const
Returns the current color for the dialog.
void setColor(const QColor &color)
Sets the current color for the dialog.
void currentColorChanged(const QColor &color)
Emitted when the dialog's color changes.
void setAllowOpacity(bool allowOpacity)
Sets whether opacity modification (transparency) is permitted for the color dialog.
void closeEvent(QCloseEvent *e) override
static QColor getColor(const QColor &initialColor, QWidget *parent, const QString &title=QString(), bool allowOpacity=false)
Returns a color selection from a color dialog.
QgsColorDialog(QWidget *parent=nullptr, Qt::WindowFlags fl=QgsGuiUtils::ModalDialogFlags, const QColor &color=QColor())
Create a new color picker dialog.
void setTitle(const QString &title)
Sets the title for the color dialog.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53