mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
312 lines
5.6 KiB
C++
312 lines
5.6 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2001 Christoph Cullmann (cullmann@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 <QtCore/qcoreapplication.h>
|
|
#include <QtDBus/QtDBus>
|
|
|
|
#include "cursor.h"
|
|
|
|
#include "configpage.h"
|
|
#include "moc_configpage.cpp"
|
|
|
|
#include "factory.h"
|
|
#include "moc_factory.cpp"
|
|
|
|
#include "editor.h"
|
|
#include "moc_editor.cpp"
|
|
|
|
#include "document.h"
|
|
|
|
#include "view.h"
|
|
#include "moc_view.cpp"
|
|
|
|
#include "plugin.h"
|
|
#include "moc_plugin.cpp"
|
|
|
|
#include "recoveryinterface.h"
|
|
#include "commandinterface.h"
|
|
#include "markinterface.h"
|
|
#include "modificationinterface.h"
|
|
#include "searchinterface.h"
|
|
#include "sessionconfiginterface.h"
|
|
#include "templateinterface.h"
|
|
#include "texthintinterface.h"
|
|
#include "variableinterface.h"
|
|
#include "containerinterface.h"
|
|
|
|
#include "annotationinterface.h"
|
|
#include "moc_annotationinterface.cpp"
|
|
|
|
#include "modeinterface.h"
|
|
|
|
#include <kparts/factory.h>
|
|
#include <kpluginfactory.h>
|
|
#include <kpluginloader.h>
|
|
#include <kdebug.h>
|
|
|
|
using namespace KTextEditor;
|
|
|
|
Factory::Factory( QObject *parent )
|
|
: KParts::Factory( parent )
|
|
{
|
|
}
|
|
|
|
Factory::~Factory()
|
|
{
|
|
}
|
|
|
|
class KTextEditor::EditorPrivate {
|
|
public:
|
|
EditorPrivate()
|
|
: simpleMode (false) { }
|
|
bool simpleMode;
|
|
QString defaultEncoding;
|
|
};
|
|
|
|
Editor::Editor( QObject *parent )
|
|
: QObject ( parent )
|
|
, d(new KTextEditor::EditorPrivate())
|
|
{
|
|
}
|
|
|
|
Editor::~Editor()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
void Editor::setSimpleMode (bool on)
|
|
{
|
|
d->simpleMode = on;
|
|
}
|
|
|
|
bool Editor::simpleMode () const
|
|
{
|
|
return d->simpleMode;
|
|
}
|
|
|
|
const QString &Editor::defaultEncoding () const
|
|
{
|
|
return d->defaultEncoding;
|
|
}
|
|
|
|
void Editor::setDefaultEncoding (const QString &defaultEncoding)
|
|
{
|
|
d->defaultEncoding = defaultEncoding;
|
|
}
|
|
|
|
bool View::isActiveView() const
|
|
{
|
|
return this == document()->activeView();
|
|
}
|
|
|
|
bool View::setSelection(const Cursor& position, int length,bool wrap)
|
|
{
|
|
KTextEditor::Document *doc=document();
|
|
if (!document()) return false;
|
|
if (length==0) return false;
|
|
if (!doc->cursorInText(position)) return false;
|
|
Cursor end=Cursor(position.line(),position.column());
|
|
if (!wrap) {
|
|
int col=end.column()+length;
|
|
if (col<0) col=0;
|
|
if (col>doc->lineLength(end.line())) col=doc->lineLength(end.line());
|
|
end.setColumn(col);
|
|
} else {
|
|
kDebug()<<"KTextEditor::View::setSelection(pos,len,true) not implemented yet";
|
|
}
|
|
return setSelection(Range(position,end));
|
|
}
|
|
|
|
bool View::insertText (const QString &text )
|
|
{
|
|
KTextEditor::Document *doc=document();
|
|
if (!doc) return false;
|
|
return doc->insertText(cursorPosition(),text,blockSelection());
|
|
}
|
|
|
|
|
|
struct KTextEditorFactorySet : public QSet<KPluginFactory*>
|
|
{
|
|
KTextEditorFactorySet();
|
|
~KTextEditorFactorySet();
|
|
};
|
|
K_GLOBAL_STATIC(KTextEditorFactorySet, s_factories)
|
|
KTextEditorFactorySet::KTextEditorFactorySet() {
|
|
// K_GLOBAL_STATIC is cleaned up *after* Q(Core)Application is gone
|
|
// but we have to cleanup before -> use qAddPostRoutine
|
|
qAddPostRoutine(s_factories.destroy);
|
|
}
|
|
KTextEditorFactorySet::~KTextEditorFactorySet() {
|
|
qRemovePostRoutine(s_factories.destroy); // post routine is installed!
|
|
qDeleteAll(*this);
|
|
}
|
|
|
|
Editor *KTextEditor::editor(const char *libname)
|
|
{
|
|
KPluginFactory *fact=KPluginLoader(libname).factory();
|
|
|
|
KTextEditor::Factory *ef=qobject_cast<KTextEditor::Factory*>(fact);
|
|
|
|
if (!ef) {
|
|
delete fact;
|
|
return 0;
|
|
}
|
|
|
|
s_factories->insert(fact);
|
|
|
|
return ef->editor();
|
|
}
|
|
|
|
ConfigPage::ConfigPage(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
}
|
|
|
|
ConfigPage::~ConfigPage()
|
|
{
|
|
}
|
|
|
|
View::View(QWidget *parent )
|
|
: QWidget(parent),
|
|
KXMLGUIClient()
|
|
{
|
|
}
|
|
|
|
View::~View()
|
|
{
|
|
}
|
|
|
|
Plugin::Plugin(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
Plugin::~Plugin()
|
|
{
|
|
}
|
|
|
|
MarkInterface::MarkInterface()
|
|
{
|
|
}
|
|
|
|
MarkInterface::~MarkInterface()
|
|
{
|
|
}
|
|
|
|
ModificationInterface::ModificationInterface ()
|
|
{
|
|
}
|
|
|
|
ModificationInterface::~ModificationInterface()
|
|
{
|
|
}
|
|
|
|
ContainerInterface::ContainerInterface()
|
|
{
|
|
}
|
|
|
|
ContainerInterface::~ContainerInterface()
|
|
{
|
|
}
|
|
|
|
MdiContainer::MdiContainer()
|
|
{
|
|
}
|
|
|
|
MdiContainer::~MdiContainer()
|
|
{
|
|
}
|
|
|
|
ViewBarContainer::ViewBarContainer()
|
|
{
|
|
}
|
|
|
|
ViewBarContainer::~ViewBarContainer()
|
|
{
|
|
}
|
|
|
|
SearchInterface::SearchInterface()
|
|
{
|
|
}
|
|
|
|
SearchInterface::~SearchInterface()
|
|
{
|
|
}
|
|
|
|
SessionConfigInterface::SessionConfigInterface()
|
|
{
|
|
}
|
|
|
|
SessionConfigInterface::~SessionConfigInterface()
|
|
{
|
|
}
|
|
|
|
ParameterizedSessionConfigInterface::ParameterizedSessionConfigInterface()
|
|
{
|
|
}
|
|
|
|
ParameterizedSessionConfigInterface::~ParameterizedSessionConfigInterface()
|
|
{
|
|
}
|
|
|
|
TemplateInterface::TemplateInterface()
|
|
{
|
|
}
|
|
|
|
TemplateInterface::~TemplateInterface()
|
|
{
|
|
}
|
|
|
|
TextHintInterface::TextHintInterface()
|
|
{
|
|
}
|
|
|
|
TextHintInterface::~TextHintInterface()
|
|
{
|
|
}
|
|
|
|
VariableInterface::VariableInterface()
|
|
{
|
|
}
|
|
|
|
VariableInterface::~VariableInterface()
|
|
{
|
|
}
|
|
|
|
CoordinatesToCursorInterface::~CoordinatesToCursorInterface() {
|
|
}
|
|
|
|
ModeInterface::ModeInterface()
|
|
{
|
|
}
|
|
|
|
ModeInterface::~ModeInterface()
|
|
{
|
|
}
|
|
|
|
RecoveryInterface::RecoveryInterface()
|
|
{
|
|
}
|
|
|
|
RecoveryInterface::~RecoveryInterface() {
|
|
}
|
|
|
|
|
|
// kate: space-indent on; indent-width 2; replace-tabs on;
|
|
|