24 lines
355 B
QML
24 lines
355 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2024 Anton Kharuzhy <publicantroids@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
|
|
enum Type {
|
|
WindowControlButton,
|
|
WindowTitle,
|
|
WindowIcon,
|
|
Spacer
|
|
}
|
|
|
|
enum DisabledMode {
|
|
Deactivated,
|
|
HideKeepSpace,
|
|
Hide
|
|
}
|
|
}
|