summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/cppcodecomment.cpp
blob: dada5357d6afa0a56e07079117289affc74fbffa (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

/***************************************************************************
 *                                                                         *
 *   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-2007                                               *
 *   Umbrello UML Modeller Authors <uml-devel@uml.sf.net>                  *
 ***************************************************************************/

/*  This code generated by:
 *      Author : thomas
 *      Date   : Mon Sep 1 2003
 */

// own header
#include "cppcodecomment.h"

// qt/kde includes
#include <tqregexp.h>

// Constructors/Destructors
//

CPPCodeComment::CPPCodeComment ( CodeDocument * doc, const TQString & text )
        : CodeComment (doc, text)
{

}

CPPCodeComment::~CPPCodeComment ( ) { }

//
// Methods
//


// Accessor methods
//


// Public attribute accessor methods
//

// Other methods
//

/**
 * Save the XMI representation of this object
 */
void CPPCodeComment::saveToXMI ( TQDomDocument & doc, TQDomElement & root ) {
    TQDomElement blockElement = doc.createElement( "cppcodecomment" );
    setAttributesOnNode(doc, blockElement); // as we added no additional fields to this class we may
    // just use tqparent TextBlock method
    root.appendChild( blockElement );
}

/**
 * @return      TQString
 */
TQString CPPCodeComment::toString ( )
{

    TQString output = "";

    // simple output method
    if(getWriteOutText())
    {
        TQString indent = getIndentationString();
        TQString endLine = getNewLineEndingChars();
        output.append(formatMultiLineText (getText()+endLine, indent +"// ", endLine));
    }

    return output;
}

TQString CPPCodeComment::getNewEditorLine ( int amount ) {
    TQString line = getIndentationString(amount) + "// ";
    return line;
}

/** UnFormat a long text string. Typically, this means removing
 *  the indentaion (linePrefix) and/or newline chars from each line.
 */
TQString CPPCodeComment::unformatText ( const TQString & text , const TQString & indent)
{

    // remove leading or trailing comment stuff
    TQString mytext = TextBlock::unformatText(text, indent);

    // now leading slashes
    mytext.remove(TQRegExp("^\\/\\/\\s*"));
    return mytext;
}

#include "cppcodecomment.moc"