2023-02-02 22:57:18 -07:00
|
|
|
package theme
|
|
|
|
|
|
|
|
// Case sepecifies what kind of element is using a pattern. It contains a
|
|
|
|
// namespace parameter and an element parameter. The element parameter does not
|
|
|
|
// necissarily need to match an element name, but if it can, it should. Both
|
|
|
|
// parameters should be written in camel case. Themes can change their styling
|
|
|
|
// based on this parameter for fine-grained control over the look and feel of
|
|
|
|
// specific elements.
|
|
|
|
type Case struct { Namespace, Element string }
|
|
|
|
|
|
|
|
// C can be used as shorthand to generate a case struct as used in PatternState.
|
|
|
|
func C (namespace, element string) (c Case) {
|
|
|
|
return Case {
|
|
|
|
Namespace: namespace,
|
|
|
|
Element: element,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PatternState lists parameters which can change the appearance of some
|
|
|
|
// patterns. For example, passing a PatternState with Selected set to true may
|
|
|
|
// result in a pattern that has a colored border within it.
|
|
|
|
type PatternState struct {
|
|
|
|
// On should be set to true if the element that is using this pattern is
|
|
|
|
// in some sort of "on" state, such as if a checkbox is checked or a
|
|
|
|
// switch is toggled on. This is only necessary if the element in
|
|
|
|
// question is capable of being toggled.
|
|
|
|
On bool
|
|
|
|
|
|
|
|
// Focused should be set to true if the element that is using this
|
|
|
|
// pattern is currently focused.
|
|
|
|
Focused bool
|
|
|
|
|
|
|
|
// Pressed should be set to true if the element that is using this
|
|
|
|
// pattern is being pressed down by the mouse. This is only necessary if
|
|
|
|
// the element in question processes mouse button events.
|
|
|
|
Pressed bool
|
|
|
|
|
|
|
|
// Disabled should be set to true if the element that is using this
|
|
|
|
// pattern is locked and cannot be interacted with. Disabled variations
|
|
|
|
// of patterns are typically flattened and greyed-out.
|
|
|
|
Disabled bool
|
|
|
|
|
|
|
|
// Invalid should be set to true if th element that is using this
|
|
|
|
// pattern wants to warn the user of an invalid interaction or data
|
|
|
|
// entry. Invalid variations typically have some sort of reddish tint
|
|
|
|
// or outline.
|
|
|
|
Invalid bool
|
|
|
|
}
|
2023-02-08 12:36:14 -07:00
|
|
|
|
|
|
|
// FontStyle specifies stylistic alterations to a font face.
|
|
|
|
type FontStyle int; const (
|
|
|
|
FontStyleRegular FontStyle = 0
|
|
|
|
FontStyleBold FontStyle = 1
|
|
|
|
FontStyleItalic FontStyle = 2
|
|
|
|
FontStyleBoldItalic FontStyle = 1 | 2
|
|
|
|
)
|
|
|
|
|
|
|
|
// FontSize specifies the general size of a font face in a semantic way.
|
|
|
|
type FontSize int; const (
|
|
|
|
// FontSizeNormal is the default font size that should be used for most
|
|
|
|
// things.
|
|
|
|
FontSizeNormal FontSize = iota
|
|
|
|
|
|
|
|
// FontSizeLarge is a larger font size suitable for things like section
|
|
|
|
// headings.
|
|
|
|
FontSizeLarge
|
|
|
|
|
|
|
|
// FontSizeHuge is a very large font size suitable for things like
|
|
|
|
// titles, wizard step names, digital clocks, etc.
|
|
|
|
FontSizeHuge
|
|
|
|
|
|
|
|
// FontSizeSmall is a smaller font size. Try not to use this unless it
|
|
|
|
// makes a lot of sense to do so, because it can negatively impact
|
|
|
|
// accessibility. It is useful for things like copyright notices at the
|
|
|
|
// bottom of some window that the average user doesn't actually care
|
|
|
|
// about.
|
|
|
|
FontSizeSmall
|
|
|
|
)
|