Eventviews

todoviewquickaddline.h
1/*
2 This file is part of KOrganizer.
3
4 SPDX-FileCopyrightText: 2008 Thomas Thrainer <tom_t@gmx.at>
5
6 SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
7*/
8
9#pragma once
10
11#include <KLineEdit>
12
13class TodoViewQuickAddLine : public KLineEdit
14{
16
17public:
18 explicit TodoViewQuickAddLine(QWidget *parent);
19 ~TodoViewQuickAddLine() override = default;
20
21protected:
22 void keyPressEvent(QKeyEvent *event) override;
23 void resizeEvent(QResizeEvent *event) override;
24
27
28private:
29 void returnPressedSlot();
30 Qt::KeyboardModifiers mModifiers;
31 const QString mClickMessage;
32};
bool event(QEvent *) override
void returnPressed()
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
typedef KeyboardModifiers
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Oct 4 2024 11:58:03 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.