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
|
/*
* Copyright (c) 2002-2003 Jesper K. Pedersen <blackie@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#ifdef QT_ONLY
#include "compat.h"
#else
#include <klocale.h>
#include <kmessagebox.h>
#endif
#include "textrangeregexp.h"
#include "regexpconverter.h"
TextRangeRegExp::TextRangeRegExp( bool selected ) : RegExp( selected ),
_negate(false), _digit(false), _nonDigit(false), _space(false), _nonSpace(false), _wordChar(false), _nonWordChar(false)
{
}
TextRangeRegExp::~TextRangeRegExp()
{
}
void TextRangeRegExp::addCharacter( QString str )
{
_chars.append( str );
}
void TextRangeRegExp::addRange(QString from, QString to)
{
_ranges.append( new StringPair( from, to ) );
}
bool TextRangeRegExp::check( ErrorMap&, bool, bool )
{
return false;
}
QDomNode TextRangeRegExp::toXml( QDomDocument* doc ) const
{
QDomElement top = doc->createElement( QString::fromLocal8Bit( "TextRange" ) );
if ( _negate )
top.setAttribute( QString::fromLocal8Bit("negate"), true );
if ( _digit )
top.setAttribute( QString::fromLocal8Bit("digit"), true );
if ( _nonDigit )
top.setAttribute( QString::fromLocal8Bit("nonDigit"), true );
if ( _space )
top.setAttribute( QString::fromLocal8Bit("space"), true );
if ( _nonSpace )
top.setAttribute( QString::fromLocal8Bit("nonSpace"), true );
if ( _wordChar )
top.setAttribute( QString::fromLocal8Bit("wordChar"), true );
if ( _nonWordChar )
top.setAttribute( QString::fromLocal8Bit("nonWordChar"), true );
for ( QStringList::ConstIterator it = _chars.begin(); it != _chars.end(); ++it ) {
QDomElement elm = doc->createElement( QString::fromLocal8Bit( "Character" ) );
elm.setAttribute( QString::fromLocal8Bit( "char" ), *it );
top.appendChild( elm );
}
for ( QPtrListIterator<StringPair> it2(_ranges); *it2; ++it2 ) {
QDomElement elm = doc->createElement( QString::fromLocal8Bit( "Range" ) );
elm.setAttribute( QString::fromLocal8Bit( "from" ), (*it2)->first() );
elm.setAttribute( QString::fromLocal8Bit( "to" ), (*it2)->second() );
top.appendChild( elm );
}
return top;
}
bool TextRangeRegExp::load( QDomElement top, const QString& /*version*/ )
{
Q_ASSERT( top.tagName() == QString::fromLocal8Bit( "TextRange" ) );
QString str;
QString one = QString::fromLocal8Bit("1");
QString zero = QString::fromLocal8Bit("0");
str = top.attribute( QString::fromLocal8Bit("negate"), zero );
_negate = ( str == one );
str = top.attribute( QString::fromLocal8Bit("digit"), zero );
_digit = ( str == one );
str = top.attribute( QString::fromLocal8Bit("nonDigit"), zero );
_nonDigit = ( str == one );
str = top.attribute( QString::fromLocal8Bit("space"), zero );
_space = ( str == one );
str = top.attribute( QString::fromLocal8Bit("nonSpace"), zero );
_nonSpace = ( str == one );
str = top.attribute( QString::fromLocal8Bit("wordChar"), zero );
_wordChar = ( str == one );
str = top.attribute( QString::fromLocal8Bit("nonWordChar"), zero );
_nonWordChar = ( str == one );
for ( QDomNode node = top.firstChild(); !node.isNull(); node = node.nextSibling() ) {
if ( !node.isElement() )
continue; // Skip comments.
QDomElement child = node.toElement();
if ( child.tagName() == QString::fromLocal8Bit( "Character" ) ) {
QString ch = child.attribute( QString::fromLocal8Bit( "char" ) );
addCharacter( ch );
}
else if ( child.tagName() == QString::fromLocal8Bit( "Range" ) ) {
QString from = child.attribute( QString::fromLocal8Bit( "from" ) );
QString to = child.attribute( QString::fromLocal8Bit( "to" ) );
addRange( from, to );
}
else {
KMessageBox::sorry( 0, i18n("<p>Invalid sub element to element <b>TextRange</b>. Tag was <b>%1</b></p>").arg(child.tagName()),
i18n("Error While Loading From XML File") ) ;
return false;
}
}
return true;
}
bool TextRangeRegExp::operator==( const RegExp& other ) const
{
return ( RegExpConverter::current()->toStr( const_cast<TextRangeRegExp*>( this ), false ) ==
RegExpConverter::current()->toStr( const_cast<RegExp*>( &other ), false ) );
}
|