CalendarSupport

urihandler.h
1/*
2 SPDX-FileCopyrightText: 2003 Cornelius Schumacher <schumacher@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
5*/
6#pragma once
7
8#include "calendarsupport_export.h"
9
10class QString;
11
12namespace CalendarSupport
13{
14/** URI handler. */
15class CALENDARSUPPORT_EXPORT UriHandler
16{
17public:
18 /**
19 Process URI (e.g. open mailer, open browser, open incidence viewer etc.).
20 @return true if handler handled the URI, otherwise false.
21 @param uri The URI of the link that should be handled.
22 */
23 static bool process(const QString &uri);
24};
25
26} // namespace
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:16:32 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.