|
1 /**************************************************************************** |
|
2 ** |
|
3 ** |
|
4 ** Definition of QDict template class |
|
5 ** |
|
6 ** Created : 920821 |
|
7 ** |
|
8 ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. |
|
9 ** |
|
10 ** This file is part of the tools module of the Qt GUI Toolkit. |
|
11 ** |
|
12 ** This file may be distributed under the terms of the Q Public License |
|
13 ** as defined by Trolltech AS of Norway and appearing in the file |
|
14 ** LICENSE.QPL included in the packaging of this file. |
|
15 ** |
|
16 ** This file may be distributed and/or modified under the terms of the |
|
17 ** GNU General Public License version 2 as published by the Free Software |
|
18 ** Foundation and appearing in the file LICENSE.GPL included in the |
|
19 ** packaging of this file. |
|
20 ** |
|
21 ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition |
|
22 ** licenses may use this file in accordance with the Qt Commercial License |
|
23 ** Agreement provided with the Software. |
|
24 ** |
|
25 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
|
26 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
|
27 ** |
|
28 ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for |
|
29 ** information about Qt Commercial License Agreements. |
|
30 ** See http://www.trolltech.com/qpl/ for QPL licensing information. |
|
31 ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
|
32 ** |
|
33 ** Contact info@trolltech.com if any conditions of this licensing are |
|
34 ** not clear to you. |
|
35 ** |
|
36 **********************************************************************/ |
|
37 |
|
38 #ifndef QDICT_H |
|
39 #define QDICT_H |
|
40 |
|
41 #ifndef QT_H |
|
42 #include "qgdict.h" |
|
43 #endif // QT_H |
|
44 |
|
45 #define USE_ASCII_STRING |
|
46 |
|
47 #ifdef USE_ASCII_STRING |
|
48 |
|
49 #define QAsciiDict QDict |
|
50 #define QAsciiDictIterator QDictIterator |
|
51 #include "qasciidict.h" |
|
52 |
|
53 #else |
|
54 |
|
55 template<class type> class Q_EXPORT QDict : public QGDict |
|
56 { |
|
57 public: |
|
58 QDict(int size=17, bool caseSensitive=TRUE) |
|
59 : QGDict(size,StringKey,caseSensitive,FALSE) {} |
|
60 QDict( const QDict<type> &d ) : QGDict(d) {} |
|
61 ~QDict() { clear(); } |
|
62 QDict<type> &operator=(const QDict<type> &d) |
|
63 { return (QDict<type>&)QGDict::operator=(d); } |
|
64 uint count() const { return QGDict::count(); } |
|
65 uint size() const { return QGDict::size(); } |
|
66 bool isEmpty() const { return QGDict::count() == 0; } |
|
67 |
|
68 void insert( const QString &k, const type *d ) |
|
69 { QGDict::look_string(k,(Item)d,1); } |
|
70 void replace( const QString &k, const type *d ) |
|
71 { QGDict::look_string(k,(Item)d,2); } |
|
72 bool remove( const QString &k ) { return QGDict::remove_string(k); } |
|
73 type *take( const QString &k ) { return (type *)QGDict::take_string(k); } |
|
74 type *find( const QString &k ) const |
|
75 { return (type *)((QGDict*)this)->QGDict::look_string(k,0,0); } |
|
76 type *operator[]( const QString &k ) const |
|
77 { return (type *)((QGDict*)this)->QGDict::look_string(k,0,0); } |
|
78 |
|
79 void clear() { QGDict::clear(); } |
|
80 void resize( uint n ) { QGDict::resize(n); } |
|
81 void statistics() const { QGDict::statistics(); } |
|
82 private: |
|
83 void deleteItem( Item d ); |
|
84 }; |
|
85 |
|
86 #if defined(Q_DELETING_VOID_UNDEFINED) |
|
87 template<> inline void QDict<void>::deleteItem( Item ) |
|
88 { |
|
89 } |
|
90 #endif |
|
91 |
|
92 template<class type> inline void QDict<type>::deleteItem( QCollection::Item d ) |
|
93 { |
|
94 if ( del_item ) delete (type *)d; |
|
95 } |
|
96 |
|
97 |
|
98 template<class type> class Q_EXPORT QDictIterator : public QGDictIterator |
|
99 { |
|
100 public: |
|
101 QDictIterator(const QDict<type> &d) :QGDictIterator((QGDict &)d) {} |
|
102 ~QDictIterator() {} |
|
103 uint count() const { return dict->count(); } |
|
104 bool isEmpty() const { return dict->count() == 0; } |
|
105 type *toFirst() { return (type *)QGDictIterator::toFirst(); } |
|
106 operator type *() const { return (type *)QGDictIterator::get(); } |
|
107 type *current() const { return (type *)QGDictIterator::get(); } |
|
108 QString currentKey() const{ return QGDictIterator::getKeyString(); } |
|
109 type *operator()() { return (type *)QGDictIterator::operator()(); } |
|
110 type *operator++() { return (type *)QGDictIterator::operator++(); } |
|
111 type *operator+=(uint j) { return (type *)QGDictIterator::operator+=(j);} |
|
112 }; |
|
113 |
|
114 #endif // USE_ASCII_STRING |
|
115 |
|
116 #endif // QDICT_H |