You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
708 B
37 lines
708 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee> |
|
SPDX-FileCopyrightText: 2010 Sebastian Sauer <sebsauer@kdab.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <kcmodule.h> |
|
|
|
#include "ui_zoom_config.h" |
|
|
|
namespace KWin |
|
{ |
|
class ZoomEffectConfig : public KCModule |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit ZoomEffectConfig(QObject *parent, const KPluginMetaData &data); |
|
|
|
public Q_SLOTS: |
|
void save() override; |
|
|
|
private: |
|
Ui::ZoomEffectConfigForm m_ui; |
|
enum MouseTracking { |
|
MouseCentred = 0, |
|
MouseProportional = 1, |
|
MouseDisabled = 2, |
|
}; |
|
}; |
|
|
|
} // namespace
|
|
|