You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/codegenerators/cppcodecomment.cpp

99 lines
2.5 KiB

/***************************************************************************
* *
* 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 parent 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"