2013-03-11 08:33:38 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
2013-03-11 08:33:38 +00:00
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2013-03-11 08:33:38 +00:00
|
|
|
*********************************************************************/
|
2013-08-05 12:08:23 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.components 2.0 as Plasma
|
2013-03-11 08:33:38 +00:00
|
|
|
|
2019-10-21 13:36:39 +00:00
|
|
|
Plasma.Button {
|
|
|
|
id: closeButton
|
|
|
|
iconSource: "window-close"
|
|
|
|
anchors.fill: parent
|
|
|
|
implicitWidth: units.iconSizes.medium
|
|
|
|
implicitHeight: implicitWidth
|
2013-03-11 08:33:38 +00:00
|
|
|
}
|