summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeblock.cpp
blob: e95a728c77b63d9ea591cffc84581d37f05a7759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

/*  This code generated by:
 *      Author : thomas
 *      Date   : Wed Jun 18 2003
 */

#include "codeblock.h"
#include "codedocument.h"

#include "hierarchicalcodeblock.h"

// Constructors/Destructors
//

CodeBlock::CodeBlock ( HierarchicalCodeBlock * hblock , const TQString & body )
        : TextBlock ( hblock->getParentDocument(), body )
{
    initFields ( );
}

CodeBlock::CodeBlock ( CodeDocument * doc, const TQString & body )
        : TextBlock ( doc, body )
{
    initFields( );
}

CodeBlock::~CodeBlock ( ) { }

//
// Methods
//


// Accessor methods
//


// 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 CodeBlock::setContentType ( ContentType new_var ) {
    m_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
 */
CodeBlock::ContentType CodeBlock::getContentType ( ) {
    return m_contentType;
}

/**
 * Get the value of m_dialog
 * @return the value of m_dialog
 */
/*
CodeBlockDialog * CodeBlock::getDialog ( ) {
    return m_dialog;
}
*/

// Other methods
//

/**
 * Save the XMI representation of this object
 */
void CodeBlock::saveToXMI ( TQDomDocument & doc, TQDomElement & root ) {
    TQDomElement blockElement = doc.createElement( "codeblock" );

    // set attributes
    setAttributesOnNode(doc, blockElement);

    root.appendChild( blockElement );
}

void CodeBlock::setAttributesOnNode( TQDomDocument & doc, TQDomElement & blockElement)
{

    // call super-class
    TextBlock::setAttributesOnNode(doc, blockElement);

    // local attributes
    if(m_contentType != AutoGenerated)
        blockElement.setAttribute("contentType",getContentType());

}

/**
 * load params from the appropriate XMI element node.
 */
void CodeBlock::loadFromXMI ( TQDomElement & root ) {

    setAttributesFromNode(root);

}

void CodeBlock::setAttributesFromNode (TQDomElement & elem) {

    // set attributes from the XMI in super-class
    TextBlock::setAttributesFromNode(elem);

    // set local fields now
    setContentType(((ContentType) elem.attribute("contentType","0").toInt()));

}

void CodeBlock::setAttributesFromObject(TextBlock * obj)
{

    TextBlock::setAttributesFromObject(obj);

    CodeBlock * cb = dynamic_cast<CodeBlock*>(obj);
    if(cb)
        setContentType(cb->getContentType());

}

void CodeBlock::initFields ( ) {
    m_contentType = AutoGenerated;
    //  m_dialog = new CodeBlockDialog( );
}

#include "codeblock.moc"