mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-01-19 04:30:44 +00:00
151 lines
4.3 KiB
QML
151 lines
4.3 KiB
QML
/*******************************************************************************
|
|
* Copyright (c) 2013 "Filippo Scognamiglio"
|
|
* https://github.com/Swordfish90/cool-retro-term
|
|
*
|
|
* This file is part of cool-retro-term.
|
|
*
|
|
* cool-retro-term is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*******************************************************************************/
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Window 2.1
|
|
import QtQuick.Controls 1.1
|
|
import QtGraphicalEffects 1.0
|
|
|
|
ApplicationWindow{
|
|
id: terminalWindow
|
|
|
|
width: 1024
|
|
height: 768
|
|
minimumWidth: 320
|
|
minimumHeight: 240
|
|
|
|
visible: true
|
|
|
|
property bool fullscreen: appSettings.fullscreen
|
|
onFullscreenChanged: visibility = (fullscreen ? Window.FullScreen : Window.Windowed)
|
|
|
|
//Workaround: Without __contentItem a ugly thin border is visible.
|
|
menuBar: CRTMainMenuBar{
|
|
id: mainMenu
|
|
visible: (Qt.platform.os === "osx" || appSettings.showMenubar)
|
|
__contentItem.visible: mainMenu.visible
|
|
}
|
|
|
|
color: "#00000000"
|
|
title: terminalContainer.title || qsTr("cool-retro-term")
|
|
|
|
Action {
|
|
id: showMenubarAction
|
|
text: qsTr("Show Menubar")
|
|
enabled: Qt.platform.os !== "osx"
|
|
shortcut: "Ctrl+Shift+M"
|
|
checkable: true
|
|
checked: appSettings.showMenubar
|
|
onTriggered: appSettings.showMenubar = !appSettings.showMenubar
|
|
}
|
|
Action {
|
|
id: fullscreenAction
|
|
text: qsTr("Fullscreen")
|
|
enabled: Qt.platform.os !== "osx"
|
|
shortcut: "Alt+F11"
|
|
onTriggered: appSettings.fullscreen = !appSettings.fullscreen;
|
|
checkable: true
|
|
checked: appSettings.fullscreen
|
|
}
|
|
Action {
|
|
id: quitAction
|
|
text: qsTr("Quit")
|
|
shortcut: "Ctrl+Shift+Q"
|
|
onTriggered: Qt.quit();
|
|
}
|
|
Action{
|
|
id: showsettingsAction
|
|
text: qsTr("Settings")
|
|
onTriggered: {
|
|
settingswindow.show();
|
|
settingswindow.requestActivate();
|
|
settingswindow.raise();
|
|
}
|
|
}
|
|
Action{
|
|
id: copyAction
|
|
text: qsTr("Copy")
|
|
shortcut: "Ctrl+Shift+C"
|
|
}
|
|
Action{
|
|
id: pasteAction
|
|
text: qsTr("Paste")
|
|
shortcut: "Ctrl+Shift+V"
|
|
}
|
|
Action{
|
|
id: zoomIn
|
|
text: qsTr("Zoom In")
|
|
shortcut: "Ctrl++"
|
|
onTriggered: appSettings.incrementScaling();
|
|
}
|
|
Action{
|
|
id: zoomOut
|
|
text: qsTr("Zoom Out")
|
|
shortcut: "Ctrl+-"
|
|
onTriggered: appSettings.decrementScaling();
|
|
}
|
|
Action{
|
|
id: showAboutAction
|
|
text: qsTr("About")
|
|
onTriggered: {
|
|
aboutDialog.show();
|
|
aboutDialog.requestActivate();
|
|
aboutDialog.raise();
|
|
}
|
|
}
|
|
ApplicationSettings{
|
|
id: appSettings
|
|
}
|
|
TerminalContainer{
|
|
id: terminalContainer
|
|
y: appSettings.showMenubar ? 0 : -2 // Workaroud to hide the margin in the menubar.
|
|
width: parent.width * appSettings.window_scaling
|
|
height: (parent.height + Math.abs(y)) * appSettings.window_scaling
|
|
|
|
transform: Scale {
|
|
xScale: 1 / appSettings.window_scaling
|
|
yScale: 1 / appSettings.window_scaling
|
|
}
|
|
}
|
|
SettingsWindow{
|
|
id: settingswindow
|
|
visible: false
|
|
}
|
|
AboutDialog{
|
|
id: aboutDialog
|
|
visible: false
|
|
}
|
|
Loader{
|
|
anchors.centerIn: parent
|
|
active: appSettings.show_terminal_size
|
|
sourceComponent: SizeOverlay{
|
|
z: 3
|
|
terminalSize: terminalContainer.terminalSize
|
|
}
|
|
}
|
|
Component.onCompleted: appSettings.handleFontChanged();
|
|
onClosing: {
|
|
// OSX Since we are currently supporting only one window
|
|
// quit the application when it is closed.
|
|
if (Qt.platform.os === "osx")
|
|
Qt.quit()
|
|
}
|
|
}
|