-
Notifications
You must be signed in to change notification settings - Fork 0
/
windowSelectorItem.h
43 lines (34 loc) · 936 Bytes
/
windowSelectorItem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlComponent>
#include <QQuickWindow>
#include <QLocale>
#include <QObject>
#include <QScreen>
#include <QString>
#include <QTranslator>
#include <QtX11Extras/QX11Info>
#include <KF5/KWindowSystem/KWindowEffects>
#include <KF5/KWindowSystem/KWindowInfo>
#include <KF5/KWindowSystem/KWindowShadow>
#include <KF5/KWindowSystem/KWindowSystem>
#include <KF5/Kirigami2/Kirigami/PlatformTheme>
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include "panel.h"
#include "windowModel.h"
#ifndef WINDOWSELECTORITEM_H
#define WINDOWSELECTORITEM_H
class windowSelectorItem : public QObject {
Q_OBJECT
public:
windowSelectorItem();
int create(QString path, panel *p);
QObject *root;
QQuickItem *sampleItem;
QQuickItem *windowSelectorItemInstance;
QQmlComponent *component;
QObject *repeater;
windowModel *windowmodel;
};
#endif // WINDOWSELECTORITEM_H