src/qt3support/tools/q3ptrvector.h
changeset 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the Qt3Support module of the Qt Toolkit.
       
     8 **
       
     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
       
    14 ** this package.
       
    15 **
       
    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.
       
    23 **
       
    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.
       
    27 **
       
    28 ** If you have questions regarding the use of this file, please contact
       
    29 ** Nokia at qt-info@nokia.com.
       
    30 **
       
    31 **
       
    32 **
       
    33 **
       
    34 **
       
    35 **
       
    36 **
       
    37 **
       
    38 ** $QT_END_LICENSE$
       
    39 **
       
    40 ****************************************************************************/
       
    41 
       
    42 #ifndef Q3PTRVECTOR_H
       
    43 #define Q3PTRVECTOR_H
       
    44 
       
    45 #include <Qt3Support/q3gvector.h>
       
    46 
       
    47 QT_BEGIN_HEADER
       
    48 
       
    49 QT_BEGIN_NAMESPACE
       
    50 
       
    51 QT_MODULE(Qt3SupportLight)
       
    52 
       
    53 template<class type>
       
    54 class Q3PtrVector
       
    55 #ifdef qdoc
       
    56 	: public Q3PtrCollection
       
    57 #else
       
    58 	: public Q3GVector
       
    59 #endif
       
    60 {
       
    61 public:
       
    62     Q3PtrVector()				{ }
       
    63     Q3PtrVector( uint size ) : Q3GVector(size) { }
       
    64     Q3PtrVector( const Q3PtrVector<type> &v ) : Q3GVector( v ) { }
       
    65     ~Q3PtrVector()				{ clear(); }
       
    66     Q3PtrVector<type> &operator=(const Q3PtrVector<type> &v)
       
    67 			{ return (Q3PtrVector<type>&)Q3GVector::operator=(v); }
       
    68     bool operator==( const Q3PtrVector<type> &v ) const { return Q3GVector::operator==(v); }
       
    69     type **data()   const		{ return (type **)Q3GVector::data(); }
       
    70     uint  size()    const		{ return Q3GVector::size(); }
       
    71     uint  count()   const		{ return Q3GVector::count(); }
       
    72     bool  isEmpty() const		{ return Q3GVector::count() == 0; }
       
    73     bool  isNull()  const		{ return Q3GVector::size() == 0; }
       
    74     bool  resize( uint size )		{ return Q3GVector::resize(size); }
       
    75     bool  insert( uint i, const type *d){ return Q3GVector::insert(i,(Item)d); }
       
    76     bool  remove( uint i )		{ return Q3GVector::remove(i); }
       
    77     type *take( uint i )		{ return (type *)Q3GVector::take(i); }
       
    78     void  clear()			{ Q3GVector::clear(); }
       
    79     bool  fill( const type *d, int size=-1 )
       
    80 					{ return Q3GVector::fill((Item)d,size);}
       
    81     void  sort()			{ Q3GVector::sort(); }
       
    82     int	  bsearch( const type *d ) const{ return Q3GVector::bsearch((Item)d); }
       
    83     int	  findRef( const type *d, uint i=0 ) const
       
    84 					{ return Q3GVector::findRef((Item)d,i);}
       
    85     int	  find( const type *d, uint i= 0 ) const
       
    86 					{ return Q3GVector::find((Item)d,i); }
       
    87     uint  containsRef( const type *d ) const
       
    88 				{ return Q3GVector::containsRef((Item)d); }
       
    89     uint  contains( const type *d ) const
       
    90 					{ return Q3GVector::contains((Item)d); }
       
    91     type *operator[]( int i ) const	{ return (type *)Q3GVector::at(i); }
       
    92     type *at( uint i ) const		{ return (type *)Q3GVector::at(i); }
       
    93     void  toList( Q3GList *list ) const	{ Q3GVector::toList(list); }
       
    94 
       
    95 #ifdef qdoc
       
    96 protected:
       
    97     virtual int compareItems( Q3PtrCollection::Item d1, Q3PtrCollection::Item d2 );
       
    98     virtual QDataStream& read( QDataStream &s, Q3PtrCollection::Item &d );
       
    99     virtual QDataStream& write( QDataStream &s, Q3PtrCollection::Item d ) const;
       
   100 #endif
       
   101 
       
   102 private:
       
   103     void  deleteItem( Item d );
       
   104 };
       
   105 
       
   106 #if !defined(Q_BROKEN_TEMPLATE_SPECIALIZATION)
       
   107 template<> inline void Q3PtrVector<void>::deleteItem( Q3PtrCollection::Item )
       
   108 {
       
   109 }
       
   110 #endif
       
   111 
       
   112 template<class type> inline void Q3PtrVector<type>::deleteItem( Q3PtrCollection::Item d )
       
   113 {
       
   114     if ( del_item ) delete (type *)d;
       
   115 }
       
   116 
       
   117 QT_END_NAMESPACE
       
   118 
       
   119 QT_END_HEADER
       
   120 
       
   121 #endif // Q3PTRVECTOR_H