1 /****************************************************************************
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the tools applications of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
40 ****************************************************************************/
49 #include "openedlist.h"
53 static const char roman
[] = "m\2d\5c\2l\5x\2v\5i";
55 OpenedList::OpenedList( Style style
)
56 : sty( style
), ini( 1 ), nex( 0 )
60 OpenedList::OpenedList( const Location
& location
, const QString
& hint
)
61 : sty( Bullet
), ini( 1 )
63 QRegExp
hintSyntax( "(\\W*)([0-9]+|[A-Z]+|[a-z]+)(\\W*)" );
65 if ( hintSyntax
.exactMatch(hint
) ) {
67 int asNumeric
= hint
.toInt( &ok
);
68 int asRoman
= fromRoman( hintSyntax
.cap(2) );
69 int asAlpha
= fromAlpha( hintSyntax
.cap(2) );
74 } else if ( asRoman
> 0 && asRoman
!= 100 && asRoman
!= 500 ) {
75 sty
= ( hint
== hint
.toLower() ) ? LowerRoman
: UpperRoman
;
78 sty
= ( hint
== hint
.toLower() ) ? LowerAlpha
: UpperAlpha
;
81 pref
= hintSyntax
.cap( 1 );
82 suff
= hintSyntax
.cap( 3 );
83 } else if ( !hint
.isEmpty() ) {
84 location
.warning( tr("Unrecognized list style '%1'").arg(hint
) );
89 QString
OpenedList::styleString() const
94 return ATOM_LIST_BULLET
;
98 return ATOM_LIST_VALUE
;
100 return ATOM_LIST_NUMERIC
;
102 return ATOM_LIST_UPPERALPHA
;
104 return ATOM_LIST_LOWERALPHA
;
106 return ATOM_LIST_UPPERROMAN
;
108 return ATOM_LIST_LOWERROMAN
;
112 QString
OpenedList::numberString() const
114 return QString::number( number() );
118 return QString::number( number() );
120 return toAlpha( number() ).toUpper();
122 return toAlpha( number() );
124 return toRoman( number() ).toUpper();
126 return toRoman( number() );
133 QString
OpenedList::toAlpha( int n
)
139 str
.prepend( (n
% 26) + 'a' );
145 int OpenedList::fromAlpha( const QString
& str
)
150 for ( int i
= 0; i
< (int) str
.length(); i
++ ) {
151 u
= str
[i
].toLower().unicode();
152 if ( u
>= 'a' && u
<= 'z' ) {
162 QString
OpenedList::toRoman( int n
)
165 See p. 30 of Donald E. Knuth's "TeX: The Program".
183 u
= v
/ roman
[k
- 1];
184 if ( roman
[k
- 1] == 2 ) {
199 int OpenedList::fromRoman( const QString
& str
)
206 for ( int i
= str
.length() - 1; i
>= 0; i
-- ) {
209 while ( roman
[j
] != 'i' && roman
[j
] != str
[i
].toLower() ) {
221 if ( str
.toLower() == toRoman(n
) ) {