summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/attribute.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbd9e6617827818fd043452c08c606f07b78014a0 (patch)
tree425bb4c3168f9c02f10150f235d2cb998dcc6108 /umbrello/umbrello/attribute.h
downloadtdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz
tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'umbrello/umbrello/attribute.h')
-rw-r--r--umbrello/umbrello/attribute.h157
1 files changed, 157 insertions, 0 deletions
diff --git a/umbrello/umbrello/attribute.h b/umbrello/umbrello/attribute.h
new file mode 100644
index 00000000..85253216
--- /dev/null
+++ b/umbrello/umbrello/attribute.h
@@ -0,0 +1,157 @@
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * copyright (C) 2002-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+#ifndef ATTRIBUTE_H
+#define ATTRIBUTE_H
+
+#include "classifierlistitem.h"
+#include "umlnamespace.h"
+#include "umlclassifierlist.h"
+
+/**
+ * This class is used to set up information for an attribute. This is like
+ * a programming attribute. It has a type, name, visibility and initial value.
+ *
+ * @short Sets up attribute information.
+ * @author Paul Hensgen <phensgen@techie.com>
+ * @see UMLObject
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ */
+class UMLAttribute : public UMLClassifierListItem {
+ Q_OBJECT
+public:
+ /**
+ * Sets up an attribute.
+ *
+ * @param parent The parent of this UMLAttribute.
+ * @param name The name of this UMLAttribute.
+ * @param id The unique id given to this UMLAttribute.
+ * @param s The visibility of the UMLAttribute.
+ * @param type The type of this UMLAttribute.
+ * @param iv The initial value of the attribute.
+ */
+ UMLAttribute(const UMLObject *parent, const QString& name,
+ Uml::IDType id = Uml::id_None,
+ Uml::Visibility s = Uml::Visibility::Private,
+ UMLObject *type = 0, const QString& iv = 0);
+
+ /**
+ * Sets up an attribute.
+ *
+ * @param parent The parent of this UMLAttribute.
+ */
+ UMLAttribute(const UMLObject *parent);
+
+ /**
+ * Overloaded '==' operator
+ */
+ bool operator==( UMLAttribute &rhs);
+
+ /**
+ * destructor.
+ */
+ virtual ~UMLAttribute();
+
+ /**
+ * Copy the internal presentation of this object into the UMLAttribute
+ * object.
+ */
+ virtual void copyInto(UMLAttribute *rhs) const;
+
+ /**
+ * Reimplementation of method from UMLObject is required as
+ * an extra signal, attributeChanged(), is emitted.
+ */
+ void setName(const QString &name);
+
+ /**
+ * Reimplementation of method from UMLObject is required as
+ * an extra signal, attributeChanged(), is emitted.
+ */
+ void setVisibility(Uml::Visibility s);
+
+ /**
+ * Make a clone of the UMLAttribute.
+ */
+ virtual UMLObject* clone() const;
+
+ /**
+ * Returns The initial value of the UMLAttribute.
+ *
+ * @return The initial value of the Atrtibute.
+ */
+ QString getInitialValue();
+
+ /**
+ * Sets the initial value of the UMLAttribute.
+ *
+ * @param iv The initial value of the UMLAttribute.
+ */
+ void setInitialValue( const QString &iv );
+
+ /**
+ * Returns a string representation of the UMLAttribute.
+ *
+ * @param sig If true will show the attribute type and
+ * initial value.
+ * @return Returns a string representation of the UMLAttribute.
+ */
+ QString toString(Uml::Signature_Type sig = Uml::st_NoSig);
+
+ /**
+ * Reimplement method from UMLObject.
+ */
+ QString getFullyQualifiedName(const QString& separator = QString::null,
+ bool includeRoot = false) const;
+
+ /**
+ * Creates the <UML:Attribute> XMI element.
+ */
+ void saveToXMI( QDomDocument & qDoc, QDomElement & qElement );
+
+ /**
+ * Display the properties configuration dialog for the attribute.
+ */
+ virtual bool showPropertiesDialog(QWidget* parent);
+
+ void setParmKind (Uml::Parameter_Direction pk);
+ Uml::Parameter_Direction getParmKind () const;
+
+ /**
+ * Returns all the template params (if any) that are in the type of this attribute
+ */
+ virtual UMLClassifierList getTemplateParams();
+
+signals:
+ /**
+ * Required for informing AssociationWidgets representing this attribute
+ * that the attribute name or visibility has changed.
+ */
+ void attributeChanged();
+
+protected:
+ /**
+ * Loads the <UML:Attribute> XMI element.
+ */
+ bool load( QDomElement & element );
+
+ QString m_InitialValue; ///< text for the attribute's initial value.
+ Uml::Parameter_Direction m_ParmKind;
+
+private:
+ /**
+ * Puts in the param templateParamList all the template params that are in templateParam
+ */
+ void setTemplateParams(const QString& templateParam, UMLClassifierList &templateParamList);
+
+};
+
+#endif