filemanager/desktop/desktop.h

61 lines
1.6 KiB
C
Raw Normal View History

2021-09-05 14:39:56 -07:00
/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: Reion Wong <reionwong@gmail.com>
*
* This program 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 3 of the License, or
* any later version.
*
* This program 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 DESKTOP_H
#define DESKTOP_H
#include <QObject>
#include <QScreen>
2021-09-07 20:55:28 -07:00
#include <QDBusInterface>
2021-09-05 14:39:56 -07:00
#include "desktopview.h"
class Desktop : public QObject
{
Q_OBJECT
2021-09-07 20:55:28 -07:00
Q_PROPERTY(int leftMargin READ leftMargin NOTIFY marginsChanged)
Q_PROPERTY(int rightMargin READ rightMargin NOTIFY marginsChanged)
Q_PROPERTY(int bottomMargin READ bottomMargin NOTIFY marginsChanged)
2021-09-05 14:39:56 -07:00
public:
explicit Desktop(QObject *parent = nullptr);
2021-09-07 20:55:28 -07:00
int leftMargin() const;
int rightMargin() const;
int bottomMargin() const;
signals:
void marginsChanged();
2021-09-05 14:39:56 -07:00
private slots:
void screenAdded(QScreen *qscreen);
void screenRemoved(QScreen *qscreen);
2021-09-07 20:55:28 -07:00
void updateMargins();
2021-09-05 14:39:56 -07:00
private:
QMap<QScreen *, DesktopView *> m_list;
2021-09-07 20:55:28 -07:00
QDBusInterface m_dockInterface;
int m_leftMargin;
int m_rightMargin;
int m_bottomMargin;
2021-09-05 14:39:56 -07:00
};
#endif // DESKTOP_H