KParts::NavigationExtension Class
class KParts::NavigationExtensionAn extension to KParts::ReadOnlyPart, which allows a better integration of parts with browsers (in particular Konqueror). More...
Header: | #include <KParts/NavigationExtension> |
CMake: | find_package(KF6 REQUIRED COMPONENTS Parts) target_link_libraries(mytarget PRIVATE KF6::Parts) |
Inherits: | QObject |
Public Types
ActionGroupMap | |
ActionSlotMap | |
enum | PopupFlag { DefaultPopupItems, ShowBookmark, ShowCreateDirectory, ShowTextSelectionItems, NoDeletion, …, ShowPropertiesshow } |
flags | PopupFlags |
Properties
- urlDropHandling : bool
Public Functions
NavigationExtension(KParts::ReadOnlyPart *parent) | |
QString | actionText(const char *name) const |
bool | isActionEnabled(const char *name) const |
bool | isURLDropHandlingEnabled() const |
void | pasteRequest() |
virtual void | restoreState(QDataStream &stream) |
virtual void | saveState(QDataStream &stream) |
void | setURLDropHandlingEnabled(bool enable) |
virtual int | xOffset() |
virtual int | yOffset() |
Signals
void | addWebSideBar(const QUrl &url, const QString &name) |
void | createNewWindow(const QUrl &url) |
void | enableAction(const char *name, bool enabled) |
void | itemsRemoved(const KFileItemList &items) |
void | loadingProgress(int percent) |
void | mouseOverInfo(const KFileItem &item) |
void | moveTopLevelWidget(int x, int y) |
void | openUrlNotify() |
void | openUrlRequest(const QUrl &url, const KParts::OpenUrlArguments &arguments = KParts::OpenUrlArguments()) |
void | openUrlRequestDelayed(const QUrl &url, const KParts::OpenUrlArguments &arguments) |
void | popupMenu(const QPoint &global, const KFileItemList &items, const KParts::OpenUrlArguments &arguments = KParts::OpenUrlArguments(), KParts::NavigationExtension::PopupFlags flags = KParts::NavigationExtension::DefaultPopupItems, const KParts::NavigationExtension::ActionGroupMap &actionGroups = ActionGroupMap()) |
void | popupMenu(const QPoint &global, const QUrl &url, mode_t mode = static_cast<mode_t>(-1), const KParts::OpenUrlArguments &arguments = KParts::OpenUrlArguments(), KParts::NavigationExtension::PopupFlags flags = KParts::NavigationExtension::DefaultPopupItems, const KParts::NavigationExtension::ActionGroupMap &actionGroups = ActionGroupMap()) |
void | requestFocus(KParts::ReadOnlyPart *part) |
void | resizeTopLevelWidget(int w, int h) |
void | selectionInfo(const KFileItemList &items) |
void | setActionText(const char *name, const QString &text) |
void | setIconUrl(const QUrl &url) |
void | setLocationBarUrl(const QString &url) |
void | setPageSecurity(int) |
void | speedProgress(int bytesPerSecond) |
Static Public Members
KParts::NavigationExtension::ActionSlotMap * | actionSlotMap() |
KParts::NavigationExtension * | childObject(QObject *obj) |
Detailed Description
Remember that ReadOnlyPart only has openUrl(QUrl) and a few arguments() but not much more. For full-fledged browsing, we need much more than that, including enabling/disabling of standard actions (print, copy, paste...), allowing parts to save and restore their data into the back/forward history, allowing parts to control the location bar URL, to requests URLs to be opened by the hosting browser, etc.
The part developer needs to define its own class derived from BrowserExtension, to implement the virtual methods [and the standard-actions slots, see below].
The way to associate the BrowserExtension with the part is to simply create the BrowserExtension as a child of the part (in QObject's terms). The hosting application will look for it automatically.
Another aspect of the browser integration is that a set of standard actions are provided by the browser, but implemented by the part (for the actions it supports).
The following standard actions are defined by the host of the view:
[selection-dependent actions]
- cut : Copy selected items to clipboard and store 'not cut' in clipboard.
- copy : Copy selected items to clipboard and store 'cut' in clipboard.
- paste : Paste clipboard into view URL.
- pasteTo(const QUrl &) : Paste clipboard into given URL.
- searchProvider : Lookup selected text at default search provider
[normal actions]
- None anymore.
The view defines a slot with the name of the action in order to implement the action. The browser will detect the slot automatically and connect its action to it when appropriate (i.e. when the view is active).
The selection-dependent actions are disabled by default and the view should enable them when the selection changes, emitting enableAction().
The normal actions do not depend on the selection.
A special case is the configuration slots, not connected to any action directly.
[configuration slot]
- reparseConfiguration : Re-read configuration and apply it.
- disableScrolling: no scrollbars
Member Type Documentation
NavigationExtension::ActionGroupMap
Associates a list of actions with a predefined name known by the host's popupmenu: "editactions" for actions related text editing, "linkactions" for actions related to hyperlinks, "partactions" for any other actions provided by the part
NavigationExtension::ActionSlotMap
enum NavigationExtension::PopupFlag
flags NavigationExtension::PopupFlags
Set of flags passed via the popupMenu signal, to ask for some items in the popup menu.
Constant | Value | Description |
---|---|---|
KParts::NavigationExtension::DefaultPopupItems | 0x0000 | default value, no additional menu item |
KParts::NavigationExtension::ShowBookmark | 0x0008 | show "add to bookmarks" (usually not done on the local filesystem) |
KParts::NavigationExtension::ShowCreateDirectory | 0x0010 | show "create directory" (usually only done on the background of the view, or in hierarchical views like directory trees, where the new dir would be visible) |
KParts::NavigationExtension::ShowTextSelectionItems | 0x0020 | set when selecting text, for a popup that only contains text-related items. |
KParts::NavigationExtension::NoDeletion | 0x0040 | deletion, trashing and renaming not allowed (e.g. parent dir not writeable). (this is only needed if the protocol itself supports deletion, unlike e.g. HTTP) |
KParts::NavigationExtension::IsLink | 0x0080 | show "Bookmark This Link" and other link-related actions (linkactions merging group) |
KParts::NavigationExtension::ShowUrlOperations | 0x0100 | show copy, paste, as well as cut if NoDeletion is not set. |
KParts::NavigationExtension::ShowPropertiesshow | ? | "Properties" action (usually done by directory views) |
The PopupFlags type is a typedef for QFlags<PopupFlag>. It stores an OR combination of PopupFlag values.
Property Documentation
urlDropHandling : bool
Access functions:
bool | isURLDropHandlingEnabled() const |
void | setURLDropHandlingEnabled(bool enable) |
Member Function Documentation
[explicit]
NavigationExtension::NavigationExtension(KParts::ReadOnlyPart *parent)
Constructor
parent The KParts::ReadOnlyPart that this extension ... "extends" :)
[static]
KParts::NavigationExtension::ActionSlotMap *NavigationExtension::actionSlotMap()
Returns a pointer to the static map containing the action names as keys and corresponding SLOT()'ified method names as data entries. The map is created if it doesn't exist yet.
This is very useful for the host component, when connecting the own signals with the extension's slots. Basically you iterate over the map, check if the extension implements the slot and connect to the slot using the data value of your map iterator. Checking if the extension implements a certain slot can be done like this:
extension->metaObject()->slotNames().contains( actionName + "()" )
(note that actionName is the iterator's key value if already iterating over the action slot map, returned by this method)
Connecting to the slot can be done like this:
connect( yourObject, SIGNAL( yourSignal() ), extension, mapIterator.data() )
(where "mapIterator" is your ActionSlotMap iterator)
QString NavigationExtension::actionText(const char *name) const
Returns the text of an action, if it was set explicitly by the part. When the setActionText signal is emitted, the browserextension stores the text of the action internally, so that it's possible to query later for the text of the action, using this method.
See also setActionText().
[signal]
void NavigationExtension::addWebSideBar(const QUrl &url, const QString &name)
Ask the hosting application to add a new HTML (aka Mozilla/Netscape) SideBar entry.
[static]
KParts::NavigationExtension *NavigationExtension::childObject(QObject *obj)
Queries obj for a child object which inherits from this BrowserExtension class. Convenience method.
[signal]
void NavigationExtension::createNewWindow(const QUrl &url)
Asks the hosting browser to open a new window for the given url and return a reference to the content part.
[signal]
void NavigationExtension::enableAction(const char *name, bool enabled)
Enables or disable a standard action held by the browser.
See class documentation for the list of standard actions.
bool NavigationExtension::isActionEnabled(const char *name) const
Returns the status (enabled/disabled) of an action. When the enableAction signal is emitted, the browserextension stores the status of the action internally, so that it's possible to query later for the status of the action, using this method.
bool NavigationExtension::isURLDropHandlingEnabled() const
Returns whether url drop handling is enabled. See setURLDropHandlingEnabled for more information about this property.
Note: Getter function for property urlDropHandling.
[signal]
void NavigationExtension::itemsRemoved(const KFileItemList &items)
Inform the host about items that have been removed.
[signal]
void NavigationExtension::loadingProgress(int percent)
Since the part emits the jobid in the started() signal, progress information is automatically displayed.
However, if you don't use a KIO::Job in the part, you can use loadingProgress() and speedProgress() to display progress information.
[signal]
void NavigationExtension::mouseOverInfo(const KFileItem &item)
Inform the hosting application that the user moved the mouse over an item. Used when the mouse is on an URL.
[signal]
void NavigationExtension::moveTopLevelWidget(int x, int y)
Ask the hosting application to move the top level widget.
[signal]
void NavigationExtension::openUrlNotify()
Tells the hosting browser that the part opened a new URL (which can be queried via KParts::Part::url().
This helps the browser to update/create an entry in the history. The part may not emit this signal together with openUrlRequest(). Emit openUrlRequest() if you want the browser to handle a URL the user asked to open (from within your part/document). This signal however is useful if you want to handle URLs all yourself internally, while still telling the hosting browser about new opened URLs, in order to provide a proper history functionality to the user. An example of usage is a html rendering component which wants to emit this signal when a child frame document changed its URL. Conclusion: you probably want to use openUrlRequest() instead.
[signal]
void NavigationExtension::openUrlRequest(const QUrl &url, const KParts::OpenUrlArguments &arguments = KParts::OpenUrlArguments())
Asks the host (browser) to open url.
To set a reload, the x and y offsets, the service type etc., fill in the appropriate fields in the args structure. Hosts should not connect to this signal but to openUrlRequestDelayed().
[signal]
void NavigationExtension::openUrlRequestDelayed(const QUrl &url, const KParts::OpenUrlArguments &arguments)
This signal is emitted when openUrlRequest() is called, after a 0-seconds timer. This allows the caller to terminate what it's doing first, before (usually) being destroyed. Parts should never use this signal, hosts should only connect to this signal.
void NavigationExtension::pasteRequest()
Asks the hosting browser to perform a paste (using openUrlRequestDelayed())
[signal]
void NavigationExtension::popupMenu(const QPoint &global, const KFileItemList &items, const KParts::OpenUrlArguments &arguments = KParts::OpenUrlArguments(), KParts::NavigationExtension::PopupFlags flags = KParts::NavigationExtension::DefaultPopupItems, const KParts::NavigationExtension::ActionGroupMap &actionGroups = ActionGroupMap())
Emit this to make the browser show a standard popup menu for the files items.
global global coordinates where the popup should be shown
items list of file items which the popup applies to
args OpenUrlArguments, mostly for metadata here
flags enables/disables certain builtin actions in the popupmenu
actionGroups named groups of actions which should be inserted into the popup, see ActionGroupMap
Note: Signal popupMenu is overloaded in this class. To connect to this signal by using the function pointer syntax, Qt provides a convenient helper for obtaining the function pointer as shown in this example:
connect(navigationExtension, QOverload<const QPoint &, const KFileItemList &, const KParts::OpenUrlArguments &, KParts::NavigationExtension::PopupFlags, const KParts::NavigationExtension::ActionGroupMap &>::of(&NavigationExtension::popupMenu), [=](const QPoint &global, const KFileItemList &items, const KParts::OpenUrlArguments &arguments, KParts::NavigationExtension::PopupFlags flags, const KParts::NavigationExtension::ActionGroupMap &actionGroups){ /* ... */ });
[signal]
void NavigationExtension::popupMenu(const QPoint &global, const QUrl &url, mode_t mode = static_cast<mode_t>(-1), const KParts::OpenUrlArguments &arguments = KParts::OpenUrlArguments(), KParts::NavigationExtension::PopupFlags flags = KParts::NavigationExtension::DefaultPopupItems, const KParts::NavigationExtension::ActionGroupMap &actionGroups = ActionGroupMap())
Emit this to make the browser show a standard popup menu for the given url.
Give as much information about this URL as possible, like args.mimeType and the file type mode
global global coordinates where the popup should be shown
url the URL this popup applies to
mode the file type of the url (S_IFREG, S_IFDIR...)
args OpenUrlArguments, set the mimetype of the URL using setMimeType()
flags enables/disables certain builtin actions in the popupmenu
actionGroups named groups of actions which should be inserted into the popup, see ActionGroupMap
Note: Signal popupMenu is overloaded in this class. To connect to this signal by using the function pointer syntax, Qt provides a convenient helper for obtaining the function pointer as shown in this example:
connect(navigationExtension, QOverload<const QPoint &, const QUrl &, mode_t, const KParts::OpenUrlArguments &, KParts::NavigationExtension::PopupFlags, const KParts::NavigationExtension::ActionGroupMap &>::of(&NavigationExtension::popupMenu), [=](const QPoint &global, const QUrl &url, mode_t mode, const KParts::OpenUrlArguments &arguments, KParts::NavigationExtension::PopupFlags flags, const KParts::NavigationExtension::ActionGroupMap &actionGroups){ /* ... */ });
[signal]
void NavigationExtension::requestFocus(KParts::ReadOnlyPart *part)
Ask the hosting application to focus part.
[signal]
void NavigationExtension::resizeTopLevelWidget(int w, int h)
Ask the hosting application to resize the top level widget.
[virtual]
void NavigationExtension::restoreState(QDataStream &stream)
Used by the browser to restore the view in the state it was when we left it.
If you saved additional properties, reimplement it but don't forget to call the parent method (probably first).
[virtual]
void NavigationExtension::saveState(QDataStream &stream)
Used by the browser to save the current state of the view (in order to restore it if going back in navigation).
If you want to save additional properties, reimplement it but don't forget to call the parent method (probably first).
[signal]
void NavigationExtension::selectionInfo(const KFileItemList &items)
Inform the hosting application about the current selection. Used when a set of files/URLs is selected (with full information about those URLs, including size, permissions etc.)
[signal]
void NavigationExtension::setActionText(const char *name, const QString &text)
Change the text of a standard action held by the browser. This can be used to change "Paste" into "Paste Image" for instance.
See class documentation for the list of standard actions.
See also actionText().
[signal]
void NavigationExtension::setIconUrl(const QUrl &url)
Sets the URL of an icon for the currently displayed page.
[signal]
void NavigationExtension::setLocationBarUrl(const QString &url)
Updates the URL shown in the browser's location bar to url.
[signal]
void NavigationExtension::setPageSecurity(int)
Tell the host (browser) about security state of current page enum PageSecurity { NotCrypted, Encrypted, Mixed };
void NavigationExtension::setURLDropHandlingEnabled(bool enable)
Enables or disables url drop handling. URL drop handling is a property describing whether the hosting shell component is allowed to install an event filter on the part's widget, to listen for URI drop events. Set it to true if you are exporting a BrowserExtension implementation and do not provide any special URI drop handling. If set to false you can be sure to receive all those URI drop events unfiltered. Also note that the implementation as of Konqueror installs the event filter only on the part's widget itself, not on child widgets.
Note: Setter function for property urlDropHandling.
See also isURLDropHandlingEnabled().
[signal]
void NavigationExtension::speedProgress(int bytesPerSecond)
See also loadingProgress.
[virtual]
int NavigationExtension::xOffset()
Returns the current x offset.
For a scrollview, implement this using contentsX().
[virtual]
int NavigationExtension::yOffset()
Returns the current y offset.
For a scrollview, implement this using contentsY().