umbrello 2.34.70-5524f40e1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
messagewidgetpropertiesdialog.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-2.0-or-later
3 SPDX-FileCopyrightText: 2018-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4*/
5
6#ifndef MESSAGEWIDGETPROPERTIESDIALOG_H
7#define MESSAGEWIDGETPROPERTIESDIALOG_H
8
10
11class MessageWidget;
12
19{
20 Q_OBJECT
21public:
22 MessageWidgetPropertiesDialog(QWidget *parent, MessageWidget *widget);
24
25protected:
26 void setupPages();
27
28protected slots:
29 void slotOk();
30 void slotApply();
31
32private:
34
35};
36
37#endif
Definition: messagewidgetpropertiesdialog.h:19
MessageWidget * m_widget
Definition: messagewidgetpropertiesdialog.h:33
~MessageWidgetPropertiesDialog()
Definition: messagewidgetpropertiesdialog.cpp:31
void slotOk()
Definition: messagewidgetpropertiesdialog.cpp:35
void setupPages()
Definition: messagewidgetpropertiesdialog.cpp:49
void slotApply()
Definition: messagewidgetpropertiesdialog.cpp:41
MessageWidgetPropertiesDialog(QWidget *parent, MessageWidget *widget)
Definition: messagewidgetpropertiesdialog.cpp:18
Displays a message.
Definition: messagewidget.h:36
Definition: multipagedialogbase.h:47