QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgscodeeditorcolorscheme.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgscodeeditorcolorscheme.cpp
3 --------------------------------------
4 Date : October 2020
5 Copyright : (C) 2020 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 ***************************************************************************/
16
17
18QgsCodeEditorColorScheme::QgsCodeEditorColorScheme( const QString &id, const QString &name )
19 : mId( id )
20 , mThemeName( name )
21{
22
23}
24
26{
27 return mColors.value( role );
28}
29
31{
32 mColors[role] = color;
33}
34
35void QgsCodeEditorColorScheme::setColors( const QMap<QgsCodeEditorColorScheme::ColorRole, QColor> &colors )
36{
37 mColors = colors;
38}
void setColor(ColorRole role, const QColor &color)
Sets the color to use in the editor for the specified role.
QColor color(ColorRole role) const
Returns the color to use in the editor for the specified role.
QgsCodeEditorColorScheme(const QString &id=QString(), const QString &name=QString())
Constructor for QgsCodeEditorColorScheme.
void setColors(const QMap< ColorRole, QColor > &colors)
Sets all colors for the scheme.