File indexing completed on 2024-04-28 05:36:54

0001 /*
0002  * SPDX-FileCopyrightText: 2018 Alexander Volkov <a.volkov@rusbitech.ru>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef XDG_DESKTOP_PORTAL_KDE_UTILS_H
0008 #define XDG_DESKTOP_PORTAL_KDE_UTILS_H
0009 
0010 class QString;
0011 class QWidget;
0012 class QWindow;
0013 
0014 class Utils
0015 {
0016 public:
0017     static void setParentWindow(QWidget *w, const QString &parent_window);
0018     static void setParentWindow(QWindow *w, const QString &parent_window);
0019 
0020     static QString applicationName(const QString &appId);
0021 };
0022 
0023 #endif // XDG_DESKTOP_PORTAL_KDE_UTILS_H