KTextEditor

View Extension Interfaces

A KTextEditor implementation may implement a View extension interface, but it does not need to.

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

Use qobject_cast to cast a View view into the DesiredExtensionInterface, example:

// view is of type KTextEditor::View*
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::View

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

This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:46:29 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.