1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-26 11:21:40 +03:00
latte-dock/app/visibilitymanager.h

96 lines
2.9 KiB
C
Raw Normal View History

2017-01-03 01:05:30 +03:00
/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* Latte-Dock is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef VISIBILITYMANAGER_H
#define VISIBILITYMANAGER_H
#include "plasmaquick/containmentview.h"
2016-12-26 02:12:31 +03:00
#include "../liblattedock/dock.h"
2016-12-26 02:12:31 +03:00
#include <QObject>
#include <QTimer>
#include <Plasma/Containment>
2016-12-29 08:42:55 +03:00
namespace Latte {
class VisibilityManagerPrivate;
class VisibilityManager : public QObject {
Q_OBJECT
2017-01-16 22:07:49 +03:00
2016-12-26 02:12:31 +03:00
Q_PROPERTY(Latte::Dock::Visibility mode READ mode WRITE setMode NOTIFY modeChanged)
Q_PROPERTY(bool raiseOnDesktop READ raiseOnDesktop WRITE setRaiseOnDesktop NOTIFY raiseOnDesktopChanged)
Q_PROPERTY(bool raiseOnActivity READ raiseOnActivity WRITE setRaiseOnActivity NOTIFY raiseOnActivityChanged)
2016-12-30 10:18:08 +03:00
Q_PROPERTY(bool isHidden READ isHidden WRITE setIsHidden NOTIFY isHiddenChanged)
Q_PROPERTY(bool blockHiding READ blockHiding WRITE setBlockHiding NOTIFY blockHidingChanged)
Q_PROPERTY(bool containsMouse READ containsMouse NOTIFY containsMouseChanged)
2016-12-26 02:12:31 +03:00
Q_PROPERTY(int timerShow READ timerShow WRITE setTimerShow NOTIFY timerShowChanged)
Q_PROPERTY(int timerHide READ timerHide WRITE setTimerHide NOTIFY timerHideChanged)
2017-01-16 22:07:49 +03:00
public:
explicit VisibilityManager(PlasmaQuick::ContainmentView *view);
2016-12-26 02:12:31 +03:00
virtual ~VisibilityManager();
2017-01-16 22:07:49 +03:00
2016-12-26 02:12:31 +03:00
Latte::Dock::Visibility mode() const;
void setMode(Latte::Dock::Visibility mode);
2017-01-16 22:07:49 +03:00
bool raiseOnDesktop() const;
void setRaiseOnDesktop(bool enable);
bool raiseOnActivity() const;
void setRaiseOnActivity(bool enable);
2016-12-28 11:00:01 +03:00
bool isHidden() const;
2016-12-30 10:18:08 +03:00
void setIsHidden(bool isHidden);
2017-01-16 22:07:49 +03:00
bool blockHiding() const;
void setBlockHiding(bool blockHiding);
2017-01-16 22:07:49 +03:00
2016-12-28 11:00:01 +03:00
bool containsMouse() const;
2017-01-16 22:07:49 +03:00
2016-12-26 02:12:31 +03:00
int timerShow() const;
void setTimerShow(int msec);
2017-01-16 22:07:49 +03:00
2016-12-26 02:12:31 +03:00
int timerHide() const;
void setTimerHide(int msec);
2017-01-16 22:07:49 +03:00
2016-12-26 02:12:31 +03:00
signals:
void mustBeShown(QPrivateSignal);
void mustBeHide(QPrivateSignal);
2017-01-16 22:07:49 +03:00
2016-12-26 02:12:31 +03:00
void modeChanged();
void raiseOnDesktopChanged();
void raiseOnActivityChanged();
void isHiddenChanged();
void blockHidingChanged();
void containsMouseChanged();
2016-12-26 02:12:31 +03:00
void timerShowChanged();
void timerHideChanged();
2017-01-16 22:07:49 +03:00
private:
VisibilityManagerPrivate *const d;
friend class VisibilityManagerPrivate;
};
2016-12-29 08:42:55 +03:00
}
2016-12-26 02:12:31 +03:00
#endif // VISIBILITYMANAGER_H