umbrello  2.31.3
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"
15 #include "umlrole.h"
16 
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: ui_umlrolepropertiesbase.h:186
Definition: dialogpagebase.h:24
Definition: umlroleproperties.h:17
void setupUi(QWidget *UMLRolePropertiesBase)
Definition: ui_umlrolepropertiesbase.h:54
UMLRolePropertiesBase(QWidget *parent)
Definition: umlroleproperties.h:20
Definition: umlroleproperties.h:31
UMLRole * m_pRole
Definition: umlroleproperties.h:54
Definition: umlrole.h:24