QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
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
25{
26 return mColors.value( role );
27}
28
30{
31 mColors[role] = color;
32}
33
34void QgsCodeEditorColorScheme::setColors( const QMap<QgsCodeEditorColorScheme::ColorRole, QColor> &colors )
35{
36 mColors = colors;
37}
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.