shift-shell/components/shellsettingsplugin/mobileshellsettings.h

187 lines
6.1 KiB
C++

/*
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <KConfigGroup>
#include <KConfigWatcher>
#include <KSharedConfig>
#include <QDBusConnection>
#include <QObject>
/**
* @short Wrapper class to access and control mobile shell specific settings.
*
* @author Devin Lin <devin@kde.org>
*/
class MobileShellSettings : public QObject
{
Q_OBJECT
// general
Q_PROPERTY(bool vibrationsEnabled READ vibrationsEnabled WRITE setVibrationsEnabled NOTIFY vibrationsEnabledChanged)
Q_PROPERTY(int vibrationDuration READ vibrationDuration WRITE setVibrationDuration NOTIFY vibrationDurationChanged)
Q_PROPERTY(qreal vibrationIntensity READ vibrationIntensity WRITE setVibrationIntensity NOTIFY vibrationIntensityChanged)
Q_PROPERTY(bool animationsEnabled READ animationsEnabled WRITE setAnimationsEnabled NOTIFY animationsEnabledChanged)
// navigation panel
Q_PROPERTY(bool navigationPanelEnabled READ navigationPanelEnabled WRITE setNavigationPanelEnabled NOTIFY navigationPanelEnabledChanged)
// task switcher
Q_PROPERTY(bool taskSwitcherPreviewsEnabled READ taskSwitcherPreviewsEnabled WRITE setTaskSwitcherPreviewsEnabled NOTIFY taskSwitcherPreviewsEnabledChanged)
// action drawer
Q_PROPERTY(ActionDrawerMode actionDrawerTopLeftMode READ actionDrawerTopLeftMode WRITE setActionDrawerTopLeftMode NOTIFY actionDrawerTopLeftModeChanged)
Q_PROPERTY(ActionDrawerMode actionDrawerTopRightMode READ actionDrawerTopRightMode WRITE setActionDrawerTopRightMode NOTIFY actionDrawerTopRightModeChanged)
// convergence mode
Q_PROPERTY(bool convergenceModeEnabled READ convergenceModeEnabled WRITE setConvergenceModeEnabled NOTIFY convergenceModeEnabledChanged)
public:
static MobileShellSettings *self();
MobileShellSettings(QObject *parent = nullptr);
enum ActionDrawerMode {
Pinned = 0, /** The drawer when pulled down is in its pinned mode. A second swipe fully expands it.*/
Expanded /** The drawer is fully expanded when pulled down.*/
};
Q_ENUM(ActionDrawerMode)
/**
* Get whether shell vibrations are enabled.
*/
bool vibrationsEnabled() const;
/**
* Set whether shell vibrations should be enabled.
*
* @param vibrationsEnabled Whether vibrations are enabled.
*/
void setVibrationsEnabled(bool vibrationsEnabled);
/**
* Get the duration of a standard vibration event, in milliseconds.
* Different types of vibration events may be calculated off of this.
*/
int vibrationDuration() const;
/**
* Set the duration of a standard vibration event, in milliseconds.
*
* @param vibrationDuration The duration of a standard vibration event.
*/
void setVibrationDuration(int vibrationDuration);
/**
* Get the intensity of a standard vibration event, which is a value between
* zero and one.
*/
qreal vibrationIntensity() const;
/**
* Set the intensity of a standard vibration event.
*
* @param vibrationIntensity The intensity of a standard vibration event, between zero and one.
*/
void setVibrationIntensity(qreal vibrationIntensity);
/**
* Whether animations are enabled in the shell.
*
* If false, vibrations will either be disabled or minimized as much as possible.
* TODO: integrate with animation speed (in settings at "Workspace Behaviour->General Behaviour"),
* which affects applications as well.
*/
bool animationsEnabled() const;
/**
* Set whether animations are enabled in the shell.
*
* @param animationsEnabled Whether animations should be enabled in the shell.
*/
void setAnimationsEnabled(bool animationsEnabled);
/**
* Whether the navigation panel is enabled.
*
* If this is false, then gesture based navigation is used.
*/
bool navigationPanelEnabled() const;
/**
* Set whether the navigation panel is enabled.
*
* @param navigationPanelEnabled Whether the navigation panel should be enabled.
*/
void setNavigationPanelEnabled(bool navigationPanelEnabled);
/**
* Whether task switcher application previews are enabled.
*/
bool taskSwitcherPreviewsEnabled() const;
/**
* Set whether task switcher application previews are enabled.
*
* @param taskSwitcherPreviewsEnabled Whether task switcher previews are enabled.
*/
void setTaskSwitcherPreviewsEnabled(bool taskSwitcherPreviewsEnabled);
/**
* The mode of the action drawer when swiped down from the top left.
*/
ActionDrawerMode actionDrawerTopLeftMode() const;
/**
* Set the mode of the action drawer when swiped down from the top left.
*
* @param actionDrawerMode The mode of the action drawer.
*/
void setActionDrawerTopLeftMode(ActionDrawerMode actionDrawerMode);
/**
* The mode of the action drawer when swiped down from the top right.
*/
ActionDrawerMode actionDrawerTopRightMode() const;
/**
* Set the mode of the action drawer when swiped down from the top right.
*
* @param actionDrawerMode The mode of the action drawer.
*/
void setActionDrawerTopRightMode(ActionDrawerMode actionDrawerMode);
/**
* Whether convergence/docked mode is enabled.
*/
bool convergenceModeEnabled() const;
/**
* Set whether convergence/docked mode is enabled.
*
* @param enabled
*/
void setConvergenceModeEnabled(bool enabled);
Q_SIGNALS:
void vibrationsEnabledChanged();
void vibrationIntensityChanged();
void vibrationDurationChanged();
void navigationPanelEnabledChanged();
void keyboardButtonEnabledChanged();
void animationsEnabledChanged();
void taskSwitcherPreviewsEnabledChanged();
void actionDrawerTopLeftModeChanged();
void actionDrawerTopRightModeChanged();
void convergenceModeEnabledChanged();
private:
void updateNavigationBarsInPlasma(bool navigationPanelEnabled);
KConfigWatcher::Ptr m_configWatcher;
KSharedConfig::Ptr m_config;
};