1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
# 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, 2009-2023 -- leonerd@leonerd.org.uk
use v5.20;
use warnings;
use Object::Pad 0.807;
package Tickit::Widget::Static 0.58;
class Tickit::Widget::Static :strict(params);
inherit Tickit::Widget;
use Tickit::Style;
use Tickit::WidgetRole::Alignable name => 'align', dir => 'h';
use Tickit::WidgetRole::Alignable name => 'valign', dir => 'v';
use List::Util qw( max );
use Tickit::Utils qw( textwidth substrwidth );
use constant WIDGET_PEN_FROM_STYLE => 1;
=head1 NAME
C<Tickit::Widget::Static> - a widget displaying static text
=head1 SYNOPSIS
use Tickit;
use Tickit::Widget::Static;
my $hello = Tickit::Widget::Static->new(
text => "Hello, world",
align => "centre",
valign => "middle",
);
Tickit->new( root => $hello )->run;
=head1 DESCRIPTION
This class provides a widget which displays a single piece of static text. The
text may contain more than one line, separated by linefeed (C<\n>) characters.
No other control sequences are allowed in the string.
=head1 STYLE
The default style pen is used as the widget pen.
Note that while the widget pen is mutable and changes to it will result in
immediate redrawing, any changes made will be lost if the widget style is
changed.
=cut
=head1 CONSTRUCTOR
=cut
=head2 new
$static = Tickit::Widget::Static->new( %args );
Constructs a new C<Tickit::Widget::Static> object.
Takes the following named arguments in addition to those taken by the base
L<Tickit::Widget> constructor:
=over 8
=item text => STRING
The text to display
=item align => FLOAT|STRING
Optional. Defaults to C<0.0> if unspecified.
=item valign => FLOAT|STRING
Optional. Defaults to C<0.0> if unspecified.
=item on_click => CODE
Optional. Defaults to C<undef> if unspecified.
=back
For more details see the accessors below.
=cut
field @_lines;
field $_on_click :reader :writer :param = undef;
ADJUST :params (
:$text = undef,
:$align = 0,
:$valign = 0,
) {
$self->set_text( $text );
$self->set_align( $align );
$self->set_valign( $valign );
}
=head1 ACCESSORS
=cut
method lines
{
return scalar @_lines;
}
method cols
{
return max map { textwidth $_ } @_lines;
}
=head2 text
$text = $static->text;
=cut
method text
{
return join "\n", @_lines;
}
=head2 set_text
$static->set_text( $text );
Accessor for C<text> property; the actual text on display in the widget
=cut
method set_text
{
my ( $text ) = @_;
my $waslines = $self->lines;
my $wascols = $self->cols;
@_lines = split m/\n/, $text;
# split on empty string returns empty list
@_lines = ( "" ) if !@_lines;
$self->resized if $self->lines != $waslines or $self->cols != $wascols;
$self->redraw;
}
=head2 align
=head2 set_align
$align = $static->align;
$static->set_align( $align );
Accessor for horizontal alignment value.
Gives a value in the range from C<0.0> to C<1.0> to align the text display
within the window. If the window is larger than the width of the text, it will
be aligned according to this value; with C<0.0> on the left, C<1.0> on the
right, and other values inbetween.
See also L<Tickit::WidgetRole::Alignable>.
=cut
# generated accessor
method render_to_rb
{
my ( $rb, $rect ) = @_;
my $win = $self->window;
$rb->erase_at( $_, $rect->left, $rect->cols ) for $rect->linerange;
my $cols = $win->cols;
my ( $above, $lines ) = $self->_valign_allocation( $self->lines, $win->lines );
foreach my $line ( 0 .. $lines - 1 ) {
my $text = $_lines[$line];
my ( $left, $textwidth ) = $self->_align_allocation( textwidth( $text ), $cols );
$rb->text_at( $above + $line, $left, substrwidth( $text, 0, $textwidth ) );
}
}
method on_mouse
{
my ( $args ) = @_;
return unless $args->type eq "press" and $args->button == 1;
return unless $_on_click;
$_on_click->( $self, $args->line, $args->col );
}
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|