summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codeblock.h')
-rw-r--r--umbrello/umbrello/codeblock.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/umbrello/umbrello/codeblock.h b/umbrello/umbrello/codeblock.h
new file mode 100644
index 00000000..c01b6c9f
--- /dev/null
+++ b/umbrello/umbrello/codeblock.h
@@ -0,0 +1,121 @@
+/***************************************************************************
+ * *
+ * 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) 2004-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+/* This code generated by:
+ * Author : thomas
+ * Date : Wed Jun 18 2003
+ */
+
+
+
+#ifndef CODEBLOCK_H
+#define CODEBLOCK_H
+
+
+#include "textblock.h"
+
+class HierarchicalCodeBlock;
+
+
+/**
+ * class CodeBlock
+ * A "chunk" of code within the code document.
+ */
+
+class CodeBlock : public TextBlock
+{
+ Q_OBJECT
+public:
+
+ enum ContentType {AutoGenerated=0, UserGenerated };
+
+ // Constructors/Destructors
+ //
+
+ /** constructor with QString so we can create & populate it in
+ * one step.
+ */
+ explicit CodeBlock ( CodeDocument * parent, const QString & body = "");
+ explicit CodeBlock ( HierarchicalCodeBlock * parent, const QString & body = "" );
+
+ /**
+ * Empty Destructor
+ */
+ virtual ~CodeBlock ( );
+
+ // Public attributes
+ //
+
+
+ // Public attribute accessor methods
+ //
+
+ /**
+ * Set the value of m_contentType
+ * specifies whether the content (text) of this object was generated by the code
+ * generator or was supplied by the user.
+ * @param new_var the new value of m_contentType
+ */
+ void setContentType ( ContentType new_var );
+
+ /**
+ * Get the value of m_contentType
+ * specifies whether the content (text) of this object was generated by the code
+ * generator or was supplied by the user.
+ * @return the value of m_contentType
+ */
+ ContentType getContentType ( );
+
+ /**
+ * Get the value of m_dialog
+ * @return the value of m_dialog
+ */
+ // CodeBlockDialog getDialog ( );
+
+ /**
+ * Save the XMI representation of this object
+ */
+ virtual void saveToXMI ( QDomDocument & doc, QDomElement & root );
+
+ /**
+ * load params from the appropriate XMI element node.
+ */
+ virtual void loadFromXMI ( QDomElement & root );
+
+ /** set the class attributes from a passed object
+ */
+ virtual void setAttributesFromObject (TextBlock * obj);
+
+protected:
+
+ /** set attributes of the node that represents this class
+ * in the XMI document.
+ */
+ virtual void setAttributesOnNode ( QDomDocument & doc, QDomElement & blockElement);
+
+ /** set the class attributes of this object from
+ * the passed element node.
+ */
+ virtual void setAttributesFromNode ( QDomElement & element);
+
+private:
+
+ // CodeBlockDialog * m_dialog;
+
+ // specifies whether the content (text) of this object
+ // was generated by the code generator or was supplied by the user (or some other way).
+ ContentType m_contentType;
+
+ void initFields ( );
+
+};
+
+#endif // CODEBLOCK_H