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

Kate

kateescapedtextsearch.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 02110-1301, USA.
00018 */
00019 
00020 #ifndef _KATE_ESCAPEDTEXTSEARCH_H_
00021 #define _KATE_ESCAPEDTEXTSEARCH_H_
00022 
00023 #include <QtCore/QObject>
00024 
00025 #include <ktexteditor/range.h>
00026 
00027 class KateDocument;
00028 
00029 // needed for parsing replacement text like "\1:\2"
00030 struct ReplacementPart {
00031   enum Type {
00032     Reference, // \1..\9
00033     Text,
00034     UpperCase, // \U = Uppercase from now on
00035     LowerCase, // \L = Lowercase from now on
00036     KeepCase, // \E = back to original case
00037     Counter // \# = 1, 2, ... incremented for each replacement of <Replace All>
00038   };
00039 
00040   Type type;
00041 
00042   // Type in {Reference, Counter}
00043   int index; // [0..9] 0=full match, 1=first capture, ..
00044 
00045   // Type = Text
00046   QString text;
00047 };
00048 
00049 class KateEscapedTextSearch : public QObject
00050 {
00051   Q_OBJECT
00052 
00053   public:
00054     explicit KateEscapedTextSearch (KateDocument *document, bool casesensitive, bool wholeWords);
00055     ~KateEscapedTextSearch ();
00056 
00057   //
00058   // KTextEditor::SearchInterface stuff
00059   //
00060   public Q_SLOTS:
00061     QVector<KTextEditor::Range> search (const KTextEditor::Range & inputRange,
00062         const QString &text, bool backwards = false);
00063 
00064   //
00065   // internal implementation....
00066   //
00067   /*
00068    * Public string processing helpers
00069    */
00070   public:
00081     static QString escapePlaintext(const QString & text, QList<ReplacementPart> * parts = NULL,
00082         bool replacementGoodies = false);
00083 
00084   private:
00085     KateDocument *const m_document;
00086     bool m_casesensitive;
00087     bool m_wholeWords;
00088 };
00089 
00090 #endif
00091 
00092 // kate: space-indent on; indent-width 2; replace-tabs on;
00093 

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