umbrello  2.32.1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umlroleproperties.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) 2003-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 #ifndef UMLROLEPROPERTIES_H
11 #define UMLROLEPROPERTIES_H
12 
13 #include "dialogpagebase.h"
14 #include "ui_umlrolepropertiesbase.h"
15 #include "umlrole.h"
16 
17 class UMLRolePropertiesBase : public DialogPageBase, public Ui::UMLRolePropertiesBase
18 {
19 public:
20  explicit UMLRolePropertiesBase(QWidget *parent) : DialogPageBase(parent) {
21  setupUi(this);
22  }
23 };
24 
32 {
33  Q_OBJECT
34 public:
35 
42  UMLRoleProperties(QWidget *parent, UMLRole *role);
43 
48 
49  void apply();
50 
51 protected:
52 
53  // the parent role object
55 
56 private:
57 
58  void constructWidget();
59 
60 };
61 
62 #endif
Definition: dialogpagebase.h:25
Definition: umlroleproperties.h:18
UMLRolePropertiesBase(QWidget *parent)
Definition: umlroleproperties.h:20
Definition: umlroleproperties.h:32
UMLRoleProperties(QWidget *parent, UMLRole *role)
Definition: umlroleproperties.cpp:17
void apply()
Definition: umlroleproperties.cpp:75
UMLRole * m_pRole
Definition: umlroleproperties.h:54
~UMLRoleProperties()
Definition: umlroleproperties.cpp:24
void constructWidget()
Definition: umlroleproperties.cpp:28
Definition: umlrole.h:25