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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/**********************************************************************
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
** This file is part of Qt Designer.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file COPYING included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
// porting for klint by Roberto Raggi (roberto@kdevelop.org)
#include "parenmatcher.h"
#include "paragdata.h"
#include <private/qrichtext_p.h>
#include <qtextedit.h>
#include <qapplication.h>
ParenMatcher::ParenMatcher()
{
enabled = TRUE;
}
bool ParenMatcher::match( QTextCursor *cursor )
{
if ( !enabled )
return FALSE;
bool ret = FALSE;
QChar c( cursor->paragraph()->at( cursor->index() )->c );
bool ok1 = FALSE;
bool ok2 = FALSE;
if ( c == '{' || c == '(' || c == '[' ) {
ok1 = checkOpenParen( cursor );
ret = ok1 || ret;
} else if ( cursor->index() > 0 ) {
c = cursor->paragraph()->at( cursor->index() - 1 )->c;
if ( c == '}' || c == ')' || c == ']' ) {
ok2 = checkClosedParen( cursor );
ret = ok2 || ret;
}
}
return ret;
}
bool ParenMatcher::checkOpenParen( QTextCursor *cursor )
{
if ( !cursor->paragraph()->extraData() )
return FALSE;
QValueList<Symbol> parenList = ( (ParagData*)cursor->paragraph()->extraData() )->symbolList();
Symbol openParen, closedParen;
QTextParagraph *closedParenParag = cursor->paragraph();
int i = 0;
int ignore = 0;
bool foundOpen = FALSE;
QChar c = cursor->paragraph()->at( cursor->index() )->c;
for (;;) {
if ( !foundOpen ) {
if ( i >= (int)parenList.count() )
goto bye;
openParen = parenList[ i ];
if ( openParen.pos() != cursor->index() ) {
++i;
continue;
} else {
foundOpen = TRUE;
++i;
}
}
if ( i >= (int)parenList.count() ) {
for (;;) {
closedParenParag = closedParenParag->next();
if ( !closedParenParag )
goto bye;
if ( closedParenParag->extraData() &&
( (ParagData*)closedParenParag->extraData() )->symbolList().count() > 0 ) {
parenList = ( (ParagData*)closedParenParag->extraData() )->symbolList();
break;
}
}
i = 0;
}
closedParen = parenList[ i ];
if ( closedParen.type() == Symbol::Left ) {
ignore++;
++i;
continue;
} else {
if ( ignore > 0 ) {
ignore--;
++i;
continue;
}
int id = Match;
if ( c == '{' && closedParen.ch() != '}' ||
c == '(' && closedParen.ch() != ')' ||
c == '[' && closedParen.ch() != ']' )
id = Mismatch;
cursor->document()->setSelectionStart( id, *cursor );
int tidx = cursor->index();
QTextParagraph *tstring = cursor->paragraph();
cursor->setParagraph( closedParenParag );
cursor->setIndex( closedParen.pos() + 1 );
cursor->document()->setSelectionEnd( id, *cursor );
cursor->setParagraph( tstring );
cursor->setIndex( tidx );
return TRUE;
}
}
bye:
return FALSE;
}
bool ParenMatcher::checkClosedParen( QTextCursor *cursor )
{
if ( !cursor->paragraph()->extraData() )
return FALSE;
QValueList<Symbol> parenList = ( (ParagData*)cursor->paragraph()->extraData() )->symbolList();
Symbol openParen, closedParen;
QTextParagraph *openParenParag = cursor->paragraph();
int i = parenList.count() - 1;
int ignore = 0;
bool foundClosed = FALSE;
QChar c = cursor->paragraph()->at( cursor->index() - 1 )->c;
for (;;) {
if ( !foundClosed ) {
if ( i < 0 )
goto bye;
closedParen = parenList[ i ];
if ( closedParen.pos() != cursor->index() - 1 ) {
--i;
continue;
} else {
foundClosed = TRUE;
--i;
}
}
if ( i < 0 ) {
for (;;) {
openParenParag = openParenParag->prev();
if ( !openParenParag )
goto bye;
if ( openParenParag->extraData() &&
( (ParagData*)openParenParag->extraData() )->symbolList().count() > 0 ) {
parenList = ( (ParagData*)openParenParag->extraData() )->symbolList();
break;
}
}
i = parenList.count() - 1;
}
openParen = parenList[ i ];
if ( openParen.type() == Symbol::Right ) {
ignore++;
--i;
continue;
} else {
if ( ignore > 0 ) {
ignore--;
--i;
continue;
}
int id = Match;
if ( c == '}' && openParen.ch() != '{' ||
c == ')' && openParen.ch() != '(' ||
c == ']' && openParen.ch() != '[' )
id = Mismatch;
cursor->document()->setSelectionStart( id, *cursor );
int tidx = cursor->index();
QTextParagraph *tstring = cursor->paragraph();
cursor->setParagraph( openParenParag );
cursor->setIndex( openParen.pos() );
cursor->document()->setSelectionEnd( id, *cursor );
cursor->setParagraph( tstring );
cursor->setIndex( tidx );
return TRUE;
}
}
bye:
return FALSE;
}
|