/usr/include/ktexteditor/plugin.h is in kdelibs5-dev 4:4.13.3-0ubuntu0.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | /* This file is part of the KDE libraries
Copyright (C) 2001 Christoph Cullmann <cullmann@kde.org>
Copyright (C) 2005 Dominik Haumann (dhdev@gmx.de) (documentation)
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.
*/
#ifndef KDELIBS_KTEXTEDITOR_PLUGIN_H
#define KDELIBS_KTEXTEDITOR_PLUGIN_H
#include <QtCore/QObject>
#include <ktexteditor/ktexteditor_export.h>
#include <kservice.h>
class KConfig;
namespace KTextEditor
{
class Document;
class View;
/**
* \brief KTextEditor Plugin interface.
*
* Topics:
* - \ref plugin_intro
* - \ref plugin_config
* - \ref plugin_sessions
* - \ref plugin_arch
*
* \section plugin_intro Introduction
*
* The Plugin class provides methods to create loadable plugins for all
* KTextEditor implementations. A plugin can handle several documents and
* views. For every document the plugin should handle addDocument() is called
* and for every view addView().
*
* \section plugin_config Configuration Management
*
* @todo write docu about config pages (new with kpluginmanager)
* @todo write docu about save/load settings (related to config page)
*
* \section plugin_sessions Session Management
*
* As an extension a Plugin can implement the SessionConfigInterface. This
* interface provides functions to read and write session related settings.
* If you have session dependent data additionally derive your Plugin from
* this interface and implement the session related functions, for example:
* \code
* class MyPlugin : public KTextEditor::Plugin,
* public KTextEditor::SessionConfigInterface
* {
* Q_OBJECT
* Q_INTERFACES(KTextEditor::SessionConfigInterface)
*
* // ...
* virtual void readSessionConfig (const KConfigGroup& config);
* virtual void writeSessionConfig (KConfigGroup& config);
* };
* \endcode
*
* \section plugin_arch Plugin Architecture
*
* After the plugin is loaded the editor implementation should call
* addDocument() and addView() for all documents and views the plugin should
* handle. If your plugin has a GUI it is common to add an extra class, like:
* \code
* class PluginView : public QObject, public KXMLGUIClient
* {
* Q_OBJECT
* public:
* // Constructor and other methods
* PluginView( KTextEditor::View* view )
* : QObject( view ), KXMLGUIClient( view ), m_view( view )
* { ... }
* // ...
* private:
* KTextEditor::View* m_view;
* };
* \endcode
* Your KTextEditor::Plugin derived class then will create a new PluginView
* for every View, i.e. for every call of addView().
*
* The method removeView() will be called whenever a View is removed/closed.
* If you have a PluginView for every view this is the place to remove it.
*
* \see KTextEditor::Editor, KTextEditor::Document, KTextEditor::View,
* KTextEditor::SessionConfigInterface
* \author Christoph Cullmann \<cullmann@kde.org\>
*/
class KTEXTEDITOR_EXPORT Plugin : public QObject
{
Q_OBJECT
public:
/**
* Constructor.
*
* Create a new plugin.
* \param parent parent object
*/
Plugin ( QObject *parent );
/**
* Virtual destructor.
*/
virtual ~Plugin ();
/*
* Following methodes allow the plugin to react on view and document
* creation.
*/
public:
/**
* Add a new \p document to the plugin.
* This method is called whenever the plugin should handle another
* \p document.
*
* For every call of addDocument() will finally follow a call of
* removeDocument(), i.e. the number of calls are identic.
*
* \param document new document to handle
* \see removeDocument(), addView()
*/
virtual void addDocument (Document *document) { Q_UNUSED(document); }
/**
* Remove the \p document from the plugin.
* This method is called whenever the plugin should stop handling
* the \p document.
*
* For every call of addDocument() will finally follow a call of
* removeDocument(), i.e. the number of calls are identic.
*
* \param document document to hang the gui out from
* \see addDocument(), removeView()
*/
virtual void removeDocument (Document *document) { Q_UNUSED(document); }
/**
* This method is called whenever the plugin should add its GUI to
* \p view.
* The process for the Editor can be roughly described as follows:
* - add documents the plugin should handle via addDocument()
* - for every document \e doc call addView() for \e every view for
* \e doc.
*
* For every call of addView() will finally follow a call of
* removeView(), i.e. the number of calls are identic.
*
* \note As addView() is called for \e every view in which the plugin's
* GUI should be visible you must \e not add the GUI by
* iterating over all Document::views() yourself neither use the
* signal Document::viewCreated().
*
* \param view view to hang the gui in
* \see removeView(), addDocument()
*/
virtual void addView (View *view) { Q_UNUSED(view); }
/**
* This method is called whenever the plugin should remove its GUI from
* \p view.
*
* For every call of addView() will finally follow a call of
* removeView(), i.e. the number of calls are identic.
*
* \param view view to hang the gui out from
* \see addView(), removeDocument()
*/
virtual void removeView (View *view) { Q_UNUSED(view); }
private:
class PluginPrivate* const d;
};
/**
* Create a plugin represented by \p service with parent object \p parent.
* To get the KService object you usually use KServiceTypeTrader. Example
* \code
* KService::List list = KServiceTypeTrader::self()->query("KTextEditor/Plugin");
*
* foreach(const KService::Ptr &service, list) {
* // do something with service
* }
* \endcode
* \return the plugin or NULL if it could not be loaded
*/
#ifndef KDE_NO_DEPRECATED
KTEXTEDITOR_EXPORT_DEPRECATED Plugin *createPlugin ( KService::Ptr service, QObject *parent );
#endif
}
#endif
// kate: space-indent on; indent-width 2; replace-tabs on;
|