/usr/include/ktexteditor/containerinterface.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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | /* This file is part of the KDE libraries
Copyright (C) 2007 Philippe Fremy (phil at freehackers dot org)
Copyright (C) 2008 Joseph Wenninger (jowenn@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 version 2 as published by the Free Software Foundation.
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_CONTAINER_INTERFACE_H
#define KDELIBS_KTEXTEDITOR_CONTAINER_INTERFACE_H
#include <ktexteditor/ktexteditor_export.h>
#include <QtCore/QObject>
namespace KTextEditor
{
class Document;
class View;
/**
* \brief Class that allows the kpart host to provide some extensions.
*
* \ingroup kte_group_editor_extensions
*
* The KTextEditor framework allows the kpart host to provide additional
* services to the kpart. Those services are provided through the
* ContainerInterface class.
*
* If the container supports those specific services, it should set an
* instance of the service class with ContainerInterface::setContainer(). That
* instance should inherit QObject, have the Q_OBJECT macro and declare a
* Q_INTERFACES(), in order for the qobject_cast mechanism to work.
*
* To obtain a ContainerInterface, in order to set a specific container
* extension, the kpart host should do:
* \code
* // inside the kpart host
* Editor * editor = KTextEditor::EditorChooser::editor();
* ContainerInterface * iface = qobject_cast<ContainerInterface *>( editor );
* if (iface != NULL) {
* iface->setContainer( myContainerExtension );
* } else {
* // the kpart does not support ContainerInterface.
* }
* \endcode
*
* It is then up to the kpart to use it.
*
*/
class KTEXTEDITOR_EXPORT ContainerInterface
{
public:
/**
* Constructor.
*/
ContainerInterface();
/** Virtual Destructor */
virtual ~ContainerInterface();
/**
* Set the KTextEditor container.
*
* This method is used by the KTextEditor host to set an instance
* of a class providing optional container extensions.
*
* \sa container
*/
virtual void setContainer( QObject * container ) = 0;
/**
* Fetch the container extension.
*
* This method is used by the KTextEditor component to know
* which extensions are supported by the KTextEditor host.
*
* The kpart will cast the result with qobject_cast() to the right
* container extension to see if that particular extension is supported:
*
* <b>Example:</b>
* \code
* // inside the kpart
*
* Editor * editor = KTextEditor::EditorChooser::editor();
* ContainerInterface * iface = qobject_cast<ConainterInterace *>( editor );
* SomeContainerExtension * myExt =
* qobject_cast<SomeContainerExtension *>( iface->container() );
*
* if (myExt) {
* // do some stuff with the specific container extension
* // ...
* } else {
* // too bad, that extension is not supported.
* }
* \endcode
*
* \sa setContainer
*/
virtual QObject * container() = 0;
}; // class ContainerInterface
/**
* A container for MDI-capable kpart hosts.
*
* The kpart container for the KTextEditor interface may have different
* capabilities. For example, inside KDevelop or Kate, the container can
* manage multiple views and multiple documents. However, if the kpart text
* is used inside konqueror as a replacement of the text entry in html
* forms, the container will only support one view with one document.
*
* This class allows the kpart component to create and delete views, create
* and delete documents, fetch and set the current view. Note that the
* ktexteditor framework already supports multiple document and views and
* that the kpart host can create them and delete them as it wishes. What
* this class provides is the ability for the <i>kpart component</i> being
* hosted to do the same.
*
* An instance of this extension should be set with
* ContainerInterface::setContainerExtension().Check ContainerInterface() to
* see how to obtain an instance of ContainerInterface. The instance should
* inherit QObject, inherit MdiContainer, declare the Q_OBJECT macro and
* declare a Q_INTERFACES(KTextEditor::MdiContainer) .
*
* Code example to support MdiContainer (in the kpart host):
* \code
* class MyMdiContainer : public QObject,
* public MdiContainer
* {
* Q_OBJECT
* Q_INTERFACES( KTextEditor::MdiContainer )
*
* public:
* // ...
* }
* \endcode
*
*
* To check if the kpart hosts supports the MDI container:
* \code
* Editor * editor = KTextEditor::EditorChooser::editor();
* ContainerInterface * iface = qobject_cast<ContainerInterface *>( editor );
* if (iface) {
* MdiContainer * mdiContainer = qobject_cast<MdiContainer *>( iface->container() );
* if (MdiContainer != NULL ) {
* // great, I can create additional views
* // ...
* }
* }
* \endcode
*/
class KTEXTEDITOR_EXPORT MdiContainer
{
public:
/** Constructor */
MdiContainer();
/** Virtual destructor */
virtual ~MdiContainer();
/**
* Set the \p view requested by the part as the active view.
*
* \sa activeView
*/
virtual void setActiveView( View * view )=0;
/**
* Get the current activew view.
*
* \return the active view.
*
* \sa setActiveView
*/
virtual View * activeView()=0;
/**
* Create a new Document and return it to the kpart.
*
* Canonical implementation is:
* \code
* Document * createDocument()
* {
* Document * doc;
* // set parentQObject to relevant value
* doc = editor->createDocument( parentQObject );
* // integrate the new document in the document list of the
* // container, ...
* return doc;
* }
* \endcode
*
* The signal documentCreated() will be emitted during the creation.
*
* \return a pointer to the new Document object.
*/
virtual Document * createDocument()=0;
/**
* Closes of document \p doc .
*
* The document is about to be closed but is still valid when this
* call is made. The Document does not contain any view when this
* call is made (closeView() has been called on all the views of the
* document previously).
*
* The signal aboutToClose() is emitted before this method is
* called.
*
* \return true if the removal is authorized and acted, or
* false if removing documents by the kpart is not supported
* by the container.
*/
virtual bool closeDocument( Document * doc )=0;
/**
* Creates a new View and return it to the kpart.
*
* Canonical implementation is:
* \code
* View * createView( Document * doc )
* {
* // set parentWidget to relevant value
* return doc->createView( parentWidget );
* }
* \endcode
*
* The signal viewCreated() will be emitted during the createView()
* call.
*
* \return a pointer to the new View created.
*/
virtual View * createView( Document * doc )=0;
/**
* Closes the View \p view .
*
* The view is still valid when this call is made but will be deleted
* shortly after.
*
* \return true if the removal is authorized and acted, or
* false if the container does not support view removing from
* the kpart, or
*/
virtual bool closeView( View * view )=0;
}; // class MdiContainer
/**
* An application providing a centralized place for horizontal view bar containers (eg search bars) has
* to implement this
* @since 4.2
*/
class KTEXTEDITOR_EXPORT ViewBarContainer
{
public:
enum Position{LeftBar=0,TopBar=1,RightBar=2,BottomBar=3};
/** Constructor */
ViewBarContainer();
/** Virtual destructor */
virtual ~ViewBarContainer();
/** At this point the views parent window has to be already set, so this has to be called after any reparentings
* eg.: The implementation in Kate uses view->window() to determine where to place of the container
* if 0 is returned, the view has to handle the bar internally
*/
virtual QWidget* getViewBarParent(View *view,enum Position position)=0;
/** It is advisable to store only QPointers to the bar and its children in the caller after this point.
* The container may at any point delete the bar, eg if the container is destroyed
* The caller has to ensure that bar->parentWidget() is the widget returned by the previous function
*/
virtual void addViewBarToLayout(View *view,QWidget *bar,enum Position position)=0;
///show hide a view bar. The implementor of this interface has to take care for not showing
/// the bars of unfocused views, if needed
virtual void showViewBarForView(View *view,enum Position position)=0;
virtual void hideViewBarForView(View *view,enum Position position)=0;
/**
* The view should not delete the bar by itself, but tell the container to delete the bar.
* This is for instance useful, in the destructor of the view. The bar must not life longer
* than the view.
*/
virtual void deleteViewBarForView(View *view,enum Position position)=0;
};
} // namespace KTextEditor
Q_DECLARE_INTERFACE(KTextEditor::ContainerInterface, "org.kde.KTextEditor.ContainerInterface")
Q_DECLARE_INTERFACE(KTextEditor::MdiContainer, "org.kde.KTextEditor.MdiContainer")
Q_DECLARE_INTERFACE(KTextEditor::ViewBarContainer, "org.kde.KTextEditor.ViewBarContainer")
#endif // KDELIBS_KTEXTEDITOR_CONTAINER_EXTENSION_H
|