2020-09-16 23:04:02 +03:00
|
|
|
/*
|
2020-10-19 20:34:47 +03:00
|
|
|
Copyright (C) 2020 Sebastian J. Wolf and other contributors
|
2020-09-16 23:04:02 +03:00
|
|
|
|
|
|
|
This file is part of Fernschreiber.
|
|
|
|
|
|
|
|
Fernschreiber 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.
|
|
|
|
|
|
|
|
Fernschreiber 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 Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-10-31 22:49:03 +03:00
|
|
|
import QtQuick 2.6
|
2020-09-16 23:04:02 +03:00
|
|
|
import Sailfish.Silica 1.0
|
2021-01-27 01:26:40 +03:00
|
|
|
import Sailfish.Pickers 1.0
|
2020-10-10 18:46:08 +03:00
|
|
|
import WerkWolf.Fernschreiber 1.0
|
2021-01-19 02:02:37 +03:00
|
|
|
import "../components"
|
2021-06-06 22:51:05 +03:00
|
|
|
import "../components/settingsPage"
|
2020-09-16 23:04:02 +03:00
|
|
|
import "../js/functions.js" as Functions
|
2021-01-25 01:46:30 +03:00
|
|
|
import "../js/debug.js" as Debug
|
2020-09-16 23:04:02 +03:00
|
|
|
|
|
|
|
Page {
|
|
|
|
id: settingsPage
|
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
|
|
|
SilicaFlickable {
|
|
|
|
id: settingsContainer
|
|
|
|
contentHeight: column.height
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
|
|
|
width: settingsPage.width
|
2021-06-06 22:51:05 +03:00
|
|
|
bottomPadding: Theme.paddingLarge
|
2020-09-16 23:04:02 +03:00
|
|
|
|
|
|
|
PageHeader {
|
|
|
|
title: qsTr("Settings")
|
|
|
|
}
|
|
|
|
|
2021-06-06 22:51:05 +03:00
|
|
|
Accordion {
|
|
|
|
flickable: settingsContainer
|
|
|
|
SettingsUserProfile { expanded: true; asynchronous: false }
|
2021-12-12 20:28:05 +03:00
|
|
|
SettingsSession {}
|
2021-06-06 22:51:05 +03:00
|
|
|
SettingsPrivacy {}
|
|
|
|
SettingsBehavior {}
|
|
|
|
SettingsAppearance {}
|
|
|
|
SettingsStorage {}
|
2020-11-24 01:15:17 +03:00
|
|
|
}
|
2020-09-16 23:04:02 +03:00
|
|
|
}
|
|
|
|
|
2020-10-09 18:20:09 +03:00
|
|
|
VerticalScrollDecorator {}
|
2020-09-16 23:04:02 +03:00
|
|
|
}
|
|
|
|
}
|