KParts
textextension.h
Go to the documentation of this file.
00001 /* This file is part of the KDE project 00002 Copyright (C) 2010 David Faure <faure@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 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 KPARTS_TEXTEXTENSION_H 00021 #define KPARTS_TEXTEXTENSION_H 00022 00023 #include <QtCore/QObject> 00024 #include <kparts/kparts_export.h> 00025 #include <kfind.h> 00026 00027 namespace KParts 00028 { 00029 00030 class ReadOnlyPart; 00031 class TextExtensionPrivate; 00032 00042 class KPARTS_EXPORT TextExtension : public QObject 00043 { 00044 Q_OBJECT 00045 public: 00046 TextExtension(KParts::ReadOnlyPart* parent); 00047 ~TextExtension(); 00048 00053 static TextExtension *childObject( QObject *obj ); 00054 00055 enum Format { PlainText, HTML }; 00056 00060 virtual bool hasSelection() const; 00065 virtual QString selectedText(Format format) const; 00070 virtual QString completeText(Format format) const; 00071 00072 00077 virtual int pageCount() const; 00083 virtual int currentPage() const; 00087 virtual QString pageText(Format format) const; 00088 00101 virtual bool findText(const QString& string, KFind::SearchOptions options) const; 00102 00103 // for future extensions can be made via slots 00104 00105 Q_SIGNALS: 00109 void selectionChanged(); 00110 00111 private: 00112 // for future extensions 00113 TextExtensionPrivate* const d; 00114 }; 00115 00116 } 00117 00118 #endif /* KPARTS_TEXTEXTENSION_H */
KDE 4.6 API Reference