• Skip to content
  • Skip to link menu
KDE 4.4 API Reference
  • KDE API Reference
  • kdelibs
  • Sitemap
  • Contact Us
 

Kate

kateregexp.h

Go to the documentation of this file.
00001 /* This file is part of the KDE libraries
00002    Copyright (C) 2009 Bernhard Beschow <bbeschow@cs.tu-berlin.de>
00003    Copyright (C) 2007 Sebastian Pipping <webmaster@hartwork.org>
00004 
00005    This library is free software; you can redistribute it and/or
00006    modify it under the terms of the GNU Library General Public
00007    License version 2 as published by the Free Software Foundation.
00008 
00009    This library is distributed in the hope that it will be useful,
00010    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012    Library General Public License for more details.
00013 
00014    You should have received a copy of the GNU Library General Public License
00015    along with this library; see the file COPYING.LIB.  If not, write to
00016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017    Boston, MA 02111-13020, USA.
00018 */
00019 
00020 #ifndef _KATE_REGEXP_H_
00021 #define _KATE_REGEXP_H_
00022 
00023 #include <QtCore/QRegExp>
00024 
00025 class KateRegExp
00026 {
00027   public:
00028     explicit KateRegExp(const QString &pattern, Qt::CaseSensitivity cs = Qt::CaseSensitive,
00029         QRegExp::PatternSyntax syntax = QRegExp::RegExp);
00030 
00031     bool isEmpty() const { return m_regExp.isEmpty(); }
00032     bool isValid() const { return m_regExp.isValid(); }
00033     QString pattern() const { return m_regExp.pattern(); }
00034     int numCaptures() const { return m_regExp.numCaptures(); }
00035     int pos(int nth = 0) const { return m_regExp.pos(nth); }
00036     QString cap(int nth = 0) const { return m_regExp.cap(nth); }
00037     int matchedLength() const { return m_regExp.matchedLength(); }
00038 
00039     int indexIn(const QString &str, int offset = 0,
00040         QRegExp::CaretMode caretMode = QRegExp::CaretAtZero)
00041     {
00042       return m_regExp.indexIn(str, offset, caretMode);
00043     }
00044 
00057     int lastIndexIn(const QString & str, int offset = -1,
00058         QRegExp::CaretMode caretMode = QRegExp::CaretAtZero);
00059 
00069     int repairPattern(bool & stillMultiLine);
00070 
00077     bool isMultiLine() const;
00078 
00079   private:
00080     QRegExp m_regExp;
00081 };
00082 
00083 #endif // KATEREGEXP_H
00084 
00085 // kate: space-indent on; indent-width 2; replace-tabs on;

Kate

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

kdelibs

Skip menu "kdelibs"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • Kate
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDEWebKit
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • kio
  • KIOSlave
  • KJS
  •   KJS-API
  •   WTF
  • kjsembed
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUtils
  • Nepomuk
  • Plasma
  •     Sodep
  • Solid
  • Sonnet
  • ThreadWeaver
Generated for kdelibs by doxygen 1.5.9-20090814
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal