qasciidict.h
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 **
4 ** Definition of QAsciiDict 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 QASCIIDICT_H
39 #define QASCIIDICT_H
40 
41 #ifndef QT_H
42 #include "qgdict.h"
43 #endif // QT_H
44 
45 
46 template<class type> class Q_EXPORT QAsciiDict : public QGDict
47 {
48 public:
49  QAsciiDict(int size=17, bool caseSensitive=TRUE, bool copyKeys=TRUE )
50  : QGDict(size,AsciiKey,caseSensitive,copyKeys) {}
51  QAsciiDict( const QAsciiDict<type> &d ) : QGDict(d) {}
52  ~QAsciiDict() { clear(); }
54  { return (QAsciiDict<type>&)QGDict::operator=(d); }
55  uint count() const { return QGDict::count(); }
56  uint size() const { return QGDict::size(); }
57  bool isEmpty() const { return QGDict::count() == 0; }
58 
59  void insert( const char *k, const type *d )
60  { QGDict::look_ascii(k,(Item)d,1); }
61  void replace( const char *k, const type *d )
62  { QGDict::look_ascii(k,(Item)d,2); }
63  bool remove( const char *k ) { return QGDict::remove_ascii(k); }
64  type *take( const char *k ) { return (type *)QGDict::take_ascii(k); }
65  type *find( const char *k ) const
66  { return (type *)((QGDict*)this)->QGDict::look_ascii(k,0,0); }
67  type *operator[]( const char *k ) const
68  { return (type *)((QGDict*)this)->QGDict::look_ascii(k,0,0); }
69 
70  void clear() { QGDict::clear(); }
71  void resize( uint n ) { QGDict::resize(n); }
72  void statistics() const { QGDict::statistics(); }
73 private:
74  void deleteItem( Item d );
75 };
76 
77 #if defined(Q_DELETING_VOID_UNDEFINED)
78 template<> inline void QAsciiDict<void>::deleteItem( Item )
79 {
80 }
81 #endif
82 
83 template<class type> inline void QAsciiDict<type>::deleteItem( QCollection::Item d )
84 {
85  if ( del_item ) delete (type *)d;
86 }
87 
88 
89 template<class type> class Q_EXPORT QAsciiDictIterator : public QGDictIterator
90 {
91 public:
93  : QGDictIterator((QGDict &)d) {}
95  uint count() const { return dict->count(); }
96  bool isEmpty() const { return dict->count() == 0; }
98  operator type *() const { return (type *)QGDictIterator::get(); }
99  type *current() const { return (type *)QGDictIterator::get(); }
100  const char *currentKey() const { return QGDictIterator::getKeyAscii(); }
104 };
105 
106 
107 #endif // QASCIIDICT_H
bool isEmpty() const
Definition: qasciidict.h:96
uint count() const
Definition: qgdict.h:107
void statistics() const
Definition: qgdict.cpp:930
void resize(uint)
Definition: qgdict.cpp:527
uint count() const
Definition: qasciidict.h:95
void replace(const char *k, const type *d)
Definition: qasciidict.h:61
uint count() const
Definition: qasciidict.h:55
QAsciiDict(const QAsciiDict< type > &d)
Definition: qasciidict.h:51
type * find(const char *k) const
Definition: qasciidict.h:65
void insert(const char *k, const type *d)
Definition: qasciidict.h:59
type * current() const
Definition: qasciidict.h:99
QCollection::Item operator+=(uint)
Definition: qgdict.cpp:1239
QCollection::Item get() const
Definition: qgdict.h:196
type * operator+=(uint j)
Definition: qasciidict.h:103
QCollection::Item look_ascii(const char *key, QCollection::Item, int)
Definition: qgdict.cpp:422
QCollection::Item operator()()
Definition: qgdict.cpp:1188
type * operator++()
Definition: qasciidict.h:102
decltype(auto) constexpr size(T &&obj)
ADL-aware version of std::size.
Definition: StdUtils.h:92
type * operator()()
Definition: qasciidict.h:101
QGDict & operator=(const QGDict &)
Definition: qgdict.cpp:309
std::void_t< T > n
uint size() const
Definition: qasciidict.h:56
QCollection::Item take_ascii(const char *key)
Definition: qgdict.cpp:804
const char * getKeyAscii() const
Definition: qgdict.h:206
void clear()
Definition: qgdict.cpp:857
QAsciiDict< type > & operator=(const QAsciiDict< type > &d)
Definition: qasciidict.h:53
bool remove_ascii(const char *key, QCollection::Item item=0)
Definition: qgdict.cpp:747
void clear()
Definition: qasciidict.h:70
An internal class for implementing QDictIterator and QIntDictIterator.
Definition: qgdict.h:167
QCollection::Item operator++()
Definition: qgdict.cpp:1208
QCollection::Item toFirst()
Definition: qgdict.cpp:1161
The QGDict class is an internal class for implementing QDict template classes.
Definition: qgdict.h:104
QAsciiDictIterator(const QAsciiDict< type > &d)
Definition: qasciidict.h:92
type * toFirst()
Definition: qasciidict.h:97
uint size() const
Definition: qgdict.h:108
void deleteItem(Item d)
Definition: qasciidict.h:83
virtual void deleteItem(Item)
void resize(uint n)
Definition: qasciidict.h:71
void statistics() const
Definition: qasciidict.h:72
type * operator[](const char *k) const
Definition: qasciidict.h:67
QAsciiDict(int size=17, bool caseSensitive=TRUE, bool copyKeys=TRUE)
Definition: qasciidict.h:49
unsigned uint
Definition: qglobal.h:351
const char * currentKey() const
Definition: qasciidict.h:100
#define Q_EXPORT
Definition: qglobal.h:468
const bool TRUE
Definition: qglobal.h:371
type * take(const char *k)
Definition: qasciidict.h:64
bool isEmpty() const
Definition: qasciidict.h:57
void * Item
Definition: qcollection.h:60