# You may distribute under the terms of either the GNU General Public License # or the Artistic License (the same terms as Perl itself) # # (C) Paul Evans, 2013-2022 -- leonerd@leonerd.org.uk use Object::Pad 0.70 ':experimental(adjust_params)'; package Tickit::Style 0.54; use strict; use warnings; use 5.010; use experimental 'postderef'; use Carp; use Tickit::Pen; use Tickit::Style::Parser; our @EXPORTS = qw( style_definition style_reshape_keys style_reshape_textwidth_keys style_redraw_keys ); # {$type}->{$class} = $tagset my %TAGSETS_BY_TYPE_CLASS; # {$type}->{$key} = 1 my %RESHAPE_KEYS; my %RESHAPE_TEXTWIDTH_KEYS; my %REDRAW_KEYS; =head1 NAME C - declare customisable style information on widgets =head1 SYNOPSIS package My::Widget::Class use base qw( Tickit::Widget ); use Tickit::Style; style_definition base => fg => "red"; style_definition ':active' => b => 1; ... sub render_to_rb { my $self = shift; my ( $rb, $rect ) = @_; $rb->text_at( 0, 0, "Here is my text", $self->get_style_pen ); } Z<> use My::Widget::Class; my $w = My::Widget::Class->new( class => "another-class", ); ... =head1 DESCRIPTION This module adds the ability to a L class to declare a set of named keys that take values, and provides convenient accessors for the widget to determine what the values are at any given moment in time. The values currently in effect are determined by the widget class code, and any stylesheet files loaded by the application. The widget itself can store a set of tags; named entities that may be present or absent. The set of tags currently active on a widget helps to determine which definitions style are to be used. Finally, the widget itself stores a list of style class names. These classes also help determine which style definitions from a loaded stylesheet file are applied. =head2 Stylesheet Files A stylesheet file contains a list of definitions of styles. Each definition gives a C class name, optionally a style class name prefixed by a period (C<.>), optionally a set of tags prefixed with colons (C<:>), and a body definition in a brace-delimited (C<{}>) block. Comments can appear anywhere that whitespace is allowed, starting with a hash symbol (C<#>) and continuing to the end of the line. WidgetClass { # basic style goes here } WidgetClass.styleclass { # style to apply for this class goes here } WidgetClass:tag { # style to apply when this tag is active goes here } Each style definition contains a set semicolon-delimited (C<;>) assignments of values to keys. Each key is suffixed by a colon (C<:>), and the values may be integers, quoted strings (C<"...">), or the special identifiers C or C. WidgetClass.styleclass { key1: "value 1"; key2: 123; key3: true; } While it is more traditional for keys in stylesheet files to contain hyphens (C<->), it is more convenient in Perl code to use underscores (C<_>) instead. The parser will convert hyphens in key names into underscores. As well as giving visual styling information, stylesheets can also associate behavioural actions with keypresses. These are given by a keypress key name in angle brackets (C<< >>) and an action name, which is a bareword identifier. WidgetClass { : activate; } A special widget type name of C<*> can also be used to provide style blocks that will apply (at lower priority) to any type of widget. Typically these would be used along with classes or tags, to set application-wide styles. *:error { bg: "red"; fg: "hi-white"; } =head2 How Style is Determined The full set of style definitions applied to one named class of one widget type for all its style tags is called a "tagset". Each tagset consists of a partially-ordered list of entities called "keysets", which give a mapping from style keys to values for one particular set of active style tags. The widget may also have a special tagset containing the "direct-applied" style definition given to the constructor. The style at any given moment is determined by taking into account the style classes and tags that are in effect. The value of each key is determined by a first-match-wins search along the "direct applied" tagset (if present), then the tagset for each of the style classes, in order, followed finally by the base tagset for the widget type without class. Within each tagset, only the keysets that do not depend on a style tag that is inactive are considered. That is, a keyset that depends on no tags will always be considered, and any keyset that only depends on active keys will be considered, even if there are other active tags that the keyset does not consider. Tags are always additive, in this regard. While the order of the tagsets is exactly defined by the order of the style classes applied to the widget, the order of keysets within each tagset is not fully specified. Tagsets are stored partially ordered, sorted by the number of style tags that each keyset depends on. This ensures that more specific keysets are found before, and therefore override, less specific ones. However, it is not defined the ordering of keysets with equal numbers of (distinct) tags. For instance, if both C and C are active, the following stylesheet does not precisely determine the foreground colour: WidgetClass { fg: "red"; } WidgetClass:tag1 { fg: "blue"; } WidgetClass:tag2 { fg: "green"; } While it is not specified which tagged definition takes precedence, and therefore whether it shall be blue or green, it is specified that both of the tagged definitions take precedence over the untagged definition, so the colour will not be red. =head1 SUBCLASSING If a Widget class is subclassed and the subclass does not declare C again, the subclass will be transparent from the point of view of style. Any style applied to the base class will apply equally to the subclass, and the name of the subclass does not take part in style decisions. If the subclass does C again then the new subclass has a distinct widget type for style purposes. It can optionally copy the style information from its base class, but thereafter the stored information is distinct, and changes in the base class (such as loading style files) will not affect it. To copy the style information from the base, apply the C<-copy> keyword: use Tickit::Style -copy; Alternatively, to start with a new blank state, use the C<-blank> keyword: use Tickit::Style -blank; Currently, C<-blank> is the default behaviour, but this may change in a future version, with a deprecation warning if no keyword is specified. =cut # This class imports functions and sets up initial state sub import { my $class = shift; my $pkg = caller; my @symbols = @_; ( my $type = $pkg ) =~ s/^Tickit::Widget:://; my $mode = "blank"; foreach ( @symbols ) { $mode = "blank", next if $_ eq "-blank"; $mode = "copy", next if $_ eq "-copy"; croak "Unrecognised symbol $_ to Tickit::Style->import"; } my $srctype = $pkg->can( "_widget_style_type" ) && $pkg->_widget_style_type; if( $mode eq "blank" ) { # OK } elsif( $mode eq "copy" ) { defined $srctype or croak "Cannot Tickit::Style -copy in $pkg as there is no source type"; foreach my $c ( keys %{ $TAGSETS_BY_TYPE_CLASS{$srctype} || {} } ) { $TAGSETS_BY_TYPE_CLASS{$type}{$c} = $TAGSETS_BY_TYPE_CLASS{$srctype}{$c}->clone; } foreach my $hash ( \%RESHAPE_KEYS, \%RESHAPE_TEXTWIDTH_KEYS, \%REDRAW_KEYS ) { # shallow copy is sufficient $hash->{$type} = { $hash->{$srctype}->%* } if $hash->{$srctype}; } } # Import the symbols { no strict 'refs'; *{"${pkg}::$_"} = \&{"Tickit::Style::$_"} for @EXPORTS; *{"${pkg}::_widget_style_type"} = sub () { $type }; } $TAGSETS_BY_TYPE_CLASS{$type} ||= {}; } sub _ref_tagset { my ( $type, $class ) = @_; $type eq "*" or $TAGSETS_BY_TYPE_CLASS{$type} or croak "$type is not a styled Widget type"; $class = "" if !defined $class; return $TAGSETS_BY_TYPE_CLASS{$type}{$class} ||= Tickit::Style::_Tagset->new; } =head1 FUNCTIONS =cut =head2 style_definition style_definition( $tags, %definition ) In addition to any loaded stylesheets, the widget class itself can provide style information, via the C function. It provides a definition equivalent to a stylesheet definition with no style class, optionally with a single set of tags. To supply no tags, use the special string C<"base">. style_definition base => key1 => "value", key2 => 123; To provide definitions with tags, use the colon-prefixed notation. style_definition ':active' => key3 => "value"; =cut sub style_definition { my $class = caller; my ( $tags, %definition ) = @_; my %tags; $tags{$1}++ while $tags =~ s/:([A-Z0-9_-]+)//i; die "Expected '\$tags' to be 'base' or a set of :tag names" unless $tags eq "base" or $tags eq ""; my $type = $class->_widget_style_type; _ref_tagset( $type, undef )->merge_with_tags( \%tags, \%definition ); } =head2 style_reshape_keys style_reshape_keys( @keys ) Declares that the given list of keys are somehow responsible for determining the shape of the widget. If their values are changed, the C method is called. =cut sub style_reshape_keys { my $class = caller; my $type = $class->_widget_style_type; $RESHAPE_KEYS{$type}{$_} = 1 for @_; } sub _reshape_keys { my ( $type ) = @_; return keys $RESHAPE_KEYS{$type}->%*; } =head2 style_reshape_textwidth_keys style_reshape_textwidth_keys( @keys ) Declares that the given list of keys contain text, the C of which is used to determine the shape of the widget. If their values are changed such that the C differs, the C method is called. =cut sub style_reshape_textwidth_keys { my $class = caller; my $type = $class->_widget_style_type; $RESHAPE_TEXTWIDTH_KEYS{$type}{$_} = 1 for @_; } sub _reshape_textwidth_keys { my ( $type ) = @_; return keys $RESHAPE_TEXTWIDTH_KEYS{$type}->%*; } =head2 style_redraw_keys style_redraw_keys( @keys ) Declares that the given list of keys are somehow responsible for determining the look of the widget, but in a way that does not determine the size. If their values are changed, the C method is called. Between them these three methods may help avoid C classes from needing to override the C method. =cut sub style_redraw_keys { my $class = caller; my $type = $class->_widget_style_type; $REDRAW_KEYS{$type}{$_} = 1 for @_; } sub _redraw_keys { my ( $type ) = @_; return keys $REDRAW_KEYS{$type}->%*; } my @ON_STYLE_LOAD; # Not exported sub _load_style { my ( $defs ) = @_; foreach my $def ( @$defs ) { my $type = $def->type; $TAGSETS_BY_TYPE_CLASS{$type} ||= {}; my $tagset = _ref_tagset( $type, $def->class ); $tagset->merge_with_tags( $def->tags, $def->style ); } foreach my $code ( @ON_STYLE_LOAD ) { $code->(); } } =head1 ADDITIONAL FUNCTIONS/METHODS These functions are not exported, but may be called directly. =cut =head2 load_style Tickit::Style->load_style( $string ) Loads definitions from a stylesheet given in a string. Definitions will be merged with existing definitions in memory, with new values overwriting existing values. =cut sub load_style { shift; my ( $str ) = @_; _load_style( Tickit::Style::Parser->new->from_string( $str ) ); } =head2 load_style_file Tickit::Style->load_style_file( $path ) Loads definitions from a stylesheet file given by the path. Definitions will be merged the same way as C. =cut sub load_style_file { shift; my ( $path ) = @_; # TODO: use ->from_file( $path, binmode => ":encoding(UTF-8)" ) when available my $str = do { open my $fh, "<:encoding(UTF-8)", $path or croak "Cannot read $path - $!"; local $/; <$fh>; }; _load_style( Tickit::Style::Parser->new->from_string( $str ) ); } =head2 load_style_from_DATA Tickit::Style->load_style_from_DATA A convenient shortcut for loading style definitions from the caller's C filehandle. =cut sub load_style_from_DATA { shift; my $pkg = caller; my $fh = do { no strict 'refs'; \*{"${pkg}::DATA"} }; my $str = do { local $/; <$fh> }; _load_style( Tickit::Style::Parser->new->from_string( $str ) ); } =head2 on_style_load Tickit::Style::on_style_load( \&code ) Adds a CODE reference to be invoked after either C or C are called. This may be useful to flush any caches or invalidate any state that depends on style information. =cut sub on_style_load { my ( $code ) = @_; push @ON_STYLE_LOAD, $code; } class # hide from indexer Tickit::Style::_Keyset :strict(params) { # A "Keyset" is the set of style keys applied to one particular set of # style tags field $tags :reader :param; field $style :reader :param; method clone { return __PACKAGE__->new( tags => $tags, style => { %$style } ); } } class # hide from indexer Tickit::Style::_Tagset :strict(params); use experimental 'postderef'; field @_keysets; ADJUST :params ( :$keysets = undef ) { @_keysets = $keysets->@* if $keysets; } method clone { return __PACKAGE__->new( keysets => [ map { $_->clone } @_keysets ] ); } method add { my ( $key, $value ) = @_; my %tags; $tags{$1}++ while $key =~ s/:([A-Z0-9_-]+)//i; $self->merge_with_tags( \%tags, { $key => $value } ); } method merge { my ( $other ) = @_; foreach my $keyset ( $other->keysets ) { $self->merge_with_tags( $keyset->tags, $keyset->style ); } } method merge_with_tags { my ( $tags, $style ) = @_; my $keyset = Tickit::Style::_Keyset->new( tags => $tags, style => $style ); @_keysets = ( $keyset ) and return if !@_keysets; # First see if we have to merge an existing one KEYSET: foreach my $keyset ( @_keysets ) { $keyset->tags->{$_} or next KEYSET for keys %$tags; $tags->{$_} or next KEYSET for keys $keyset->tags->%*; # Merge foreach my $key ( keys %$style ) { defined $style->{$key} ? $keyset->style->{$key} = $style->{$key} : delete $keyset->style->{$key}; } return; } # Keep sorted, most tags first # TODO: this might be doable more efficiently but we don't care for now @_keysets = sort { scalar keys $b->tags->%* <=> scalar keys $a->tags->%* } ( @_keysets, $keyset ); } method keysets { return @_keysets; } 0x55AA;