From bd9e6617827818fd043452c08c606f07b78014a0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- .../umbrello/codegenerators/cppcodecomment.cpp | 98 ++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 umbrello/umbrello/codegenerators/cppcodecomment.cpp (limited to 'umbrello/umbrello/codegenerators/cppcodecomment.cpp') diff --git a/umbrello/umbrello/codegenerators/cppcodecomment.cpp b/umbrello/umbrello/codegenerators/cppcodecomment.cpp new file mode 100644 index 00000000..8d480e93 --- /dev/null +++ b/umbrello/umbrello/codegenerators/cppcodecomment.cpp @@ -0,0 +1,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 * + ***************************************************************************/ + +/* This code generated by: + * Author : thomas + * Date : Mon Sep 1 2003 + */ + +// own header +#include "cppcodecomment.h" + +// qt/kde includes +#include + +// Constructors/Destructors +// + +CPPCodeComment::CPPCodeComment ( CodeDocument * doc, const QString & 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 ( QDomDocument & doc, QDomElement & root ) { + QDomElement 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 QString + */ +QString CPPCodeComment::toString ( ) +{ + + QString output = ""; + + // simple output method + if(getWriteOutText()) + { + QString indent = getIndentationString(); + QString endLine = getNewLineEndingChars(); + output.append(formatMultiLineText (getText()+endLine, indent +"// ", endLine)); + } + + return output; +} + +QString CPPCodeComment::getNewEditorLine ( int amount ) { + QString line = getIndentationString(amount) + "// "; + return line; +} + +/** UnFormat a long text string. Typically, this means removing + * the indentaion (linePrefix) and/or newline chars from each line. + */ +QString CPPCodeComment::unformatText ( const QString & text , const QString & indent) +{ + + // remove leading or trailing comment stuff + QString mytext = TextBlock::unformatText(text, indent); + + // now leading slashes + mytext.remove(QRegExp("^\\/\\/\\s*")); + return mytext; +} + +#include "cppcodecomment.moc" -- cgit v1.2.3