Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tk::pod::tree(3pm) [debian man page]

Pod::Tree(3pm)						User Contributed Perl Documentation					    Pod::Tree(3pm)

NAME
Tk::Pod::Tree - list Pod file hierarchy SYNOPSIS
use Tk::Pod::Tree; $parent->PodTree; WIDGET-SPECIFIC OPTIONS Name: -showcommand Specifies a callback for selecting a Pod module (Button-1 binding). Name: -showcommand2 Specifies a callback for selecting a Pod module in a different window (Button-2 binding). Name: -usecache True, if a cache of Pod modules should be created and used. The default is true. DESCRIPTION
The Tk::Pod::Tree widget shows all available Perl Pod documentation in a tree. WIDGET METHODS
$tree->Fill(?-nocache => 1?, ?-forked => 0|1?, ?-fillcb => ...?) Find Pod modules and fill the tree widget. If -nocache is specified, then no cache will be used for loading. A cache of Pod modules is written unless the -usecache configuration option of the widget is set to false. If "-forked" is specified, then searching for Pods is done in the background, if possible. Note that the default is currently unspecified. A callback may be specified with the "-fillcb" option and will be called after the tree is filled. $tree->SeePath($path) Move the anchor/selection and view to the given $path and open subtrees to make the $path visible, if necessary. SEE ALSO
Tk::Tree, Tk::Pod, tkpod, Tk::Pod::FindPods. AUTHOR
Slaven ReziX <slaven@rezic.de> Copyright (c) 2001,2004 Slaven ReziX. 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.14.2 2012-03-05 Pod::Tree(3pm)

Check Out this Related Man Page

Pod(3pm)						User Contributed Perl Documentation						  Pod(3pm)

NAME
Tk::Pod - Pod browser toplevel widget SYNOPSIS
use Tk::Pod Tk::Pod->Dir(@dirs) # add dirs to search path for Pod $pod = $parent->Pod( -file = > $name, # search and display Pod for name -tree = > $bool # display pod file tree ); DESCRIPTION
Simple Pod browser with hypertext capabilities in a "Toplevel" widget OPTIONS
-tree Set tree view by default on or off. Default is false. -exitbutton Add to the menu an exit entry. This is only useful for standalone pod readers. Default is false. This option can only be set on construction time. Other options are propagated to the embedded Tk::Pod::Text widget. BUGS
If you set "-file" while creating the Pod widget, $parent->Pod(-tree => 1, -file => $pod); then the title will not be displayed correctly. This is because the internal setting of "-title" may override the title setting caused by "-file". So it is better to configure "-file" separately: $pod = $parent->Pod(-tree => 1); $pod->configure(-file => $pod); SEE ALSO
Tk::Pod_usage, Tk::Pod::Text, tkpod, perlpod, Gtk2::Ex::PodViewer, Prima::PodView. AUTHOR
Nick Ing-Simmons <nick@ni-s.u-net.com> Current maintainer is Slaven Rezic <slaven@rezic.de>. Copyright (c) 1997-1998 Nick Ing-Simmons. 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.14.2 2012-03-11 Pod(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Binary Tree Creation Using fork()

Hi, I am working on a program and kind of a stuck,nt getting it done. "The program should take one command line arguments: number of hierarchy level. The hierarchy of your program should of that level and each node have two child processes." Can anyone give me the C code using fork() of this... (1 Reply)
Discussion started by: learneros
1 Replies

2. UNIX for Dummies Questions & Answers

Find a tree structure in software modules

I have a list of software funtions in tcl code. Some of these functions call other functions. I want to build a tree structure of all called functions. Right now I list all the functions into a file then read this file so that I can cat each function and grep for EXECUTE (command that calls... (0 Replies)
Discussion started by: MissI
0 Replies

3. Shell Programming and Scripting

Get a Numeric Permissions List for a Directory Tree???

Greetings! Being a curious sort, I'm trying to get a numerical representation of a directory tree's permissions; in similar manner to the commonly-called ls -l command. On that note, here's what cobbled out through the "digital interface" this afternoon:find ./directory/ -name '*' -exec stat... (2 Replies)
Discussion started by: LinQ
2 Replies