QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
src
gui
qgshighlightablelineedit.cpp
Go to the documentation of this file.
1
/***************************************************************************
2
qgshighlightablelineedit.h
3
-------------------------
4
Date : March 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
***************************************************************************/
15
16
17
#include "
qgshighlightablelineedit.h
"
18
#include <QPainter>
19
20
QgsHighlightableLineEdit::QgsHighlightableLineEdit
( QWidget *parent )
21
:
QgsFilterLineEdit
( parent )
22
{}
23
24
void
QgsHighlightableLineEdit::paintEvent
( QPaintEvent *e )
25
{
26
QgsFilterLineEdit::paintEvent( e );
27
if
( mHighlight )
28
{
29
QPainter p(
this
);
30
const
int
width = 2;
// width of highlight rectangle inside frame
31
p.setPen( QPen( palette().highlight(), width ) );
32
const
QRect r = rect().adjusted( width, width, -width, -width );
33
p.drawRect( r );
34
}
35
}
36
37
void
QgsHighlightableLineEdit::setHighlighted
(
bool
highlighted )
38
{
39
mHighlight = highlighted;
40
update();
41
}
QgsFilterLineEdit
QLineEdit subclass with built in support for clearing the widget's value and handling custom null val...
Definition:
qgsfilterlineedit.h:39
QgsHighlightableLineEdit::QgsHighlightableLineEdit
QgsHighlightableLineEdit(QWidget *parent=nullptr)
Constructor for QgsHighlightableLineEdit, with the specified parent widget.
Definition:
qgshighlightablelineedit.cpp:20
qgshighlightablelineedit.h
QgsHighlightableLineEdit::paintEvent
void paintEvent(QPaintEvent *e) override
Definition:
qgshighlightablelineedit.cpp:24
QgsHighlightableLineEdit::setHighlighted
void setHighlighted(bool highlighted)
Sets whether the line edit is currently highlighted.
Definition:
qgshighlightablelineedit.cpp:37
Generated on Sun Sep 11 2022 00:03:17 for QGIS API Documentation by
1.8.17