Qt 4.8
Classes | Namespaces | Typedefs | Functions
qstringlist.h File Reference
#include <QtCore/qalgorithms.h>
#include <QtCore/qdatastream.h>
#include <QtCore/qlist.h>
#include <QtCore/qregexp.h>
#include <QtCore/qstring.h>
#include <QtCore/qstringmatcher.h>

Go to the source code of this file.

Classes

class  QStringList
 The QStringList class provides a list of strings. More...
 

Namespaces

 QtPrivate
 

Typedefs

typedef QMutableListIterator< QStringQMutableStringListIterator
 
typedef QListIterator< QStringQStringListIterator
 

Functions

QDataStreamoperator<< (QDataStream &out, const QStringList &list)
 
QDataStreamoperator>> (QDataStream &in, QStringList &list)
 
QBool Q_CORE_EXPORT QtPrivate::QStringList_contains (const QStringList *that, const QString &str, Qt::CaseSensitivity cs)
 
QStringList Q_CORE_EXPORT QtPrivate::QStringList_filter (const QStringList *that, const QString &str, Qt::CaseSensitivity cs)
 
QStringList Q_CORE_EXPORT QtPrivate::QStringList_filter (const QStringList *that, const QRegExp &re)
 
int Q_CORE_EXPORT QtPrivate::QStringList_indexOf (const QStringList *that, const QRegExp &rx, int from)
 
int Q_CORE_EXPORT QtPrivate::QStringList_indexOf (const QStringList *that, QRegExp &rx, int from)
 
QString Q_CORE_EXPORT QtPrivate::QStringList_join (const QStringList *that, const QString &sep)
 
int Q_CORE_EXPORT QtPrivate::QStringList_lastIndexOf (const QStringList *that, const QRegExp &rx, int from)
 
int Q_CORE_EXPORT QtPrivate::QStringList_lastIndexOf (const QStringList *that, QRegExp &rx, int from)
 
int Q_CORE_EXPORT QtPrivate::QStringList_removeDuplicates (QStringList *that)
 
void Q_CORE_EXPORT QtPrivate::QStringList_replaceInStrings (QStringList *that, const QString &before, const QString &after, Qt::CaseSensitivity cs)
 
void Q_CORE_EXPORT QtPrivate::QStringList_replaceInStrings (QStringList *that, const QRegExp &rx, const QString &after)
 
void Q_CORE_EXPORT QtPrivate::QStringList_sort (QStringList *that)
 

Typedef Documentation

◆ QMutableStringListIterator

typedef QMutableListIterator<QString> QMutableStringListIterator
related

Definition at line 64 of file qstringlist.h.

◆ QStringListIterator

typedef QListIterator<QString> QStringListIterator
related

Definition at line 61 of file qstringlist.h.

Function Documentation

◆ operator<<()

QDataStream& operator<< ( QDataStream out,
const QStringList list 
)
related

Definition at line 252 of file qstringlist.h.

253 {
254  return operator<<(out, static_cast<const QList<QString> &>(list));
255 }

◆ operator>>()

QDataStream& operator>> ( QDataStream in,
QStringList list 
)
related

Definition at line 248 of file qstringlist.h.

249 {
250  return operator>>(in, static_cast<QList<QString> &>(list));
251 }
QDataStream & operator>>(QDataStream &in, QUrl &url)
Reads a url into url from the stream in and returns a reference to the stream.
Definition: qurl.cpp:6774