LibrePCB Developers Documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
slintkeyeventtextbuilder.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_EDITOR_SLINTKEYEVENTTEXTBUILDER_H
21#define LIBREPCB_EDITOR_SLINTKEYEVENTTEXTBUILDER_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27
28#include <slint.h>
29
30/*******************************************************************************
31 * Namespace / Forward Declarations
32 ******************************************************************************/
33namespace librepcb {
34namespace editor {
35
36/*******************************************************************************
37 * Class SlintKeyEventTextBuilder
38 ******************************************************************************/
39
43class SlintKeyEventTextBuilder final : public QObject {
44 Q_OBJECT
45
46public:
47 // Constructors / Destructor
49 explicit SlintKeyEventTextBuilder(QObject* parent = nullptr) noexcept;
50 ~SlintKeyEventTextBuilder() noexcept;
51
52 // General Methods
53 const QString& getText() const noexcept { return mText; }
54 slint::private_api::EventResult process(
55 const slint::private_api::KeyEvent& e) noexcept;
56
57 // Operator Overloadings
59 delete;
60
61signals:
62 void textChanged(QString text);
63
64private:
65 QString mText;
66};
67
68/*******************************************************************************
69 * End of File
70 ******************************************************************************/
71
72} // namespace editor
73} // namespace librepcb
74
75#endif
The SlintKeyEventTextBuilder class.
Definition slintkeyeventtextbuilder.h:43
slint::private_api::EventResult process(const slint::private_api::KeyEvent &e) noexcept
Definition slintkeyeventtextbuilder.cpp:50
QString mText
Definition slintkeyeventtextbuilder.h:65
SlintKeyEventTextBuilder & operator=(const SlintKeyEventTextBuilder &rhs)=delete
const QString & getText() const noexcept
Definition slintkeyeventtextbuilder.h:53
SlintKeyEventTextBuilder(const SlintKeyEventTextBuilder &other)=delete
Definition occmodel.cpp:77