2024-08-29 13:51:17 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020-2023 Alex Spataru <https://github.com/alex-spataru>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import QtCore
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Window
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
2024-10-27 05:38:58 -05:00
|
|
|
import "../Widgets/Dashboard" as Dashboard
|
2024-08-29 13:51:17 -05:00
|
|
|
|
|
|
|
Window {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
//
|
|
|
|
// Window options
|
|
|
|
//
|
|
|
|
title: qsTr("Console")
|
2024-09-22 14:26:51 -05:00
|
|
|
minimumWidth: 640
|
|
|
|
minimumHeight: 240 + root.titlebarHeight
|
2024-09-26 10:02:41 -05:00
|
|
|
Component.onCompleted: {
|
|
|
|
root.flags = Qt.Dialog |
|
|
|
|
Qt.WindowTitleHint |
|
|
|
|
Qt.WindowCloseButtonHint
|
|
|
|
}
|
2024-09-22 14:26:51 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// Native window registration
|
|
|
|
//
|
|
|
|
property real titlebarHeight: 0
|
|
|
|
onVisibleChanged: {
|
|
|
|
if (visible) {
|
2024-09-26 11:03:49 -05:00
|
|
|
Cpp_NativeWindow.addWindow(root, Cpp_ThemeManager.colors["base"])
|
2024-09-22 14:26:51 -05:00
|
|
|
root.titlebarHeight = Cpp_NativeWindow.titlebarHeight(root)
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
root.titlebarHeight = 0
|
|
|
|
Cpp_NativeWindow.removeWindow(root)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Background + window title on macOS
|
|
|
|
//
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: Cpp_ThemeManager.colors["window"]
|
|
|
|
|
|
|
|
//
|
|
|
|
// Drag the window anywhere
|
|
|
|
//
|
|
|
|
DragHandler {
|
|
|
|
target: null
|
|
|
|
onActiveChanged: {
|
|
|
|
if (active)
|
|
|
|
root.startSystemMove()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Titlebar text
|
|
|
|
//
|
|
|
|
Label {
|
|
|
|
text: root.title
|
|
|
|
visible: root.titlebarHeight > 0
|
2024-09-22 20:07:03 -05:00
|
|
|
color: Cpp_ThemeManager.colors["text"]
|
2024-11-09 18:38:40 -05:00
|
|
|
font: Cpp_Misc_CommonFonts.customUiFont(14, true)
|
2024-09-22 14:26:51 -05:00
|
|
|
|
|
|
|
anchors {
|
|
|
|
topMargin: 6
|
|
|
|
top: parent.top
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
|
|
|
}
|
2024-08-29 13:51:17 -05:00
|
|
|
}
|
|
|
|
|
2024-09-18 21:48:57 -05:00
|
|
|
//
|
|
|
|
// Close shortcut
|
|
|
|
//
|
|
|
|
Shortcut {
|
|
|
|
sequences: [StandardKey.Close]
|
|
|
|
onActivated: root.close()
|
|
|
|
}
|
|
|
|
|
2024-08-29 13:51:17 -05:00
|
|
|
//
|
|
|
|
// Save settings
|
|
|
|
//
|
|
|
|
Settings {
|
|
|
|
property alias cw: root.width
|
|
|
|
property alias ch: root.height
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Use page item to set application palette
|
|
|
|
//
|
|
|
|
Page {
|
|
|
|
anchors.fill: parent
|
2024-09-22 14:26:51 -05:00
|
|
|
anchors.topMargin: root.titlebarHeight
|
2024-09-19 16:51:27 -05:00
|
|
|
palette.mid: Cpp_ThemeManager.colors["mid"]
|
|
|
|
palette.dark: Cpp_ThemeManager.colors["dark"]
|
2024-08-29 13:51:17 -05:00
|
|
|
palette.text: Cpp_ThemeManager.colors["text"]
|
2024-09-19 16:51:27 -05:00
|
|
|
palette.base: Cpp_ThemeManager.colors["base"]
|
|
|
|
palette.link: Cpp_ThemeManager.colors["link"]
|
|
|
|
palette.light: Cpp_ThemeManager.colors["light"]
|
2024-08-29 13:51:17 -05:00
|
|
|
palette.window: Cpp_ThemeManager.colors["window"]
|
2024-09-19 16:51:27 -05:00
|
|
|
palette.shadow: Cpp_ThemeManager.colors["shadow"]
|
|
|
|
palette.accent: Cpp_ThemeManager.colors["accent"]
|
|
|
|
palette.button: Cpp_ThemeManager.colors["button"]
|
|
|
|
palette.midlight: Cpp_ThemeManager.colors["midlight"]
|
|
|
|
palette.highlight: Cpp_ThemeManager.colors["highlight"]
|
|
|
|
palette.windowText: Cpp_ThemeManager.colors["window_text"]
|
|
|
|
palette.brightText: Cpp_ThemeManager.colors["bright_text"]
|
2024-08-29 13:51:17 -05:00
|
|
|
palette.buttonText: Cpp_ThemeManager.colors["button_text"]
|
2024-09-19 16:51:27 -05:00
|
|
|
palette.toolTipBase: Cpp_ThemeManager.colors["tooltip_base"]
|
|
|
|
palette.toolTipText: Cpp_ThemeManager.colors["tooltip_text"]
|
|
|
|
palette.linkVisited: Cpp_ThemeManager.colors["link_visited"]
|
|
|
|
palette.alternateBase: Cpp_ThemeManager.colors["alternate_base"]
|
2024-08-29 13:51:17 -05:00
|
|
|
palette.placeholderText: Cpp_ThemeManager.colors["placeholder_text"]
|
|
|
|
palette.highlightedText: Cpp_ThemeManager.colors["highlighted_text"]
|
|
|
|
|
2024-10-27 05:38:58 -05:00
|
|
|
Dashboard.Terminal {
|
2024-08-29 13:51:17 -05:00
|
|
|
anchors.margins: 8
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|