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
|
/*
* 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 TQT_ONLY
#include "compat.h"
#else
#include "tdemessagebox.h"
#include <tdelocale.h>
#endif
#include "repeatregexp.h"
RepeatRegExp::RepeatRegExp( bool selected, int lower, int upper, RegExp* child) : RegExp( selected )
{
_lower = lower;
_upper = upper;
_child = child;
if (child)
addChild( child );
}
bool RepeatRegExp::check( ErrorMap& map, bool first, bool last )
{
_child->check( map, first, last );
return ( _lower == 0 );
}
TQDomNode RepeatRegExp::toXml( TQDomDocument* doc ) const
{
TQDomElement top = doc->createElement( TQString::fromLocal8Bit("Repeat") );
top.setAttribute( TQString::fromLocal8Bit("lower"), _lower );
top.setAttribute( TQString::fromLocal8Bit("upper"), _upper );
top.appendChild( _child->toXml( doc ) );
return top;
}
bool RepeatRegExp::load( TQDomElement top, const TQString& version )
{
Q_ASSERT( top.tagName() == TQString::fromLocal8Bit( "Repeat" ) );
TQString lower = top.attribute( TQString::fromLocal8Bit("lower"), TQString::fromLocal8Bit("0") );
TQString upper = top.attribute( TQString::fromLocal8Bit("upper"), TQString::fromLocal8Bit("0") );
bool ok;
_lower = lower.toInt( &ok );
if ( !ok ) {
KMessageBox::sorry( 0, i18n("<p>Value for attribute <b>%1</b> was not an integer for element "
"<b>%2</b></p><p>It contained the value <b>%3</b></p>")
.arg(TQString::fromLatin1("lower")).arg(TQString::fromLatin1("Repeat")).arg(lower),
i18n("Error While Loading From XML File") ) ;
_lower = 0;
}
_upper = upper.toInt( &ok );
if ( !ok ) {
KMessageBox::sorry( 0, i18n("<p>Value for attribute <b>%1</b> was not an integer for element "
"<b>%2</b></p><p>It contained the value <b>%3</b></p>")
.arg(TQString::fromLatin1("upper")).arg(TQString::fromLatin1("Repeat")).arg(upper),
i18n("Error While Loading From XML File") ) ;
_upper = -1;
}
_child = readRegExp( top, version );
if ( _child ) {
addChild( _child );
return true;
}
else
return false;
}
bool RepeatRegExp::operator==( const RegExp& other ) const
{
if ( type() != other.type() )
return false;
const RepeatRegExp& theOther = dynamic_cast<const RepeatRegExp&>( other );
if ( _lower != theOther._lower || _upper != theOther._upper )
return false;
return (*_child == *(theOther._child) );
}
|