File indexing completed on 2024-11-10 04:56:51

0001 /*
0002     KWin - the KDE window manager
0003     This file is part of the KDE project.
0004 
0005     SPDX-FileCopyrightText: 2009 Lucas Murray <lmurray@undefinedfire.com>
0006     SPDX-FileCopyrightText: 2020 Cyril Rossi <cyril.rossi@enioka.com>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #include "kwintouchscreenedgeconfigform.h"
0012 #include "ui_touch.h"
0013 
0014 namespace KWin
0015 {
0016 
0017 KWinTouchScreenEdgeConfigForm::KWinTouchScreenEdgeConfigForm(QWidget *parent)
0018     : KWinScreenEdge(parent)
0019     , ui(std::make_unique<Ui::KWinTouchScreenConfigUi>())
0020 {
0021     ui->setupUi(this);
0022 }
0023 
0024 KWinTouchScreenEdgeConfigForm::~KWinTouchScreenEdgeConfigForm() = default;
0025 
0026 Monitor *KWinTouchScreenEdgeConfigForm::monitor() const
0027 {
0028     return ui->monitor;
0029 }
0030 
0031 } // namespace
0032 
0033 #include "moc_kwintouchscreenedgeconfigform.cpp"