umbrello  2.31.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
cmdremovewidget.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 CMDREMOVEWIDGET_H
12 #define CMDREMOVEWIDGET_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 CmdRemoveWidget(UMLWidget* widget);
29 
30  void redo();
31  void undo();
32 
33  private:
34  QDomElement m_element;
35  QList<QDomElement> m_children;
36  };
37 }
38 
39 #endif
QDomElement m_element
Definition: cmdremovewidget.h:34
QList< QDomElement > m_children
Definition: cmdremovewidget.h:35
This class represents an association inside a diagram. Bugs and comments to umbrello-devel@kde.org or https://bugs.kde.org.
Definition: associationwidget.h:51
void undo()
Definition: cmdremovewidget.cpp:79
Definition: basictypes.cpp:36
UMLWidget * widget()
Definition: cmdbasewidgetcommand.cpp:76
void redo()
Definition: cmdremovewidget.cpp:68
~CmdRemoveWidget()
Definition: cmdremovewidget.cpp:61
CmdRemoveWidget(UMLWidget *widget)
Definition: cmdremovewidget.cpp:26
Definition: cmdbasewidgetcommand.h:25
Definition: cmdremovewidget.h:23
The base class for graphical UML objects.
Definition: umlwidget.h:40