umbrello 2.34.70-5524f40e1
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 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 NOTEPAGE_H
7#define NOTEPAGE_H
8
9#include "dialogpagebase.h"
10
12class NoteWidget;
13
19{
20 Q_OBJECT
21public:
22 NotePage(QWidget *parent, NoteWidget *note);
23 ~NotePage();
24
25 bool apply();
26
27protected:
30};
31
32#endif
Definition: dialogpagebase.h:20
Definition: documentationwidget.h:22
Definition: notepage.h:19
DocumentationWidget * m_docWidget
widget holding the documentation
Definition: notepage.h:28
NotePage(QWidget *parent, NoteWidget *note)
Definition: notepage.cpp:21
~NotePage()
Definition: notepage.cpp:35
NoteWidget * m_noteWidget
note widget to show documentation for
Definition: notepage.h:29
bool apply()
Definition: notepage.cpp:39
Displays a note box.
Definition: notewidget.h:26