File indexing completed on 2024-04-28 16:55:47

0001 /*
0002  * SPDX-FileCopyrightText: 2018 Red Hat Inc
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  *
0006  * SPDX-FileCopyrightText: 2018 Jan Grulich <jgrulich@redhat.com>
0007  */
0008 
0009 #ifndef XDG_DESKTOP_PORTAL_KDE_SCREENCAST_WIDGET_H
0010 #define XDG_DESKTOP_PORTAL_KDE_SCREENCAST_WIDGET_H
0011 
0012 #include <QListWidget>
0013 
0014 class ScreenCastWidget : public QListWidget
0015 {
0016     Q_OBJECT
0017 public:
0018     ScreenCastWidget(QWidget *parent = nullptr);
0019     ~ScreenCastWidget() override;
0020 
0021     QList<quint32> selectedScreens() const;
0022 };
0023 
0024 #endif // XDG_DESKTOP_PORTAL_KDE_SCREENCAST_WIDGET_H