kwin/kcmkwin/kwinscreenedges/kwinscreenedge.h
Cyril Rossi a9c0337113 KCM KWinTouchEdges disable edge if is immutable
Summary:
Disable touch 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 `TouchEdges` group, although the edges settings are shared between some `[Effect-something]` group under the key `TouchBorderActivateSomething`.

Since one entry like `TouchBorderActivateSomething` lists all edges that use this effect, it doesn't make sense to set it immutable.

Test Plan:
In `kwinrc`, set the `TouchEdges` group immutable or any entry.

```
[TouchEdges]
Bottom=None
Left=None
Right=None
Top[$i]=None
```

Reviewers: ervin, bport, meven, zzag, #kwin, mart

Reviewed By: ervin, zzag, #kwin, mart

Subscribers: kwin

Tags: #kwin

Differential Revision: https://phabricator.kde.org/D28507
2020-04-22 11:10:12 +02:00

86 lines
2.7 KiB
C++

/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2009 Lucas Murray <lmurray@undefinedfire.com>
Copyright (C) 2020 Cyril Rossi <cyril.rossi@enioka.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 2 of the License, or
(at your option) 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 __KWINSCREENEDGE_H__
#define __KWINSCREENEDGE_H__
#include <QWidget>
#include "kwinglobals.h"
namespace KWin
{
class Monitor;
class KWinScreenEdge : public QWidget
{
Q_OBJECT
public:
explicit KWinScreenEdge(QWidget *parent = nullptr);
~KWinScreenEdge() override;
void monitorHideEdge(ElectricBorder border, bool hidden);
void monitorEnableEdge(ElectricBorder border, bool enabled);
void monitorAddItem(const QString &item);
void monitorItemSetEnabled(int index, bool enabled);
QList<int> monitorCheckEffectHasEdge(int index) const;
int selectedEdgeItem(ElectricBorder border) const;
void monitorChangeEdge(ElectricBorder border, int index);
void monitorChangeEdge(const QList<int> &borderList, int index);
void monitorChangeDefaultEdge(ElectricBorder border, int index);
void monitorChangeDefaultEdge(const QList<int> &borderList, int index);
// revert to reference settings and assess for saveNeeded and default changed
virtual void reload();
// reset to default settings and assess for saveNeeded and default changed
virtual void setDefaults();
private Q_SLOTS:
void onChanged();
void createConnection();
Q_SIGNALS:
void saveNeededChanged(bool isNeeded);
void defaultChanged(bool isDefault);
private:
virtual Monitor *monitor() const = 0;
virtual bool isSaveNeeded() const;
virtual bool isDefault() const;
// internal use, assert if border equals ELECTRIC_COUNT or ElectricNone
static int electricBorderToMonitorEdge(ElectricBorder border);
static ElectricBorder monitorEdgeToElectricBorder(int edge);
private:
QHash<ElectricBorder, int> m_reference; // reference settings
QHash<ElectricBorder, int> m_default; // default settings
};
} // namespace
#endif