We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2cb3b8 commit 32824e2Copy full SHA for 32824e2
src/app/qgslabelpreview.h
100644
100755
@@ -12,12 +12,16 @@ class QgsLabelPreview : public QLabel
12
13
void setBuffer( double size, QColor color );
14
15
+ void setFont( QFont f ) { mFont = f; }
16
+ QFont font() { return mFont; }
17
+
18
void paintEvent( QPaintEvent* e );
19
20
private:
21
int mBufferSize;
22
QColor mBufferColor;
23
QColor mTextColor;
24
+ QFont mFont;
25
};
26
27
#endif // LABELPREVIEW_H
0 commit comments