1
0
mirror of https://github.com/lxsang/Diya-API.git synced 2024-12-26 19:38:22 +01:00
Diya-API/Diya/DiyaFontManager.class.st

111 lines
2.3 KiB
Smalltalk
Raw Normal View History

2022-03-01 19:22:26 +01:00
Class {
#name : #DiyaFontManager,
#superclass : #DiyaSingleton,
#instVars : [
'families'
],
#category : #'Diya-Fonts'
}
{ #category : #'instance creation' }
DiyaFontManager class >> cleanUpInstance: singleton [
singleton ifNil:[^self].
2022-03-01 19:22:26 +01:00
singleton reset.
]
2022-03-01 22:58:58 +01:00
{ #category : #initialization }
DiyaFontManager >> defaultFamily [
2022-03-19 02:18:29 +01:00
^'Ubuntu'
2022-03-01 22:58:58 +01:00
2022-03-21 01:45:21 +01:00
]
{ #category : #initialization }
DiyaFontManager >> defaultIconSet [
^ self style: 'Regular' from: 'bootstrap-icons'
]
{ #category : #initialization }
DiyaFontManager >> defaultStyle [
^'Regular'
2022-03-01 22:58:58 +01:00
]
2022-03-01 19:22:26 +01:00
{ #category : #accessing }
DiyaFontManager >> families [
^ families
]
{ #category : #accessing }
DiyaFontManager >> familyNames [
^ families keys
]
{ #category : #initialization }
DiyaFontManager >> initialize [
super initialize.
families := Dictionary new.
]
{ #category : #initialization }
DiyaFontManager >> loadFace: face [
|family|
family := families at: face familyName ifAbsentPut:[DiyaFontFamily fromFace: face].
family addFace: face
]
{ #category : #initialization }
DiyaFontManager >> loadFile: aFile [
| path face i numfaces |
path := aFile fullName convertToWithConverter: UTF8TextConverter new.
self stdlog: 'Loading font file ', path.
2022-03-01 19:22:26 +01:00
i := 0.
numfaces := nil.
[ face := FreeTypeFace basicNew
filename: path;
index: i.
face newFaceFromFile: path index: i.
face loadFields.
2022-08-13 15:55:51 +02:00
self stdlog: 'Loaded font face ', face styleName.
2022-03-01 19:22:26 +01:00
numfaces ifNil: [ numfaces := face numFaces ].
self loadFace: face.
i := i + 1.
2022-03-19 02:18:29 +01:00
i < numfaces ] whileTrue
2022-03-01 19:22:26 +01:00
]
{ #category : #initialization }
DiyaFontManager >> loadFonts [
self loadFonts: false.
]
{ #category : #initialization }
DiyaFontManager >> loadFonts: force [
force ifTrue:[self reset].
DiyaSystemSettings fontPaths
select:[:p| p asFileReference exists]
thenDo:[:path| self loadPath: path].
2022-03-01 19:22:26 +01:00
]
{ #category : #initialization }
DiyaFontManager >> loadPath: path [
path entries do:[:entry| entry isFile ifTrue:[self loadFile: entry ]].
]
{ #category : #initialization }
DiyaFontManager >> reset [
"reset all stored faces"
families := Dictionary new.
]
2022-03-04 20:28:38 +01:00
{ #category : #initialization }
DiyaFontManager >> style: styleName from: familyName [
|family|
2022-03-21 01:45:21 +01:00
family := families at: familyName ifAbsent: [ families at: self defaultFamily ].
2022-03-04 20:28:38 +01:00
^family style: styleName
]