mirror of https://github.com/cutefishos/core
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.
82 lines
2.1 KiB
C++
82 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) 2021 CutefishOS Team.
|
|
*
|
|
* Author: rekols <revenmartin@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 DOCK_H
|
|
#define DOCK_H
|
|
|
|
#include <QObject>
|
|
#include <QSettings>
|
|
|
|
class Dock : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(Direction direction READ direction WRITE setDirection NOTIFY directionChanged)
|
|
Q_PROPERTY(int iconSize READ iconSize WRITE setIconSize NOTIFY iconSizeChanged)
|
|
Q_PROPERTY(int edgeMargins READ edgeMargins WRITE setEdgeMargins)
|
|
Q_PROPERTY(bool roundedWindowEnabled READ roundedWindowEnabled WRITE setRoundedWindowEnabled NOTIFY roundedWindowEnabledChanged)
|
|
|
|
public:
|
|
enum Direction {
|
|
Left = 0,
|
|
Bottom,
|
|
Right
|
|
};
|
|
Q_ENUMS(Direction)
|
|
|
|
enum Visibility {
|
|
AlwaysVisible = 0,
|
|
AutoHide,
|
|
AlwaysHide
|
|
};
|
|
Q_ENUMS(Visibility)
|
|
|
|
explicit Dock(QObject *parent = nullptr);
|
|
|
|
int iconSize() const;
|
|
void setIconSize(int iconSize);
|
|
|
|
Direction direction() const;
|
|
void setDirection(int value);
|
|
|
|
Visibility visibility() const;
|
|
void setVisibility(int value);
|
|
|
|
int edgeMargins() const;
|
|
void setEdgeMargins(int edgeMargins);
|
|
|
|
bool roundedWindowEnabled() const;
|
|
void setRoundedWindowEnabled(bool enabled);
|
|
|
|
signals:
|
|
void iconSizeChanged();
|
|
void directionChanged();
|
|
void visibilityChanged();
|
|
void roundedWindowEnabledChanged();
|
|
|
|
private:
|
|
int m_iconSize;
|
|
int m_edgeMargins;
|
|
bool m_roundedWindowEnabled;
|
|
Direction m_direction;
|
|
Visibility m_visibility;
|
|
QSettings *m_settings;
|
|
};
|
|
|
|
#endif // DOCK_H
|