2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2020-03-05 17:03:00 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2009 Lucas Murray <lmurray@undefinedfire.com>
|
|
|
|
SPDX-FileCopyrightText: 2020 Cyril Rossi <cyril.rossi@enioka.com>
|
2020-03-05 17:03:00 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2020-03-05 17:03:00 +00:00
|
|
|
|
|
|
|
#ifndef __KWINSCREENEDGECONFIGFORM_H__
|
|
|
|
#define __KWINSCREENEDGECONFIGFORM_H__
|
|
|
|
|
|
|
|
#include "kwinscreenedge.h"
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class KWinScreenEdgesConfigUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class KWinScreenEdgesConfigForm : public KWinScreenEdge
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KWinScreenEdgesConfigForm(QWidget *parent = nullptr);
|
|
|
|
~KWinScreenEdgesConfigForm() override;
|
|
|
|
|
|
|
|
// value is between 0. and 1.
|
|
|
|
void setElectricBorderCornerRatio(double value);
|
|
|
|
void setDefaultElectricBorderCornerRatio(double value);
|
|
|
|
|
|
|
|
// return value between 0. and 1.
|
|
|
|
double electricBorderCornerRatio() const;
|
|
|
|
|
KCM KWinScreenEdges disable widgets if is immutable
Summary:
Same as D28507
Disable screen edge modification, but allow the user to open an edge context menu and see the settings.
To set an edge immutable, just add `[$i]` right after the entry in `ElectricBorders` group, although the edges settings are shared between some `[Effect-something]` group under the key `BorderActivateSomething`.
Since one entry like `BorderActivateSomething` lists all edges that use this effect, it doesn't make sense to set it immutable.
Test Plan:
In `kwinrc`, set the `ElectricBorders` and/or `Windows` group immutable or any entry.
```
[ElectricBorders]
BottomLeft[$i]=None
Left=None
Right=None
Top[$i]=None
[Windows][$i]
ElectricBorderCornerRatio=0.29
ElectricBorderDelay=300
ElectricBorderMaximize=false
ElectricBorderTiling=true
ElectricBorders=2
```
Reviewers: ervin, bport, meven, zzag, #kwin, mart
Reviewed By: ervin, zzag, #kwin, mart
Subscribers: kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D28508
2020-04-02 09:28:14 +00:00
|
|
|
void setElectricBorderCornerRatioEnabled(bool enable);
|
|
|
|
|
2020-03-05 17:03:00 +00:00
|
|
|
void reload() override;
|
|
|
|
void setDefaults() override;
|
|
|
|
|
2020-08-04 08:11:27 +00:00
|
|
|
public Q_SLOTS:
|
|
|
|
void setDefaultsIndicatorsVisible(bool visible);
|
|
|
|
|
2020-03-05 17:03:00 +00:00
|
|
|
protected:
|
|
|
|
Monitor *monitor() const override;
|
|
|
|
bool isSaveNeeded() const override;
|
|
|
|
bool isDefault() const override;
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void sanitizeCooldown();
|
|
|
|
void groupChanged();
|
2020-08-04 08:11:27 +00:00
|
|
|
void updateDefaultIndicators();
|
2020-03-05 17:03:00 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// electricBorderCornerRatio value between 0. and 1.
|
|
|
|
double m_referenceCornerRatio = 0.;
|
|
|
|
double m_defaultCornerRatio = 0.;
|
|
|
|
|
2020-08-04 08:11:27 +00:00
|
|
|
bool m_defaultIndicatorVisible = false;
|
|
|
|
|
2020-03-05 17:03:00 +00:00
|
|
|
Ui::KWinScreenEdgesConfigUI *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|