umbrello  2.32.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
cmdcreatewidget.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) 2002-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef CMDCREATEWIDGET_H
12 #define CMDCREATEWIDGET_H
13 
14 #include "cmdbasewidgetcommand.h"
15 
16 #include <QDomElement>
17 
18 class AssociationWidget;
19 class UMLWidget;
20 
21 namespace Uml
22 {
24  {
25  public:
26  explicit CmdCreateWidget(UMLWidget *widget);
29 
30  void redo();
31  void undo();
32 
33  private:
34  QDomElement m_element;
35  };
36 }
37 
38 #endif
This class represents an association inside a diagram. Bugs and comments to umbrello-devel@kde....
Definition: associationwidget.h:52
The base class for graphical UML objects.
Definition: umlwidget.h:41
Definition: cmdbasewidgetcommand.h:26
UMLWidget * widget()
Definition: cmdbasewidgetcommand.cpp:76
Definition: cmdcreatewidget.h:24
void redo()
Definition: cmdcreatewidget.cpp:88
CmdCreateWidget(UMLWidget *widget)
Definition: cmdcreatewidget.cpp:31
~CmdCreateWidget()
Definition: cmdcreatewidget.cpp:81
void undo()
Definition: cmdcreatewidget.cpp:126
QDomElement m_element
Definition: cmdcreatewidget.h:34
Definition: basictypes.cpp:37