2022-12-12 11:24:21 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
import FileSystemModule
|
|
|
|
|
|
|
|
Button {
|
2023-06-27 13:54:20 +00:00
|
|
|
required property ApplicationWindow resizeWindow
|
|
|
|
|
2022-12-12 11:24:21 +00:00
|
|
|
icon.width: 20; icon.height: 20
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
rightPadding: 3
|
|
|
|
bottomPadding: 3
|
|
|
|
|
2023-04-11 14:52:16 +00:00
|
|
|
icon.source: "../icons/resize.svg"
|
2023-06-27 13:54:20 +00:00
|
|
|
icon.color: hovered ? Colors.iconIndicator : Colors.icon
|
2022-12-12 11:24:21 +00:00
|
|
|
|
2023-06-27 13:54:20 +00:00
|
|
|
background: null
|
2022-12-12 11:24:21 +00:00
|
|
|
checkable: false
|
|
|
|
display: AbstractButton.IconOnly
|
2023-06-27 13:54:20 +00:00
|
|
|
onPressed: resizeWindow.startSystemResize(Qt.BottomEdge | Qt.RightEdge)
|
2022-12-12 11:24:21 +00:00
|
|
|
}
|