/usr/include/ktexteditor/modeinterface.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 | /* This file is part of the KDE project
Copyright (C) 2010 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 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_MODEINTERFACE_H
#define KDELIBS_KTEXTEDITOR_MODEINTERFACE_H
#include <ktexteditor/ktexteditor_export.h>
namespace KTextEditor
{
class Document;
/**
* \brief Mode information interface for the Document.
*
* \ingroup kte_group_doc_extensions
*
* \section modeinterface_intro Introduction
*
* The ModeInterface provides access to the modes of a document
*
* \section modeinterface_access Accessing the ModeInterface
*
* The ModeInterface is supposed to be an extension interface for a
* Document, i.e. the Document inherits the interface \e provided that the
* used KTextEditor library implements the interface. Use qobject_cast to
* access the interface:
* \code
* // doc is of type KTextEditor::Document*
* KTextEditor::ModeInterface *iface =
* qobject_cast<KTextEditor::ModeInterface*>( doc );
*
* if( iface ) {
* // the implementation supports the interface
* // do stuff
* }
* \endcode
*
* \see KTextEditor::Document
* \author Joseph Wenninger \<jowenn@kde.org\>
*/
class KTEXTEDITOR_EXPORT ModeInterface
{
public:
/**
* Constructor.
*/
ModeInterface();
/**
* Virtual destructor.
*/
virtual ~ModeInterface();
/**
* \brief Get all available file modes for the current document.
*
* \return Returns a list of all possible modes within a document.
*
* \see KTextEditor::Document::mode()
*/
virtual QStringList allPossibleModes() const = 0;
/**
* \brief Get the possible modes for a given position
*
* The mode of a certain position might be ambiguos. eg. mode C++ could stand for
* the source or the header file. In most cases this mode will be equal to the highlighting name
* but it does not have to be. Modes should not be mixed with HighlightingModes.
* For instance for the toplevel in a document this might defer. For sub modes it might in the future
*
*
* \see modes()
*
* TODO: I intended to make this const but Kate's implementation needs to
* call kateTextline which is non-const. Solution?
*/
virtual QString modeAt(const Cursor &position) = 0;
};
}
Q_DECLARE_INTERFACE(KTextEditor::ModeInterface, "org.kde.KTextEditor.ModeInterface")
#endif // KDELIBS_KTEXTEDITOR_MODEINTERFACE_H
// kate: space-indent on; indent-width 2; replace-tabs on;
|