Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

prima::fontdialog(3) [debian man page]

Prima::FontDialog(3)					User Contributed Perl Documentation				      Prima::FontDialog(3)

NAME
Prima::FontDialog - standard font dialog SYNOPSIS
use Prima::FontDialog; my $f = Prima::FontDialog-> create; return unless $f-> execute == mb::OK; $f = $f-> logFont; print "$_:$f->{$_} " for sort keys %$f; DESCRIPTION
The dialog provides selection of font by name, style, size, and encoding. The font selected is returned by logFont property. API
Properties fixedOnly BOOLEAN Selects whether only the fonts of fixed pitch ( 1 ) or all fonts ( 0 ) are displayed in the selection list. Default value: 0 logFont FONT Provides access to the interactive font selection as a hash reference. FONT format is fully compatible with "Prima::Drawable::font". showHelp BOOLEAN Create-only property. Specifies if the help button is displayed in the dialog. Default value: 0 Events BeginDragFont Called when the user starts dragging a font from the font sample widget by left mouse button. Default action reflects the status in the dialog title EndDragFont $WIDGET Called when the user releases the mouse drag over a Prima widget. Default action applies currently selected font to $WIDGET. AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSO
Prima, Prima::Window, Prima::Drawable. perl v5.14.2 2009-02-24 Prima::FontDialog(3)

Check Out this Related Man Page

Prima::ScrollWidget(3)					User Contributed Perl Documentation				    Prima::ScrollWidget(3)

NAME
Prima::ScrollWidget - scrollable generic document widget. DESCRIPTION
"Prima::ScrollWidget" is a simple class that declares two pairs of properties, delta and limit for vertical and horizontal axes, which define a a virtual document. limit is the document dimension, and delta is the current offset. "Prima::ScrollWidget" is a descendant of "Prima::GroupScroller", and, as well as its ascendant, provides same user navigation by two scrollbars. The scrollbars' "partial" and "whole" properties are maintained if the document or widget extensions change. API
Properties deltas X, Y Selects horizontal and vertical document offsets. deltaX INTEGER Selects horizontal document offset. deltaY INTEGER Selects vertical document offset. limits X, Y Selects horizontal and vertical document extensions. limitX INTEGER Selects horizontal document extension. limitY INTEGER Selects vertical document extension. Events Scroll DX, DY Called whenever the client area is to be scrolled. The default action calls "Widget::scroll" . AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSO
Prima, Prima::ImageViewer, Prima::IntUtils, Prima::ScrollBar, examples/e.pl. perl v5.14.2 2009-02-24 Prima::ScrollWidget(3)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

Default fonts with Tcl and Tk

Our SAs just rebuilt all of our SunOS and Linux boxes. All the TCL tools I had developed will come up but the font is the dingbat font set. Unless I explicitly set each button, label, radiobutton, etc. with "-font = $font" (which I defint at the top to "helvetica 9"), I get the funky characters.... (0 Replies)
Discussion started by: scottwevans
0 Replies