mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-01-31 10:11:20 +00:00
40 lines
1.5 KiB
QML
40 lines
1.5 KiB
QML
/*******************************************************************************
|
|
* Copyright (c) 2013-2021 "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
|
|
|
|
QtObject {
|
|
readonly property string version: appVersion
|
|
readonly property int profileVersion: 2
|
|
|
|
readonly property real screenCurvatureSize: 0.4
|
|
readonly property real minimumFontScaling: 0.25
|
|
readonly property real maximumFontScaling: 2.50
|
|
|
|
readonly property real minBurnInFadeTime: 160
|
|
readonly property real maxBurnInFadeTime: 1600
|
|
|
|
readonly property int no_rasterization: 0
|
|
readonly property int scanline_rasterization: 1
|
|
readonly property int pixel_rasterization: 2
|
|
readonly property int subpixel_rasterization: 3
|
|
|
|
readonly property real baseFontScaling: 0.75
|
|
}
|