/usr/include/kdevplatform/interfaces/idocumentcontroller.h is in kdevelop-dev 4:5.2.1-1ubuntu4.
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 | /***************************************************************************
* Copyright 2007 Alexander Dymo <adymo@kdevelop.org> *
* *
* This program 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 program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef KDEVPLATFORM_IDOCUMENTCONTROLLER_H
#define KDEVPLATFORM_IDOCUMENTCONTROLLER_H
#include <QObject>
#include <QList>
#include <QUrl>
#include <ktexteditor/cursor.h>
#include <ktexteditor/range.h>
#include "interfacesexport.h"
#include "idocument.h"
namespace KTextEditor {
class View;
}
namespace KDevelop {
class ICore;
class KDEVPLATFORMINTERFACES_EXPORT IDocumentFactory {
public:
virtual ~IDocumentFactory() {}
virtual IDocument* create(const QUrl&, ICore* ) = 0;
};
/**
*
* Allows to access the open documents and also open new ones
*
* @class IDocumentController
*/
class KDEVPLATFORMINTERFACES_EXPORT IDocumentController: public QObject {
Q_OBJECT
public:
enum DocumentActivation
{
DefaultMode = 0, /**Activate document and create a view if no other flags passed.*/
DoNotActivate = 1, /**Don't activate the Document.*/
DoNotCreateView = 2, /**Don't create and show the view for the Document.*/
DoNotFocus = 4, /**Don't change the keyboard focus.*/
DoNotAddToRecentOpen = 8, /**Don't add the document to the File/Open Recent menu.*/
};
Q_DECLARE_FLAGS(DocumentActivationParams, DocumentActivation)
explicit IDocumentController(QObject *parent);
/**
* Finds the first document object corresponding to a given url.
*
* @param url The Url of the document.
* @return The corresponding document, or null if not found.
*/
virtual KDevelop::IDocument* documentForUrl( const QUrl & url ) const = 0;
/// @return The list of all open documents
virtual QList<KDevelop::IDocument*> openDocuments() const = 0;
/**
* Returns the curently active or focused document.
*
* @return The active document.
*/
virtual KDevelop::IDocument* activeDocument() const = 0;
virtual void activateDocument( KDevelop::IDocument * document, const KTextEditor::Range& range = KTextEditor::Range::invalid() ) = 0;
virtual void registerDocumentForMimetype( const QString&, KDevelop::IDocumentFactory* ) = 0;
virtual bool saveAllDocuments(KDevelop::IDocument::DocumentSaveMode mode = KDevelop::IDocument::Default) = 0;
virtual bool saveSomeDocuments(const QList<IDocument*>& list, KDevelop::IDocument::DocumentSaveMode mode = KDevelop::IDocument::Default) = 0;
virtual bool saveAllDocumentsForWindow(KParts::MainWindow* mw, IDocument::DocumentSaveMode mode, bool currentAreaOnly = false) = 0;
/// Opens a text document containing the @p data text.
virtual KDevelop::IDocument* openDocumentFromText( const QString& data ) = 0;
virtual IDocumentFactory* factory(const QString& mime) const = 0;
virtual KTextEditor::Document* globalTextEditorInstance()=0;
/**
* @returns the KTextEditor::View of the current document, in case it is a text document
*/
virtual KTextEditor::View* activeTextDocumentView() const = 0;
public Q_SLOTS:
/**
* Opens a new or existing document.
*
* @param url The full Url of the document to open.
* @param cursor The location information, if applicable.
* @param activationParams Indicates whether to fully activate the document.
* @param encoding the encoding for the document, the name must be accepted by QTextCodec,
* if an empty encoding name is given, the document should fallback to its
* own default encoding, e.g. the system encoding or the global user settings
*/
KDevelop::IDocument* openDocument( const QUrl &url,
const KTextEditor::Cursor& cursor,
DocumentActivationParams activationParams = {},
const QString& encoding = {});
/**
* Opens a new or existing document.
*
* @param url The full Url of the document to open.
* @param range The range of text to select, if applicable.
* @param activationParams Indicates whether to fully activate the document
* @param encoding the encoding for the document, the name must be accepted by QTextCodec,
* if an empty encoding name is given, the document should fallback to its
* own default encoding, e.g. the system encoding or the global user settings
* @param buddy Optional buddy document. If 0, the registered IBuddyDocumentFinder
* for the URL's mimetype will be queried to find a fitting buddy.
* If a buddy was found (or passed) @p url will be opened next
* to its buddy.
*
* @return The opened document
*/
virtual KDevelop::IDocument* openDocument( const QUrl &url,
const KTextEditor::Range& range = KTextEditor::Range::invalid(),
DocumentActivationParams activationParams = {},
const QString& encoding = {},
IDocument* buddy = nullptr) = 0;
/**
* Opens a document from the IDocument instance.
*
* @param doc The IDocument to add
* @param range The location information, if applicable.
* @param activationParams Indicates whether to fully activate the document.
* @param buddy Optional buddy document. If 0, the registered IBuddyDocumentFinder
* for the Documents mimetype will be queried to find a fitting buddy.
* If a buddy was found (or passed) @p url will be opened next
* to its buddy.
*/
virtual bool openDocument(IDocument* doc,
const KTextEditor::Range& range = KTextEditor::Range::invalid(),
DocumentActivationParams activationParams = {},
IDocument* buddy = nullptr) = 0;
/**
* Opens a new or existing document.
*
* @param url The full Url of the document to open.
* @param prefName The name of the preferred KPart to open that document
*/
virtual KDevelop::IDocument* openDocument( const QUrl &url, const QString& prefName ) = 0;
virtual bool closeAllDocuments() = 0;
Q_SIGNALS:
/// Emitted when the document has been activated.
void documentActivated( KDevelop::IDocument* document );
/**
* Emitted whenever the active cursor jumps from one document+cursor to another,
* as e.g. caused by a call to openDocument(..).
*
* This is also emitted when a document is only activated. Then previousDocument is zero.
*/
void documentJumpPerformed( KDevelop::IDocument* newDocument, KTextEditor::Cursor newCursor,
KDevelop::IDocument* previousDocument, KTextEditor::Cursor previousCursor);
/// Emitted when a document has been saved.
void documentSaved( KDevelop::IDocument* document );
/**
* Emitted when a document has been opened.
*
* NOTE: The document may not be loaded from disk/network at this point.
* NOTE: No views exist for the document at the time this signal is emitted.
*/
void documentOpened( KDevelop::IDocument* document );
/**
* Emitted when a document has been loaded.
*
* NOTE: No views exist for the document at the time this signal is emitted.
*/
void documentLoaded( KDevelop::IDocument* document );
/**
* Emitted when a text document has been loaded, and the text document created.
*
* NOTE: no views exist for the document at the time this signal is emitted.
*/
void textDocumentCreated( KDevelop::IDocument* document );
/// Emitted when a document has been closed.
void documentClosed( KDevelop::IDocument* document );
/**
* This is emitted when the document state(the relationship
* between the file in the editor and the file stored on disk) changes.
*/
void documentStateChanged( KDevelop::IDocument* document );
/// This is emitted when the document content changed.
void documentContentChanged( KDevelop::IDocument* document );
/**
* Emitted when a document has been loaded, but before documentLoaded(..) is emitted.
*
* This allows parts of kdevplatform to prepare data-structures that can be used by other parts
* during documentLoaded(..).
*/
void documentLoadedPrepare( KDevelop::IDocument* document );
/// Emitted when a document url has changed.
void documentUrlChanged( KDevelop::IDocument* document );
friend class IDocument;
};
} // namespace KDevelop
Q_DECLARE_OPERATORS_FOR_FLAGS(KDevelop::IDocumentController::DocumentActivationParams)
#endif
|