/usr/share/perl5/Curses/UI/Label.pm is in libcurses-ui-perl 0.9609-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | # ----------------------------------------------------------------------
# Curses::UI::Label
#
# (c) 2001-2002 by Maurice Makaay. All rights reserved.
# This file is part of Curses::UI. Curses::UI is free software.
# You can redistribute it and/or modify it under the same terms
# as perl itself.
#
# Currently maintained by Marcus Thiesen
# e-mail: marcus@cpan.thiesenweb.de
# ----------------------------------------------------------------------
# TODO: fix dox
package Curses::UI::Label;
use strict;
use Curses;
use Curses::UI::Widget;
use Curses::UI::Common;
use vars qw(
$VERSION
@ISA
);
$VERSION = '1.11';
@ISA = qw(
Curses::UI::Widget
);
sub new ()
{
my $class = shift;
my %userargs = @_;
keys_to_lowercase(\%userargs);
my %args = (
-parent => undef, # the parent window
-width => undef, # the width of the label
-height => undef, # the height of the label
-x => 0, # the hor. pos. rel. to the parent
-y => 0, # the vert. pos. rel. to the parent
-text => undef, # the text to show
-textalignment => undef, # left / middle / right
-bold => 0, # Special attributes
-reverse => 0,
-underline => 0,
-dim => 0,
-blink => 0,
-paddingspaces => 0, # Pad text with spaces?
-bg => -1,
-fg => -1,
%userargs,
-nocursor => 1, # This widget uses no cursor
-focusable => 0, # This widget can't be focused
);
# Get the text dimension if -width or -height is undefined.
my @text_dimension = (undef,1);
unless (defined $args{-width} and defined $args{-height}) {
@text_dimension = text_dimension($args{-text})
if defined $args{-text};
}
# If the -height is not set, determine the height
# using the initial contents of the -text.
if (not defined $args{-height})
{
my $l = $text_dimension[1];
$l = 1 if $l <= 0;
$args{-height} = height_by_windowscrheight($l, %args);
}
# No width given? Then make the width the same size
# as the text. No initial text? Then let
# Curses::UI::Widget figure it out.
$args{-width} = width_by_windowscrwidth($text_dimension[0], %args)
unless defined $args{-width} or not defined $args{-text};
# If no text was defined (how silly...) we define an empty string.
$args{-text} = '' unless defined $args{-text};
# Create the widget.
my $this = $class->SUPER::new( %args );
$this->layout();
return $this;
}
sub layout()
{
my $this = shift;
$this->SUPER::layout or return;
return $this;
}
sub bold ($;$) { shift()->set_attribute('-bold', shift()) }
sub reverse ($;$) { shift()->set_attribute('-reverse', shift()) }
sub underline ($;$) { shift()->set_attribute('-underline', shift()) }
sub dim ($;$) { shift()->set_attribute('-dim', shift()) }
sub blink ($;$) { shift()->set_attribute('-blink', shift()) }
sub set_attribute($$;)
{
my $this = shift;
my $attribute = shift;
my $value = shift || 0;
$this->{$attribute} = $value;
$this->intellidraw;
return $this;
}
sub text($;$)
{
my $this = shift;
my $text = shift;
if (defined $text)
{
$this->{-text} = $text;
$this->intellidraw;
return $this;
} else {
return $this->{-text};
}
}
sub get() { shift()->text }
sub textalignment($;)
{
my $this = shift;
my $value = shift;
$this->{-textalignment} = $value;
$this->intellidraw;
return $this;
}
sub compute_xpos()
{
my $this = shift;
my $line = shift;
# Compute the x location of the text.
my $xpos = 0;
if (defined $this->{-textalignment})
{
if ($this->{-textalignment} eq 'right') {
$xpos = $this->canvaswidth - length($line);
} elsif ($this->{-textalignment} eq 'middle') {
$xpos = int (($this->canvaswidth-length($line))/2);
}
}
$xpos = 0 if $xpos < 0;
return $xpos;
}
sub draw(;$)
{
my $this = shift;
my $no_doupdate = shift || 0;
# Draw the widget.
$this->SUPER::draw(1) or return $this;
# Clear all attributes.
$this->{-canvasscr}->attroff(A_REVERSE);
$this->{-canvasscr}->attroff(A_BOLD);
$this->{-canvasscr}->attroff(A_UNDERLINE);
$this->{-canvasscr}->attroff(A_BLINK);
$this->{-canvasscr}->attroff(A_DIM);
# Set wanted attributes.
$this->{-canvasscr}->attron(A_REVERSE) if $this->{-reverse};
$this->{-canvasscr}->attron(A_BOLD) if $this->{-bold};
$this->{-canvasscr}->attron(A_UNDERLINE) if $this->{-underline};
$this->{-canvasscr}->attron(A_BLINK) if $this->{-blink};
$this->{-canvasscr}->attron(A_DIM) if $this->{-dim};
# Let there be color
if ($Curses::UI::color_support) {
my $co = $Curses::UI::color_object;
my $pair = $co->get_color_pair(
$this->{-fg},
$this->{-bg});
$this->{-canvasscr}->attron(COLOR_PAIR($pair));
}
# Draw the text. Clip it if it is too long.
my $ypos = 0;
my $split = split_to_lines($this->{-text});
foreach my $line (@$split)
{
if (length($line) > $this->canvaswidth) {
# Break text
$line = substr($line, 0, $this->canvaswidth);
$line =~ s/.$/\$/;
} elsif ($this->{-paddingspaces}) {
$this->{-canvasscr}->addstr($ypos, 0, " "x$this->canvaswidth);
}
my $xpos = $this->compute_xpos($line);
$this->{-canvasscr}->addstr($ypos, $xpos, $line);
$ypos++;
}
$this->{-canvasscr}->noutrefresh;
doupdate() unless $no_doupdate;
return $this;
}
1;
=pod
=head1 NAME
Curses::UI::Label - Create and manipulate label widgets
=head1 CLASS HIERARCHY
Curses::UI::Widget
|
+----Curses::UI::Label
=head1 SYNOPSIS
use Curses::UI;
my $cui = new Curses::UI;
my $win = $cui->add('window_id', 'Window');
my $label = $win->add(
'mylabel', 'Label',
-text => 'Hello, world!',
-bold => 1,
);
$label->draw;
=head1 DESCRIPTION
Curses::UI::Label is a widget that shows a textstring.
This textstring can be drawn using these special
features: bold, dimmed, reverse, underlined, and blinking.
See exampes/demo-Curses::UI::Label in the distribution
for a short demo.
=head1 STANDARD OPTIONS
B<-parent>, B<-x>, B<-y>, B<-width>, B<-height>,
B<-pad>, B<-padleft>, B<-padright>, B<-padtop>, B<-padbottom>,
B<-ipad>, B<-ipadleft>, B<-ipadright>, B<-ipadtop>, B<-ipadbottom>,
B<-title>, B<-titlefullwidth>, B<-titlereverse>, B<-onfocus>,
B<-onblur>
For an explanation of these standard options, see
L<Curses::UI::Widget|Curses::UI::Widget>.
=head1 WIDGET-SPECIFIC OPTIONS
=over 4
=item * B<-height> < VALUE >
If you do not define B<-height>, the label will compute
its needed height using the initial B<-text>.
=item * B<-text> < TEXT >
This will set the text on the label to TEXT.
=item * B<-textalignment> < VALUE >
This option controls how the text should be aligned inside
the label. VALUE can be 'left', 'middle' and 'right'. The
default value for this option is 'left'.
=item * B<-paddingspaces> < BOOLEAN >
This option controls if padding spaces should be added
to the text if the text does not fill the complete width
of the widget. The default value for BOOLEAN is false.
An example use of this option is:
$win->add(
'label', 'Label',
-width => -1,
-paddingspaces => 1,
-text => 'A bit of text',
);
This will create a label that fills the complete width of
your screen and which will be completely in reverse font
(also the part that has no text on it). See the demo
in the distribution (examples/demo-Curses::UI::Label)
for a clear example of this)
=item * B<-bold> < BOOLEAN >
If BOOLEAN is true, text on the label will be drawn in
a bold font.
=item * B<-dim> < BOOLEAN >
If BOOLEAN is true, text on the label will be drawn in
a dim font.
=item * B<-reverse> < BOOLEAN >
If BOOLEAN is true, text on the label will be drawn in
a reverse font.
=item * B<-underline> < BOOLEAN >
If BOOLEAN is true, text on the label will be drawn in
an underlined font.
=item * B<-blink> < BOOLEAN >
If BOOLEAN is option is true, text on the label will be
drawn in a blinking font.
=back
=head1 METHODS
=over 4
=item * B<new> ( OPTIONS )
=item * B<layout> ( )
=item * B<draw> ( BOOLEAN )
=item * B<intellidraw> ( )
=item * B<focus> ( )
=item * B<onFocus> ( CODEREF )
=item * B<onBlur> ( CODEREF )
These are standard methods. See L<Curses::UI::Widget|Curses::UI::Widget>
for an explanation of these.
=item * B<bold> ( BOOLEAN )
=item * B<dim> ( BOOLEAN )
=item * B<reverse> ( BOOLEAN )
=item * B<underline> ( BOOLEAN )
=item * B<blink> ( BOOLEAN )
These methods can be used to control the font in which the text on
the label is drawn, after creating the widget. The font option
will be turned on for a true value of BOOLEAN.
=item * B<textalignment> ( VALUE )
Set the textalignment. VALUE can be 'left',
'middle' or 'right'.
=item * B<text> ( [TEXT] )
Without the TEXT argument, this method will return the current
text of the widget. With a TEXT argument, the text on the widget
will be set to TEXT.
=item * B<get> ( )
This will call the B<text> method without any argument and thus
it will return the current text of the label.
=back
=head1 DEFAULT BINDINGS
Since a Label is a non-interacting widget, it does not have
any bindings.
=head1 SEE ALSO
L<Curses::UI|Curses::UI>,
L<Curses::UI::Widget|Curses::UI::Widget>,
=head1 AUTHOR
Copyright (c) 2001-2002 Maurice Makaay. All rights reserved.
Maintained by Marcus Thiesen (marcus@cpan.thiesenweb.de)
This package is free software and is provided "as is" without express
or implied warranty. It may be used, redistributed and/or modified
under the same terms as perl itself.
|