aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/indenter/indenter.h
diff options
context:
space:
mode:
authorRoberto Raggi <[email protected]>2010-08-10 10:49:40 +0200
committerRoberto Raggi <[email protected]>2010-08-10 10:50:00 +0200
commitda5d6d7db275066be85e56a8d2892162a099e98b (patch)
tree9c64cfc2b87cc1060b7cfef5e3772f028fafe783 /src/shared/indenter/indenter.h
parent9df9695a7fdab213f0f564f8fe4cd74c196465fc (diff)
Get rid of the old deprecated indenter.
Diffstat (limited to 'src/shared/indenter/indenter.h')
-rw-r--r--src/shared/indenter/indenter.h147
1 files changed, 0 insertions, 147 deletions
diff --git a/src/shared/indenter/indenter.h b/src/shared/indenter/indenter.h
deleted file mode 100644
index b767d6978be..00000000000
--- a/src/shared/indenter/indenter.h
+++ /dev/null
@@ -1,147 +0,0 @@
-/**************************************************************************
-**
-** This file is part of Qt Creator
-**
-** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
-**
-** Contact: Nokia Corporation ([email protected])
-**
-** Commercial Usage
-**
-** Licensees holding valid Qt Commercial licenses may use this file in
-** accordance with the Qt Commercial License Agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Nokia.
-**
-** GNU Lesser General Public License Usage
-**
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** If you are unsure which license is appropriate for your use, please
-** contact the sales department at http://qt.nokia.com/contact.
-**
-**************************************************************************/
-
-#ifndef INDENTER_H
-#define INDENTER_H
-
-#include "texteditor/basetexteditor.h"
-#include "texteditor/textblockiterator.h"
-
-#include <QtCore/QString>
-#include <QtCore/QStringList>
-
-namespace SharedTools {
-namespace IndenterInternal {
-
-/* String constants and regexps required by the indenter. Separate for code cleanliness*/
-struct Constants {
- Constants();
- const QString m_slashAster;
- const QString m_asterSlash;
- const QString m_slashSlash;
- const QString m_else;
- const QString m_qobject;
- const QString m_operators;
- const QString m_bracesSemicolon;
- const QString m_3dots;
-
- QRegExp m_literal;
- QRegExp m_label;
- QRegExp m_inlineCComment;
- QRegExp m_braceX;
- QRegExp m_iflikeKeyword;
- QRegExp m_caseLabel;
- QRegExp m_templateFunc;
-};
-
-/* The "linizer" is a group of functions and variables to iterate
- * through the source code of the program to indent. The program is
- * given as a list of strings, with the bottom line being the line to
- * indent. The actual program might contain extra lines, but those are
- * uninteresting and not passed over to us. */
-struct LinizerState {
-
- QString line;
- int braceDepth;
- bool leftBraceFollows;
-
- TextEditor::TextBlockIterator iter;
- bool inCComment;
- bool pendingRightBrace;
-};
-}
-
-/* Indenter singleton as a template of a bidirectional input iterator
- * of a sequence of code lines represented as QString.
- * When setting the parameters, be careful to
- * specify the correct template parameters (best use a typedef). */
-class Indenter {
- typedef TextEditor::TextBlockIterator Iterator;
- Indenter(const Indenter&);
- Indenter &operator=(const Indenter&);
- Indenter();
-
-public:
-
- ~Indenter();
-
- static Indenter &instance();
-
- void setIndentSize(int size);
- void setTabSize(int size );
- void setIndentBraces(bool indent);
- void setDoubleIndentBlocks(bool indent);
- /* Return indentation for the last line of the sequence
- * based on the previous lines. */
- int indentForBottomLine(const Iterator &current,
- const Iterator &programBegin,
- const Iterator &programEnd,
- QChar typedIn);
-
- // Helpers.
- static bool isOnlyWhiteSpace( const QString& t);
- static QChar firstNonWhiteSpace( const QString& t );
-
-private:
- int columnForIndex( const QString& t, int index ) const;
- int indentOfLine( const QString& t ) const;
- QString trimmedCodeLine( const QString& t );
- bool readLine();
- void startLinizer();
- bool bottomLineStartsInCComment();
- int indentWhenBottomLineStartsInCComment() const;
- bool matchBracelessControlStatement();
- bool isUnfinishedLine();
- bool isContinuationLine();
- int indentForContinuationLine();
-
- int indentForStandaloneLine();
-
- IndenterInternal::Constants m_constants;
- int ppHardwareTabSize;
- int ppIndentSize;
- bool ppIndentBraces;
- int ppContinuationIndentSize;
- bool ppDoubleIndentBlocks;
-
- Iterator yyProgramBegin;
- Iterator yyProgramEnd;
-
- typedef IndenterInternal::LinizerState LinizerState;
-
- LinizerState *yyLinizerState ;
-
- // shorthands
- const QString *yyLine;
- const int *yyBraceDepth;
- const bool *yyLeftBraceFollows;
-};
-}
-
-#endif // INDENTER_H