KTextEditor

Editor Extension Interfaces

A KTextEditor implementation may implement an Editor extension interface, but it does not need to.

So as a KTextEditor user you have to cast the Editor to the desired interface and then check, whether the cast returns NULL or the valid interface.

Use qobject_cast to cast a Editor editor into the DesiredExtensionInterface, example:

// editor is of type KTextEditor::Editor*
auto iface = qobject_cast<KTextEditor::DesiredExtensionInterface*>(view);
if (iface) {
// the implementation supports the interface
// do stuff
} else {
// the implementation does not support the interface
}
See also
KTextEditor::Editor

The following classes are a list of all available Editor extension interfaces.

This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:44 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.