You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
1.9 KiB
C++
93 lines
1.9 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2019 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef WINDOWSYSTEMTRACKEDGENERALINFO_H
|
|
#define WINDOWSYSTEMTRACKEDGENERALINFO_H
|
|
|
|
// local
|
|
#include "lastactivewindow.h"
|
|
#include "../windowinfowrap.h"
|
|
|
|
// Qt
|
|
#include <QObject>
|
|
|
|
namespace Latte {
|
|
namespace WindowSystem {
|
|
class SchemeColors;
|
|
namespace Tracker {
|
|
class Windows;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
namespace Latte {
|
|
namespace WindowSystem {
|
|
namespace Tracker {
|
|
|
|
class TrackedGeneralInfo : public QObject {
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(Latte::WindowSystem::Tracker::LastActiveWindow *activeWindow READ lastActiveWindow NOTIFY lastActiveWindowChanged)
|
|
|
|
public:
|
|
TrackedGeneralInfo(Tracker::Windows *tracker);
|
|
~TrackedGeneralInfo() override;
|
|
|
|
bool enabled() const;
|
|
void setEnabled(bool enabled);
|
|
|
|
bool activeWindowMaximized() const;
|
|
void setActiveWindowMaximized(bool activeMaximized);
|
|
|
|
bool existsWindowActive() const;
|
|
void setExistsWindowActive(bool exists);
|
|
|
|
bool existsWindowMaximized() const;
|
|
void setExistsWindowMaximized(bool maximized);
|
|
|
|
bool isTrackingCurrentActivity() const;
|
|
|
|
LastActiveWindow *lastActiveWindow() const;
|
|
|
|
SchemeColors *activeWindowScheme() const;
|
|
void setActiveWindowScheme(SchemeColors *scheme);
|
|
|
|
AbstractWindowInterface *wm();
|
|
|
|
void setActiveWindow(const WindowId &wid);
|
|
|
|
virtual bool isTracking(const WindowInfoWrap &winfo) const;
|
|
|
|
signals:
|
|
void lastActiveWindowChanged();
|
|
|
|
protected:
|
|
void updateTrackingCurrentActivity();
|
|
|
|
protected:
|
|
QStringList m_activities;
|
|
|
|
LastActiveWindow *m_lastActiveWindow{nullptr};
|
|
AbstractWindowInterface *m_wm{nullptr};
|
|
Tracker::Windows *m_tracker{nullptr};
|
|
|
|
private:
|
|
bool m_enabled;
|
|
bool m_activeWindowMaximized;
|
|
bool m_existsWindowActive;
|
|
bool m_existsWindowMaximized;
|
|
|
|
bool m_isTrackingCurrentActivity{true};
|
|
|
|
SchemeColors *m_activeWindowScheme{nullptr};
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|