2013-12-28 14:52:10 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (c) 2013 "Filippo Scognamiglio"
|
2014-09-03 22:19:34 +02:00
|
|
|
* https://github.com/Swordfish90/cool-retro-term
|
2013-12-28 14:52:10 +01:00
|
|
|
*
|
2014-09-03 22:19:34 +02:00
|
|
|
* This file is part of cool-retro-term.
|
2013-12-28 14:52:10 +01:00
|
|
|
*
|
2014-09-03 22:19:34 +02:00
|
|
|
* cool-retro-term is free software: you can redistribute it and/or modify
|
2013-12-28 14:52:10 +01:00
|
|
|
* 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/>.
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2014-04-17 13:56:13 +02:00
|
|
|
import QtQuick 2.2
|
|
|
|
import QtQuick.Controls 1.1
|
2013-11-25 19:05:31 +01:00
|
|
|
import QtQuick.Window 2.1
|
2014-04-17 13:56:13 +02:00
|
|
|
import QtQuick.Layouts 1.1
|
2013-12-22 18:32:01 +01:00
|
|
|
import QtQuick.Dialogs 1.1
|
2013-11-25 19:05:31 +01:00
|
|
|
|
2014-04-17 13:56:13 +02:00
|
|
|
Window {
|
2013-12-22 18:32:01 +01:00
|
|
|
id: settings_window
|
2013-11-25 19:05:31 +01:00
|
|
|
title: qsTr("Settings")
|
2014-12-26 19:47:11 +01:00
|
|
|
width: 580
|
2018-12-16 23:46:05 +01:00
|
|
|
height: 400
|
2014-06-23 22:47:35 +02:00
|
|
|
|
|
|
|
property int tabmargins: 15
|
2013-11-25 19:05:31 +01:00
|
|
|
|
|
|
|
TabView{
|
2014-09-29 02:00:54 +02:00
|
|
|
id: tabView
|
2013-11-25 19:05:31 +01:00
|
|
|
anchors.fill: parent
|
2014-04-03 15:06:16 +02:00
|
|
|
anchors.margins: 10
|
2018-12-16 23:46:05 +01:00
|
|
|
SettingsGeneralTab {
|
2014-09-29 02:00:54 +02:00
|
|
|
id: generalTab
|
2014-06-23 22:47:35 +02:00
|
|
|
title: qsTr("General")
|
2014-04-03 15:06:16 +02:00
|
|
|
anchors.fill: parent
|
2014-06-23 22:47:35 +02:00
|
|
|
anchors.margins: tabmargins
|
2013-12-28 02:19:16 +01:00
|
|
|
}
|
2018-12-16 23:46:05 +01:00
|
|
|
SettingsTerminalTab {
|
2014-09-29 02:00:54 +02:00
|
|
|
id: terminalTab
|
2014-06-23 22:47:35 +02:00
|
|
|
title: qsTr("Terminal")
|
2013-12-28 02:19:16 +01:00
|
|
|
anchors.fill: parent
|
2014-06-23 22:47:35 +02:00
|
|
|
anchors.margins: tabmargins
|
|
|
|
}
|
2018-12-16 23:46:05 +01:00
|
|
|
SettingsEffectsTab {
|
2014-09-29 02:00:54 +02:00
|
|
|
id: effectsTab
|
2014-06-23 22:47:35 +02:00
|
|
|
title: qsTr("Effects")
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: tabmargins
|
2013-11-25 19:05:31 +01:00
|
|
|
}
|
2018-12-16 23:46:05 +01:00
|
|
|
SettingsAdvancedTab {
|
2014-09-29 02:00:54 +02:00
|
|
|
id: performanceTab
|
2018-12-16 23:46:05 +01:00
|
|
|
title: qsTr("Advanced")
|
2014-09-29 02:00:54 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: tabmargins
|
|
|
|
}
|
2013-11-25 19:05:31 +01:00
|
|
|
}
|
|
|
|
}
|