Baloo Widgets

keditcommentdialog.h
1/*
2 SPDX-FileCopyrightText: 2014 Felix Eisele
3
4 SPDX-License-Identifier: LGPL-2.0-only
5*/
6
7#ifndef KEDITCOMMENTDIALOG_H
8#define KEDITCOMMENTDIALOG_H
9
10#include <QDialog>
11
12class QWidget;
13class QTextEdit;
14
15class KEditCommentDialog : public QDialog
16{
18public:
19 KEditCommentDialog(QWidget *parent, const QString &commentText, const QString &captionText);
20 ~KEditCommentDialog() override;
21
22 QString getCommentText() const;
23
24private:
25 QTextEdit *const m_editor;
26};
27
28#endif
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:22 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.