umbrello  2.39.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
notedialog.h
Go to the documentation of this file.
1 /*
2  SPDX-License-Identifier: GPL-2.0-or-later
3  SPDX-FileCopyrightText: 2002-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4 */
5 
6 #ifndef NOTEDIALOG_H
7 #define NOTEDIALOG_H
8 
9 #include "multipagedialogbase.h"
10 
11 class NoteWidget;
12 
18 {
19  Q_OBJECT
20 public:
21  NoteDialog(QWidget *parent, NoteWidget *widget);
22 
23  bool apply();
24 
25 public slots:
26  void slotOk();
27  void slotApply();
28 
29 protected:
30  void setupPages();
32 };
33 
34 #endif
Definition: multipagedialogbase.h:47
Definition: notedialog.h:18
void slotOk()
Definition: notedialog.cpp:33
NoteWidget * m_widget
Definition: notedialog.h:31
void slotApply()
Definition: notedialog.cpp:38
bool apply()
Definition: notedialog.cpp:46
NoteDialog(QWidget *parent, NoteWidget *widget)
Definition: notedialog.cpp:16
void setupPages()
Definition: notedialog.cpp:26
Displays a note box.
Definition: notewidget.h:26