mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
![]() |
/* This file is part of the KDE project
|
||
|
Copyright (C) 2010 David Faure <faure@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#include "textextension.h"
|
||
|
#include <kglobal.h>
|
||
|
#include "part.h"
|
||
|
|
||
|
KParts::TextExtension::TextExtension(KParts::ReadOnlyPart* parent)
|
||
|
: QObject(parent), d(0)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
KParts::TextExtension::~TextExtension()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool KParts::TextExtension::hasSelection() const
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
QString KParts::TextExtension::selectedText(Format) const
|
||
|
{
|
||
|
return QString();
|
||
|
}
|
||
|
|
||
|
QString KParts::TextExtension::completeText(Format) const
|
||
|
{
|
||
|
return QString();
|
||
|
}
|
||
|
|
||
|
KParts::TextExtension * KParts::TextExtension::childObject(QObject *obj)
|
||
|
{
|
||
|
return KGlobal::findDirectChild<KParts::TextExtension *>(obj);
|
||
|
}
|
||
|
|
||
|
int KParts::TextExtension::pageCount() const
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int KParts::TextExtension::currentPage() const
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
QString KParts::TextExtension::pageText(Format) const
|
||
|
{
|
||
|
return QString();
|
||
|
}
|
||
|
|
||
|
bool KParts::TextExtension::findText(const QString&, KFind::SearchOptions) const
|
||
|
{
|
||
|
return false;
|
||
|
}
|