2014-06-27 23:54:17 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (c) 2013 "Filippo Scognamiglio"
|
2014-09-03 22:19:34 +02:00
|
|
|
* https://github.com/Swordfish90/cool-retro-term
|
2014-06-27 23:54:17 +02:00
|
|
|
*
|
2014-09-03 22:19:34 +02:00
|
|
|
* This file is part of cool-retro-term.
|
2014-06-27 23:54:17 +02:00
|
|
|
*
|
2014-09-03 22:19:34 +02:00
|
|
|
* cool-retro-term is free software: you can redistribute it and/or modify
|
2014-06-27 23:54:17 +02: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/>.
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
import QtQuick 2.2
|
2014-06-23 16:25:41 +02:00
|
|
|
|
2014-12-23 00:49:33 +01:00
|
|
|
QtObject{
|
2014-06-23 16:25:41 +02:00
|
|
|
property int selectedFontIndex
|
2014-09-10 01:14:10 +02:00
|
|
|
property real scaling
|
2014-06-23 16:25:41 +02:00
|
|
|
property var source: fontlist.get(selectedFontIndex).source
|
|
|
|
property var _font: fontlist.get(selectedFontIndex)
|
2014-12-31 13:46:03 +01:00
|
|
|
property bool lowResolutionFont: _font.lowResolutionFont
|
|
|
|
|
|
|
|
property int pixelSize: lowResolutionFont
|
|
|
|
? _font.pixelSize
|
|
|
|
: _font.pixelSize * scaling
|
|
|
|
|
|
|
|
property int lineSpacing: lowResolutionFont
|
|
|
|
? _font.lineSpacing
|
|
|
|
: pixelSize * _font.lineSpacing
|
|
|
|
|
|
|
|
property real screenScaling: lowResolutionFont
|
|
|
|
? _font.baseScaling * scaling
|
|
|
|
: 1.0
|
|
|
|
|
2014-12-12 01:38:32 +01:00
|
|
|
property real defaultFontWidth: fontlist.get(selectedFontIndex).fontWidth
|
2014-06-23 16:25:41 +02:00
|
|
|
|
2018-10-22 00:04:31 +02:00
|
|
|
property string family: fontlist.get(selectedFontIndex).family
|
|
|
|
|
|
|
|
property bool isSystemFont: fontlist.get(selectedFontIndex).isSystemFont
|
|
|
|
|
2014-12-31 13:46:03 +01:00
|
|
|
// There are two kind of fonts: low resolution and high resolution.
|
|
|
|
// Low resolution font sets the lowResolutionFont property to true.
|
|
|
|
// They are rendered at a fixed pixel size and the texture is upscaled
|
|
|
|
// to fill the screen (they are much faster to render).
|
|
|
|
// High resolution fonts are instead drawn on a texture which has the
|
|
|
|
// size of the screen, and the scaling directly controls their pixels size.
|
|
|
|
// Those are slower to render but are not pixelated.
|
2014-06-23 16:25:41 +02:00
|
|
|
|
2018-10-22 00:04:31 +02:00
|
|
|
property ListModel fontlist: ListModel {
|
2014-12-31 13:46:03 +01:00
|
|
|
ListElement{
|
|
|
|
name: "TERMINUS_SCALED"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "Terminus (Modern)"
|
2014-12-31 13:46:03 +01:00
|
|
|
source: "fonts/modern-terminus/TerminusTTF-4.38.2.ttf"
|
|
|
|
lineSpacing: 1
|
|
|
|
pixelSize: 12
|
|
|
|
baseScaling: 3.0
|
|
|
|
fontWidth: 1.0
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
|
|
|
name: "PRO_FONT_SCALED"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "Pro Font (Modern)"
|
2014-12-31 13:46:03 +01:00
|
|
|
source: "fonts/modern-pro-font-win-tweaked/ProFontWindows.ttf"
|
|
|
|
lineSpacing: 1
|
|
|
|
pixelSize: 12
|
|
|
|
baseScaling: 3.0
|
|
|
|
fontWidth: 1.0
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
2015-01-07 11:16:09 +01:00
|
|
|
ListElement{
|
|
|
|
name: "EXCELSIOR_SCALED"
|
|
|
|
text: "Fixedsys Excelsior (Modern)"
|
|
|
|
source: "fonts/modern-fixedsys-excelsior/FSEX301-L2.ttf"
|
|
|
|
lineSpacing: 0
|
|
|
|
pixelSize: 16
|
2015-01-07 11:23:59 +01:00
|
|
|
baseScaling: 2.4
|
2015-01-07 11:16:09 +01:00
|
|
|
fontWidth: 1.0
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2015-01-07 11:16:09 +01:00
|
|
|
}
|
2014-12-31 13:46:03 +01:00
|
|
|
ListElement{
|
|
|
|
name: "COMMODORE_PET_SCALED"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "Commodore PET (1977)"
|
2018-10-28 00:51:00 +02:00
|
|
|
source: "fonts/1977-commodore-pet/PetMe.ttf"
|
|
|
|
lineSpacing: 3
|
2014-12-31 13:46:03 +01:00
|
|
|
pixelSize: 8
|
2014-12-31 16:40:30 +01:00
|
|
|
baseScaling: 3.5
|
2014-12-31 13:46:03 +01:00
|
|
|
fontWidth: 0.7
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
|
|
|
name: "PROGGY_TINY_SCALED"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "Proggy Tiny (Modern)"
|
2014-12-31 13:46:03 +01:00
|
|
|
source: "fonts/modern-proggy-tiny/ProggyTiny.ttf"
|
|
|
|
lineSpacing: 1
|
|
|
|
pixelSize: 16
|
2018-11-17 23:42:06 +01:00
|
|
|
baseScaling: 3.3
|
2014-12-31 13:46:03 +01:00
|
|
|
fontWidth: 0.9
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
|
|
|
name: "APPLE_II_SCALED"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "Apple ][ (1977)"
|
2014-12-31 13:46:03 +01:00
|
|
|
source: "fonts/1977-apple2/PrintChar21.ttf"
|
2018-11-17 23:42:06 +01:00
|
|
|
lineSpacing: 3
|
2014-12-31 13:46:03 +01:00
|
|
|
pixelSize: 8
|
2014-12-31 16:40:30 +01:00
|
|
|
baseScaling: 3.5
|
2014-12-31 13:46:03 +01:00
|
|
|
fontWidth: 0.8
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
|
|
|
name: "ATARI_400_SCALED"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "Atari 400-800 (1979)"
|
2018-10-28 00:51:00 +02:00
|
|
|
source: "fonts/1979-atari-400-800/AtariClassic-Regular.ttf"
|
2014-12-31 13:46:03 +01:00
|
|
|
lineSpacing: 3
|
|
|
|
pixelSize: 8
|
2014-12-31 16:40:30 +01:00
|
|
|
baseScaling: 3.5
|
2014-12-31 13:46:03 +01:00
|
|
|
fontWidth: 0.7
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
2018-10-28 00:51:00 +02:00
|
|
|
name: "IBM_PC_SCALED"
|
|
|
|
text: "IBM PC (1981)"
|
|
|
|
source: "fonts/1981-ibm-pc/PxPlus_IBM_BIOS.ttf"
|
2014-12-31 13:46:03 +01:00
|
|
|
lineSpacing: 3
|
|
|
|
pixelSize: 8
|
2018-11-17 23:42:06 +01:00
|
|
|
baseScaling: 3.5
|
2018-10-28 00:51:00 +02:00
|
|
|
fontWidth: 0.8
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
2018-10-28 00:51:00 +02:00
|
|
|
name: "COMMODORE_64_SCALED"
|
|
|
|
text: "Commodore 64 (1982)"
|
|
|
|
source: "fonts/1982-commodore64/C64_Pro_Mono-STYLE.ttf"
|
2014-12-31 13:46:03 +01:00
|
|
|
lineSpacing: 3
|
2018-10-28 00:51:00 +02:00
|
|
|
pixelSize: 8
|
|
|
|
baseScaling: 3.5
|
|
|
|
fontWidth: 0.7
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
|
|
|
name: "IBM_DOS"
|
2014-12-31 16:40:30 +01:00
|
|
|
text: "IBM DOS (1985)"
|
2018-10-28 00:51:00 +02:00
|
|
|
source: "fonts/1985-ibm-pc-vga/PxPlus_IBM_VGA8.ttf"
|
2014-12-31 13:46:03 +01:00
|
|
|
lineSpacing: 3
|
|
|
|
pixelSize: 16
|
|
|
|
baseScaling: 2.0
|
|
|
|
fontWidth: 1.0
|
|
|
|
lowResolutionFont: true
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-31 13:46:03 +01:00
|
|
|
}
|
2014-12-23 02:12:59 +01:00
|
|
|
ListElement{
|
|
|
|
name: "HERMIT"
|
2015-01-02 21:46:59 +01:00
|
|
|
text: "HD: Hermit (Modern)"
|
2014-12-23 02:12:59 +01:00
|
|
|
source: "fonts/modern-hermit/Hermit-medium.otf"
|
|
|
|
lineSpacing: 0.05
|
2018-11-17 23:42:06 +01:00
|
|
|
pixelSize: 27
|
2014-12-23 02:12:59 +01:00
|
|
|
fontWidth: 1.0
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: false
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-23 02:12:59 +01:00
|
|
|
}
|
2014-06-23 16:25:41 +02:00
|
|
|
ListElement{
|
2014-12-16 01:22:46 +01:00
|
|
|
name: "TERMINUS"
|
2015-01-02 21:46:59 +01:00
|
|
|
text: "HD: Terminus (Modern)"
|
2014-12-23 02:12:59 +01:00
|
|
|
source: "fonts/modern-terminus/TerminusTTF-4.38.2.ttf"
|
|
|
|
lineSpacing: 0.1
|
|
|
|
pixelSize: 35
|
|
|
|
fontWidth: 1.0
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: false
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-23 02:12:59 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
2014-12-31 16:40:30 +01:00
|
|
|
name: "PRO_FONT"
|
2015-01-02 21:46:59 +01:00
|
|
|
text: "HD: Pro Font (Modern)"
|
2014-12-31 16:40:30 +01:00
|
|
|
source: "fonts/modern-pro-font-win-tweaked/ProFontWindows.ttf"
|
2014-12-23 02:12:59 +01:00
|
|
|
lineSpacing: 0.1
|
2014-12-31 16:40:30 +01:00
|
|
|
pixelSize: 35
|
2014-12-23 02:12:59 +01:00
|
|
|
fontWidth: 1.0
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: false
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-12-23 02:12:59 +01:00
|
|
|
}
|
|
|
|
ListElement{
|
|
|
|
name: "INCONSOLATA"
|
2015-01-02 21:46:59 +01:00
|
|
|
text: "HD: Inconsolata (Modern)"
|
2014-12-23 02:12:59 +01:00
|
|
|
source: "fonts/modern-inconsolata/Inconsolata.otf"
|
|
|
|
lineSpacing: 0.1
|
2014-06-23 16:25:41 +02:00
|
|
|
pixelSize: 35
|
2014-12-12 01:38:32 +01:00
|
|
|
fontWidth: 1.0
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: false
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-06-23 16:25:41 +02:00
|
|
|
}
|
2014-08-07 00:13:59 -03:00
|
|
|
ListElement{
|
2014-12-16 01:22:46 +01:00
|
|
|
name: "IBM_3278"
|
2015-01-02 21:46:59 +01:00
|
|
|
text: "HD: IBM 3278 (1971)"
|
2014-08-07 00:13:59 -03:00
|
|
|
source: "fonts/1971-ibm-3278/3270Medium.ttf"
|
|
|
|
lineSpacing: 0.2
|
|
|
|
pixelSize: 32
|
2014-12-12 01:38:32 +01:00
|
|
|
fontWidth: 1.0
|
2014-12-31 13:46:03 +01:00
|
|
|
lowResolutionFont: false
|
2018-10-22 00:04:31 +02:00
|
|
|
isSystemFont: false
|
|
|
|
family: ""
|
2014-08-07 00:13:59 -03:00
|
|
|
}
|
2018-10-22 00:04:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: addSystemFonts()
|
|
|
|
|
|
|
|
function addSystemFonts() {
|
|
|
|
var families = monospaceSystemFonts;
|
|
|
|
for (var i = 0; i < families.length; i++) {
|
|
|
|
console.log("Adding system font: ", families[i])
|
|
|
|
fontlist.append(convertToListElement(families[i]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function convertToListElement(family) {
|
|
|
|
return {
|
|
|
|
name: "System: " + family,
|
|
|
|
text: qsTr("System: ") + family,
|
|
|
|
source: "",
|
|
|
|
lineSpacing: 0.1,
|
|
|
|
pixelSize: 30,
|
|
|
|
fontWidth: 1.0,
|
|
|
|
baseScaling: 1.0,
|
|
|
|
lowResolutionFont: false,
|
|
|
|
isSystemFont: true,
|
|
|
|
family: family
|
2017-03-06 21:36:02 +01:00
|
|
|
}
|
2014-06-23 16:25:41 +02:00
|
|
|
}
|
|
|
|
}
|