Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

podviewer(1p) [debian man page]

PODVIEWER(1p)						User Contributed Perl Documentation					     PODVIEWER(1p)

NAME
podviewer - a Gtk2-Perl POD Reading Program SYNOPSIS
podviewer [FILE|MODULE|FUNCTION|POD] DESCRIPTION
"podviewer" provides a simple and attractive way to read Perl's POD documentation. You can use it to read the Perl POD pages, module documentation and information about Perl's builtin functions. KEYBOARD SHORTCUTS
"podviewer" supports a wide number of keyboard shortcuts. They are documented here. o "Ctrl-U" or "Alt-Up" Go up a level. That is, if you're reading the documentation for "Foo::Bar", typing "Ctrl-U" will take you to the "Foo" page. o "Alt-Left" Go back in your browsing history. o "Alt-Right" Go forward in your browsing history. o "Ctrl-H" Go home. If you have the "home" option set in your config (see below), entering "Ctrl-H" will take you there. o "Ctrl-L" This toggles the document index. o "Ctrl-O" This pops up a dialog allowing you to choose a document to read. o "Ctrl-R" or "F5" This reloads the current document. o "Ctrl-Q" This quits the program. o "Ctrl-F" This pops up a dialog for you to enter some search text. o "Ctrl-G" This performs the previous search, but from the most recently found result. You can also repeat the previous search by pressing enter when the cursor is in the search box. o "F1" Loads this document. CONFIGURATION OPTIONS
"podviewer" stores its configuration settings in a resource file, located at "$HOME/.podviewrc". This file contains simple "name=value" pairs for various things: o "icon-size" If you want to change the size of the icons on the toolbar, change this value. The values are standard Gtk+ stock values. o "home" This is the name of the document you want to be your home page. This page is loaded when you start the program without arguments, hit the Home button, or type "Ctrl-H". SEE ALSO
o Gtk2 or <http://gtk2-perl.sf.net/> o <http://developer.gnome.org/doc/API/2.0/gtk/GtkTextView.html> o Gtk2::Ex::PodViewer::Parser AUTHORS
Gavin Brown, Torsten Schoenfeld and Scott Arrington. COPYRIGHT
(c) 2003-2005 Gavin Brown (gavin.brown@uk.com). All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2005-10-04 PODVIEWER(1p)

Check Out this Related Man Page

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

NAME
Prima::KeySelector - key combination widget and routines DESCRIPTION
The module provides a standard widget for selecting a user-defined key combination. The widget class allows import, export, and modification of key combinations. The module provides a set of routines, useful for conversion of a key combination between representations. SYNOPSIS
my $ks = Prima::KeySelector-> create( ); $ks-> key( km::Alt | ord('X')); print Prima::KeySelector::describe( $ks-> key ); API
Properties key INTEGER Selects a key combination in integer format. The format is described in "Hot key" in Prima::Menu, and is a combination of "km::XXX" key modifiers and either a "kb::XXX" virtual key, or a character code value. The property allows almost, but not all possible combinations of key constants. Only "km::Ctrl", "km::Alt", and "km::Shift" modifiers are allowed. Methods All methods here can ( and must ) be called without the object syntax; - the first parameter must not be neither package nor widget. describe KEY Accepts KEY in integer format, and returns string description of the key combination in human readable format. Useful for supplying an accelerator text to a menu. print describe( km::Shift|km::Ctrl|km::F10); Ctrl+Shift+F10 export KEY Accepts KEY in integer format, and returns string with a perl-evaluable expression, which after evaluation resolves to the original KEY value. Useful for storing a key into text config files, where value must be both human readable and easily passed to a program. print export( km::Shift|km::Ctrl|km::F10); km::Shift|km::Ctrl|km::F10 shortcut KEY Converts KEY from integer format to a string, acceptable by "Prima::AbstractMenu" input methods. print shortcut( km::Ctrl|ord('X')); ^X translate_codes KEY, [ USE_CTRL = 0 ] Converts KEY in integer format to three integers in the format accepted by "KeyDown" in Prima::Widget event: code, key, and modifier. USE_CTRL is only relevant when KEY first byte ( "KEY & 0xFF" ) is between 1 and 26, what means that the key is a combination of an alpha key with the control key. If USE_CTRL is 1, code result is unaltered, and is in range 1 - 26. Otherwise, code result is converted to the character code ( 1 to ord('A'), 2 to ord('B') etc ). AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSO
Prima, Prima::Widget, Prima::Menu. perl v5.14.2 2009-02-24 Prima::KeySelector(3)
Man Page