-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathQGVWidgetText.cpp
More file actions
49 lines (43 loc) · 1.58 KB
/
Copy pathQGVWidgetText.cpp
File metadata and controls
49 lines (43 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/***************************************************************************
* QGeoView is a Qt / C ++ widget for visualizing geographic data.
* Copyright (C) 2018-2025 Andrey Yaroshenko.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see https://www.gnu.org/licenses.
****************************************************************************/
#include "QGVWidgetText.h"
#include <QHBoxLayout>
QGVWidgetText::QGVWidgetText()
{
mLabel.reset(new QLabel());
mLabel->setText("");
setAttribute(Qt::WA_TransparentForMouseEvents, true);
setAnchor(QPoint(10, 10), { Qt::LeftEdge, Qt::BottomEdge });
setLayout(new QHBoxLayout(this));
layout()->setSpacing(0);
layout()->setSizeConstraint(QLayout::SetMinimumSize);
layout()->setContentsMargins(0, 0, 0, 0);
layout()->addWidget(mLabel.data());
}
QLabel* QGVWidgetText::label()
{
return mLabel.data();
}
void QGVWidgetText::setText(const QString& text)
{
mLabel->setText(text);
}
QString QGVWidgetText::getText() const
{
return mLabel->text();
}