Blame qtools/qregexp.h

Packit 1c1d7e
/****************************************************************************
Packit 1c1d7e
** 
Packit 1c1d7e
**
Packit 1c1d7e
** Definition of QRegExp class
Packit 1c1d7e
**
Packit 1c1d7e
** Created : 950126
Packit 1c1d7e
**
Packit 1c1d7e
** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
Packit 1c1d7e
**
Packit 1c1d7e
** This file is part of the tools module of the Qt GUI Toolkit.
Packit 1c1d7e
**
Packit 1c1d7e
** This file may be distributed under the terms of the Q Public License
Packit 1c1d7e
** as defined by Trolltech AS of Norway and appearing in the file
Packit 1c1d7e
** LICENSE.QPL included in the packaging of this file.
Packit 1c1d7e
**
Packit 1c1d7e
** This file may be distributed and/or modified under the terms of the
Packit 1c1d7e
** GNU General Public License version 2 as published by the Free Software
Packit 1c1d7e
** Foundation and appearing in the file LICENSE.GPL included in the
Packit 1c1d7e
** packaging of this file.
Packit 1c1d7e
**
Packit 1c1d7e
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
Packit 1c1d7e
** licenses may use this file in accordance with the Qt Commercial License
Packit 1c1d7e
** Agreement provided with the Software.
Packit 1c1d7e
**
Packit 1c1d7e
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Packit 1c1d7e
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
Packit 1c1d7e
**
Packit 1c1d7e
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
Packit 1c1d7e
**   information about Qt Commercial License Agreements.
Packit 1c1d7e
** See http://www.trolltech.com/qpl/ for QPL licensing information.
Packit 1c1d7e
** See http://www.trolltech.com/gpl/ for GPL licensing information.
Packit 1c1d7e
**
Packit 1c1d7e
** Contact info@trolltech.com if any conditions of this licensing are
Packit 1c1d7e
** not clear to you.
Packit 1c1d7e
**
Packit 1c1d7e
**********************************************************************/
Packit 1c1d7e
Packit 1c1d7e
#ifndef QREGEXP_H
Packit 1c1d7e
#define QREGEXP_H
Packit 1c1d7e
Packit 1c1d7e
#ifndef QT_H
Packit 1c1d7e
#include "qcstring.h"
Packit 1c1d7e
#endif // QT_H
Packit 1c1d7e
Packit 1c1d7e
Packit 1c1d7e
class Q_EXPORT QRegExp
Packit 1c1d7e
{
Packit 1c1d7e
public:
Packit 1c1d7e
    QRegExp();
Packit 1c1d7e
    QRegExp( const QCString &, bool caseSensitive=TRUE, bool wildcard=FALSE );
Packit 1c1d7e
    QRegExp( const QRegExp & );
Packit 1c1d7e
   ~QRegExp();
Packit 1c1d7e
    QRegExp    &operator=( const QRegExp & );
Packit 1c1d7e
    QRegExp    &operator=( const QCString &pattern );
Packit 1c1d7e
Packit 1c1d7e
    bool	operator==( const QRegExp & )  const;
Packit 1c1d7e
    bool	operator!=( const QRegExp &r ) const
Packit 1c1d7e
					{ return !(this->operator==(r)); }
Packit 1c1d7e
Packit 1c1d7e
    bool	isEmpty()	const	{ return rxdata == 0; }
Packit 1c1d7e
    bool	isValid()	const	{ return error == 0; }
Packit 1c1d7e
Packit 1c1d7e
    bool	caseSensitive() const	{ return cs; }
Packit 1c1d7e
    void	setCaseSensitive( bool );
Packit 1c1d7e
Packit 1c1d7e
    bool	wildcard()	const	{ return wc; }
Packit 1c1d7e
    void	setWildcard( bool );
Packit 1c1d7e
Packit 1c1d7e
    QCString	pattern()	const	{ return rxstring; }
Packit 1c1d7e
    // ### in Qt 3.0, provide a real implementation
Packit 1c1d7e
    void	setPattern( const QCString& pattern )
Packit 1c1d7e
					{ operator=( pattern ); }
Packit 1c1d7e
Packit 1c1d7e
    int		match( const QCString &str, int index=0, int *len=0,
Packit 1c1d7e
		       bool indexIsStart = TRUE ) const;
Packit 1c1d7e
    int		find( const QCString& str, int index )
Packit 1c1d7e
					{ return match( str, index ); }
Packit 1c1d7e
Packit 1c1d7e
protected:
Packit 1c1d7e
    void	compile();
Packit 1c1d7e
    const char *matchstr( uint *, const char *, uint, const char * ) const;
Packit 1c1d7e
Packit 1c1d7e
private:
Packit 1c1d7e
    QCString	rxstring;			// regular expression pattern
Packit 1c1d7e
    uint	*rxdata;			// compiled regexp pattern
Packit 1c1d7e
    int		error;				// error status
Packit 1c1d7e
    bool	cs;				// case sensitive
Packit 1c1d7e
    bool	wc;				// wildcard
Packit 1c1d7e
};
Packit 1c1d7e
Packit 1c1d7e
Packit 1c1d7e
#endif // QREGEXP_H