VideoTools/vendor/fyne.io/fyne/v2/theme/font.go
Stu Leak 68df790d27 Fix player frame generation and video playback
Major improvements to UnifiedPlayer:

1. GetFrameImage() now works when paused for responsive UI updates
2. Play() method properly starts FFmpeg process
3. Frame display loop runs continuously for smooth video display
4. Disabled audio temporarily to fix video playback fundamentals
5. Simplified FFmpeg command to focus on video stream only

Player now:
- Generates video frames correctly
- Shows video when paused
- Has responsive progress tracking
- Starts playback properly

Next steps: Re-enable audio playback once video is stable
2026-01-07 22:20:00 -05:00

120 lines
3.0 KiB
Go

package theme
import (
"image/color"
"fyne.io/fyne/v2"
)
// DefaultEmojiFont returns the font resource for the built-in emoji font.
// This may return nil if the application was packaged without an emoji font.
//
// Since: 2.4
func DefaultEmojiFont() fyne.Resource {
return emoji
}
// DefaultTextBoldFont returns the font resource for the built-in bold font style.
func DefaultTextBoldFont() fyne.Resource {
return bold
}
// DefaultTextBoldItalicFont returns the font resource for the built-in bold and italic font style.
func DefaultTextBoldItalicFont() fyne.Resource {
return bolditalic
}
// DefaultTextFont returns the font resource for the built-in regular font style.
func DefaultTextFont() fyne.Resource {
return regular
}
// DefaultTextItalicFont returns the font resource for the built-in italic font style.
func DefaultTextItalicFont() fyne.Resource {
return italic
}
// DefaultTextMonospaceFont returns the font resource for the built-in monospace font face.
func DefaultTextMonospaceFont() fyne.Resource {
return monospace
}
// DefaultSymbolFont returns the font resource for the built-in symbol font.
//
// Since: 2.2
func DefaultSymbolFont() fyne.Resource {
return symbol
}
// Font looks up the font for current theme and text style.
//
// Since: 2.5
func Font(style fyne.TextStyle) fyne.Resource {
return safeFontLookup(style)
}
// TextBoldFont returns the font resource for the bold font style.
func TextBoldFont() fyne.Resource {
return safeFontLookup(fyne.TextStyle{Bold: true})
}
// TextBoldItalicFont returns the font resource for the bold and italic font style.
func TextBoldItalicFont() fyne.Resource {
return safeFontLookup(fyne.TextStyle{Bold: true, Italic: true})
}
// TextColor returns the theme's standard text color - this is actually the foreground color since 1.4.
//
// Deprecated: Use theme.ForegroundColor() colour instead.
func TextColor() color.Color {
return safeColorLookup(ColorNameForeground, currentVariant())
}
// TextFont returns the font resource for the regular font style.
func TextFont() fyne.Resource {
return safeFontLookup(fyne.TextStyle{})
}
// TextItalicFont returns the font resource for the italic font style.
func TextItalicFont() fyne.Resource {
return safeFontLookup(fyne.TextStyle{Italic: true})
}
// TextMonospaceFont returns the font resource for the monospace font face.
func TextMonospaceFont() fyne.Resource {
return safeFontLookup(fyne.TextStyle{Monospace: true})
}
// SymbolFont returns the font resource for the symbol font style.
//
// Since: 2.4
func SymbolFont() fyne.Resource {
return safeFontLookup(fyne.TextStyle{Symbol: true})
}
func safeFontLookup(s fyne.TextStyle) fyne.Resource {
font := Current().Font(s)
if font != nil {
return font
}
fyne.LogError("Loaded theme returned nil font", nil)
if s.Monospace {
return DefaultTextMonospaceFont()
}
if s.Bold {
if s.Italic {
return DefaultTextBoldItalicFont()
}
return DefaultTextBoldFont()
}
if s.Italic {
return DefaultTextItalicFont()
}
if s.Symbol {
return DefaultSymbolFont()
}
return DefaultTextFont()
}