umbrello  2.31.90
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  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2002-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef NOTEDIALOG_H
12 #define NOTEDIALOG_H
13 
14 #include "multipagedialogbase.h"
15 
16 class NoteWidget;
17 
23 {
24  Q_OBJECT
25 public:
26  NoteDialog(QWidget *parent, NoteWidget *widget);
27 
28  bool apply();
29 
30 public slots:
31  void slotOk();
32  void slotApply();
33 
34 protected:
35  void setupPages();
37 };
38 
39 #endif
Definition: multipagedialogbase.h:52
Definition: notedialog.h:23
void slotOk()
Definition: notedialog.cpp:38
NoteWidget * m_widget
Definition: notedialog.h:36
void slotApply()
Definition: notedialog.cpp:43
bool apply()
Definition: notedialog.cpp:51
NoteDialog(QWidget *parent, NoteWidget *widget)
Definition: notedialog.cpp:21
void setupPages()
Definition: notedialog.cpp:31
Displays a note box.
Definition: notewidget.h:31