2023-01-08 23:03:19 -07:00
|
|
|
package theme
|
|
|
|
|
2023-02-02 22:57:18 -07:00
|
|
|
import "image"
|
2023-02-16 16:00:15 -07:00
|
|
|
import "image/color"
|
2023-01-08 23:03:19 -07:00
|
|
|
import "golang.org/x/image/font"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
2023-02-12 08:55:32 -07:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/canvas"
|
|
|
|
|
|
|
|
// IconSize is a type representing valid icon sizes.
|
|
|
|
type IconSize int
|
|
|
|
|
|
|
|
const (
|
|
|
|
IconSizeSmall IconSize = 16
|
|
|
|
IconSizeLarge IconSize = 48
|
|
|
|
)
|
2023-01-08 23:03:19 -07:00
|
|
|
|
2023-02-02 22:57:18 -07:00
|
|
|
// Pattern lists a number of cannonical pattern types, each with its own ID.
|
|
|
|
// This allows custom elements to follow themes, even those that do not
|
|
|
|
// explicitly support them.
|
|
|
|
type Pattern int; const (
|
|
|
|
// PatternAccent is the accent color of the theme. It is safe to assume
|
|
|
|
// that this is, by default, a solid color.
|
|
|
|
PatternAccent Pattern = iota
|
|
|
|
|
|
|
|
// PatternBackground is the background color of the theme. It is safe to
|
|
|
|
// assume that this is, by default, a solid color.
|
|
|
|
PatternBackground
|
|
|
|
|
|
|
|
// PatternForeground is the foreground text color of the theme. It is
|
|
|
|
// safe to assume that this is, by default, a solid color.
|
|
|
|
PatternForeground
|
|
|
|
|
|
|
|
// PatternDead is a pattern that is displayed on a "dead area" where no
|
|
|
|
// controls exist, but there still must be some indication of visual
|
|
|
|
// structure (such as in the corner between two scroll bars).
|
|
|
|
PatternDead
|
|
|
|
|
|
|
|
// PatternRaised is a generic raised pattern.
|
|
|
|
PatternRaised
|
|
|
|
|
|
|
|
// PatternSunken is a generic sunken pattern.
|
|
|
|
PatternSunken
|
|
|
|
|
|
|
|
// PatternPinboard is similar to PatternSunken, but it is textured.
|
|
|
|
PatternPinboard
|
|
|
|
|
|
|
|
// PatternButton is a button pattern.
|
|
|
|
PatternButton
|
|
|
|
|
|
|
|
// PatternInput is a pattern for input fields, editable text areas, etc.
|
|
|
|
PatternInput
|
|
|
|
|
|
|
|
// PatternGutter is a track for things to slide on.
|
|
|
|
PatternGutter
|
|
|
|
|
|
|
|
// PatternHandle is a handle that slides along a gutter.
|
|
|
|
PatternHandle
|
|
|
|
)
|
|
|
|
|
2023-02-16 16:00:15 -07:00
|
|
|
// Hints specifies rendering hints for a particular pattern. Elements can take
|
|
|
|
// these into account in order to gain extra performance.
|
|
|
|
type Hints struct {
|
|
|
|
// StaticInset defines an inset rectangular area in the middle of the
|
|
|
|
// pattern that does not change between PatternStates. If the inset is
|
|
|
|
// zero on all sides, this hint does not apply.
|
2023-02-25 22:44:44 -07:00
|
|
|
StaticInset artist.Inset
|
2023-02-16 16:00:15 -07:00
|
|
|
|
|
|
|
// Uniform specifies a singular color for the entire pattern. If the
|
|
|
|
// alpha channel is zero, this hint does not apply.
|
|
|
|
Uniform color.RGBA
|
|
|
|
}
|
|
|
|
|
2023-02-02 22:57:18 -07:00
|
|
|
// Theme represents a visual style configuration,
|
|
|
|
type Theme interface {
|
|
|
|
// FontFace returns the proper font for a given style, size, and case.
|
|
|
|
FontFace (FontStyle, FontSize, Case) font.Face
|
|
|
|
|
2023-02-12 08:55:32 -07:00
|
|
|
// Icon returns an appropriate icon given an icon name, size, and case.
|
|
|
|
Icon (string, IconSize, Case) canvas.Image
|
2023-02-02 22:57:18 -07:00
|
|
|
|
|
|
|
// Pattern returns an appropriate pattern given a pattern name, case,
|
|
|
|
// and state.
|
2023-02-12 08:58:23 -07:00
|
|
|
Pattern (Pattern, PatternState, Case) artist.Pattern
|
2023-02-02 22:57:18 -07:00
|
|
|
|
2023-02-25 22:44:44 -07:00
|
|
|
// Padding returns how much space should be between the bounds of a
|
|
|
|
// pattern whatever an element draws inside of it.
|
|
|
|
Padding (Pattern, Case) artist.Inset
|
|
|
|
|
|
|
|
// Margin returns the left/right (x) and top/bottom (y) margins that
|
|
|
|
// should be put between any self-contained objects drawn within this
|
|
|
|
// pattern (if applicable).
|
|
|
|
Margin (Pattern, Case) image.Point
|
2023-01-08 23:03:19 -07:00
|
|
|
|
2023-02-02 22:57:18 -07:00
|
|
|
// Sink returns a vector that should be added to an element's inner
|
|
|
|
// content when it is pressed down (if applicable) to simulate a 3D
|
|
|
|
// sinking effect.
|
|
|
|
Sink (Pattern, Case) image.Point
|
2023-02-16 16:00:15 -07:00
|
|
|
|
|
|
|
// Hints returns rendering optimization hints for a particular pattern.
|
|
|
|
// These are optional, but following them may result in improved
|
|
|
|
// performance.
|
|
|
|
Hints (Pattern, Case) Hints
|
2023-01-08 23:03:19 -07:00
|
|
|
}
|