• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdepimlibs API Reference
  • KDE Home
  • Contact Us
 

KCal Library

  • KCal
  • ListBase
Public Member Functions | List of all members
KCal::ListBase< T > Class Template Reference

#include <listbase.h>

Inheritance diagram for KCal::ListBase< T >:
Inheritance graph
[legend]

Public Member Functions

 ListBase ()
 
 ListBase (const ListBase &other)
 
 ~ListBase ()
 
void clearAll ()
 
ListBase & operator= (const ListBase &l)
 
bool operator== (const ListBase &l2)
 
bool removeRef (T *t)
 
void removeRef (typename QList< T * >::iterator it)
 
void setAutoDelete (bool autoDelete)
 
- Public Member Functions inherited from QList< T * >
 QList (const QList< T > &other)
 
 QList (std::initializer_list< T > args)
 
void append (const T &value)
 
void append (const QList< T > &value)
 
const T & at (int i) const
 
T & back ()
 
const T & back () const
 
iterator begin ()
 
const_iterator begin () const
 
void clear ()
 
const_iterator constBegin () const
 
const_iterator constEnd () const
 
bool contains (const T &value) const
 
int count (const T &value) const
 
int count () const
 
bool empty () const
 
iterator end ()
 
const_iterator end () const
 
bool endsWith (const T &value) const
 
iterator erase (iterator pos)
 
iterator erase (iterator begin, iterator end)
 
iterator find (iterator from, const T &t)
 
iterator find (const T &t)
 
const_iterator find (const T &t) const
 
const_iterator find (const_iterator from, const T &t) const
 
int findIndex (const T &t) const
 
T & first ()
 
const T & first () const
 
T & front ()
 
const T & front () const
 
int indexOf (const T &value, int from) const
 
void insert (int i, const T &value)
 
iterator insert (iterator before, const T &value)
 
bool isEmpty () const
 
T & last ()
 
const T & last () const
 
int lastIndexOf (const T &value, int from) const
 
int length () const
 
QList< T > mid (int pos, int length) const
 
void move (int from, int to)
 
bool operator!= (const QList< T > &other) const
 
QList< T > operator+ (const QList< T > &other) const
 
QList< T > & operator+= (const QList< T > &other)
 
QList< T > & operator+= (const T &value)
 
QList< T > & operator<< (const T &value)
 
QList< T > & operator<< (const QList< T > &other)
 
QList< T > & operator= (const QList< T > &other)
 
bool operator== (const QList< T > &other) const
 
T & operator[] (int i)
 
const T & operator[] (int i) const
 
void pop_back ()
 
void pop_front ()
 
void prepend (const T &value)
 
void push_back (const T &value)
 
void push_front (const T &value)
 
iterator remove (iterator pos)
 
int remove (const T &t)
 
int removeAll (const T &value)
 
void removeAt (int i)
 
void removeFirst ()
 
void removeLast ()
 
bool removeOne (const T &value)
 
void replace (int i, const T &value)
 
void reserve (int alloc)
 
int size () const
 
bool startsWith (const T &value) const
 
void swap (int i, int j)
 
void swap (QList< T > &other)
 
T takeAt (int i)
 
T takeFirst ()
 
T takeLast ()
 
QSet< T > toSet () const
 
std::list< T > toStdList () const
 
QVector< T > toVector () const
 
T value (int i, const T &defaultValue) const
 
T value (int i) const
 

Additional Inherited Members

- Static Public Member Functions inherited from QList< T * >
QList< T > fromSet (const QSet< T > &set)
 
QList< T > fromStdList (const std::list< T > &list)
 
QList< T > fromVector (const QVector< T > &vector)
 
- Public Attributes inherited from QList< T * >
typedef const_pointer
 
typedef const_reference
 
typedef ConstIterator
 
typedef difference_type
 
typedef Iterator
 
typedef pointer
 
typedef reference
 
typedef size_type
 
typedef value_type
 

Detailed Description

template<class T>
class KCal::ListBase< T >

This class provides a template for lists of pointers.

It extends QList<T *> with an "auto-delete" functionality.

Definition at line 44 of file listbase.h.

Constructor & Destructor Documentation

template<class T >
KCal::ListBase< T >::ListBase ( )
inline

Constructor.

Definition at line 50 of file listbase.h.

template<class T >
KCal::ListBase< T >::ListBase ( const ListBase< T > &  other)
inline

Copy constructor.

Parameters
otheris the ListBase to copy.

Definition at line 59 of file listbase.h.

template<class T >
KCal::ListBase< T >::~ListBase ( )
inline

Destructor.

Definition at line 67 of file listbase.h.

Member Function Documentation

template<class T >
void KCal::ListBase< T >::clearAll ( )
inline

Clears the list.

Memory is also freed if the list is set to "auto-delete" mode.

Definition at line 102 of file listbase.h.

template<class T >
ListBase& KCal::ListBase< T >::operator= ( const ListBase< T > &  l)
inline

Assigns l to this listbase.

Parameters
lis the ListBase to copy.

Definition at line 78 of file listbase.h.

template<class T >
bool KCal::ListBase< T >::removeRef ( T *  t)
inline

Removes all the members from the list with the specified address.

Memory is also freed if the list is set to "auto-delete" mode.

Parameters
tis the pointer to remove from the list.
Returns
true if successful; otherwise false (no such address t found).

Definition at line 116 of file listbase.h.

template<class T >
void KCal::ListBase< T >::removeRef ( typename QList< T * >::iterator  it)
inline

Removes the specified member from the list.

Memory is also freed if the list is set to "auto-delete" mode.

Parameters
itthe iterator to remove from the list.

Definition at line 134 of file listbase.h.

template<class T >
void KCal::ListBase< T >::setAutoDelete ( bool  autoDelete)
inline

Sets this list to operate in "auto-delete" mode.

This mode deletes the memory pointed at by all members of the list in the destructor.

Parameters
autoDeleteif true, puts the list into "auto-delete" mode.

Definition at line 93 of file listbase.h.


The documentation for this class was generated from the following file:
  • listbase.h
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:38:30 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

KCal Library

Skip menu "KCal Library"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdepimlibs API Reference

Skip menu "kdepimlibs API Reference"
  • akonadi
  •   contact
  •   kmime
  •   socialutils
  • kabc
  • kalarmcal
  • kblog
  • kcal
  • kcalcore
  • kcalutils
  • kholidays
  • kimap
  • kioslave
  •   imap4
  •   mbox
  •   nntp
  • kldap
  • kmbox
  • kmime
  • kontactinterface
  • kpimidentities
  • kpimtextedit
  • kpimutils
  • kresources
  • ktnef
  • kxmlrpcclient
  • mailtransport
  • microblog
  • qgpgme
  • syndication
  •   atom
  •   rdf
  •   rss2

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal