umbrello  2.32.0
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
notepage.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 NOTEPAGE_H
12 #define NOTEPAGE_H
13 
14 #include "dialogpagebase.h"
15 
17 class NoteWidget;
18 
23 class NotePage : public DialogPageBase
24 {
25  Q_OBJECT
26 public:
27  NotePage(QWidget *parent, NoteWidget *note);
28  ~NotePage();
29 
30  bool apply();
31 
32 protected:
35 };
36 
37 #endif
Definition: dialogpagebase.h:24
Displays a note box.
Definition: notewidget.h:30
DocumentationWidget * m_docWidget
widget holding the documentation
Definition: notepage.h:33
bool apply()
Definition: notepage.cpp:44
Definition: documentationwidget.h:26
NoteWidget * m_noteWidget
note widget to show documentation for
Definition: notepage.h:34
NotePage(QWidget *parent, NoteWidget *note)
Definition: notepage.cpp:26
~NotePage()
Definition: notepage.cpp:40
Definition: notepage.h:23