umbrello  2.32.2
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  * 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) 2018-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef MESSAGEWIDGETPROPERTIESDIALOG_H
12 #define MESSAGEWIDGETPROPERTIESDIALOG_H
13 
14 #include "multipagedialogbase.h"
15 
16 class MessageWidget;
17 
24 {
25  Q_OBJECT
26 public:
27  MessageWidgetPropertiesDialog(QWidget *parent, MessageWidget *widget);
29 
30 protected:
31  void setupPages();
32 
33 protected slots:
34  void slotOk();
35  void slotApply();
36 
37 private:
39 
40 };
41 
42 #endif
Definition: messagewidgetpropertiesdialog.h:24
MessageWidget * m_widget
Definition: messagewidgetpropertiesdialog.h:38
~MessageWidgetPropertiesDialog()
Definition: messagewidgetpropertiesdialog.cpp:36
void slotOk()
Definition: messagewidgetpropertiesdialog.cpp:40
void setupPages()
Definition: messagewidgetpropertiesdialog.cpp:54
void slotApply()
Definition: messagewidgetpropertiesdialog.cpp:46
MessageWidgetPropertiesDialog(QWidget *parent, MessageWidget *widget)
Definition: messagewidgetpropertiesdialog.cpp:23
Displays a message.
Definition: messagewidget.h:41
Definition: multipagedialogbase.h:52