Padre::Wx::Action man page on Fedora

Man page or keyword search:  
man Server   31170 pages
apropos Keyword Search (all sections)
Output format
Fedora logo
[printable version]

Padre::Wx::Action(3)  User Contributed Perl Documentation Padre::Wx::Action(3)

NAME
       Padre::Wx::Action - Padre Action Object

SYNOPSIS
	 my $action = Padre::Wx::Action->new(
	     name	=> 'file.save',
	     label	=> 'Save',
	     comment	=> 'Saves the current file to disk',
	     icon	=> '...',
	     shortcut	=> 'Ctrl-S',
	     menu_event => sub { },
	 );

DESCRIPTION
       This is the base class for the Padre Action API.

KEYS
       Each module is constructed using a number of keys. While only the name
       is technically required there are few reasons for actions which lack a
       label or menu_event.

       The keys are listed here in the order they usually appear.

   name
       Each action requires an unique name which is used to reference and call
       it.

       The name usually has the syntax

	 group.action

       Both group and action should only contain \w+ chars.

   label
       Text which is shown in menus and allows the user to see what this
       action does.

       Remember to use Wx::gettext to make this translatable.

   need_editor
       This action should only be enabled/shown if there is a open editor
       window with a (potentially unsaved) document in it.

       The action may be called anyway even if there is no editor (all
       documents closed), but it shouldn't.

       Set to a value of 1 to use it.

   need_file
       This action should only be enabled/shown if the current document has a
       file name (meaning there is a copy on disk which may be older than the
       in-memory document).

       The action may be called anyway even if there is no file name for the
       current document, but it shouldn't.

       Set to a value of 1 to use it.

   need_modified
       This action should only be enabled/shown if the current document has
       either been modified after the last save or was never saved on disk at
       all.

       The action may be called anyway even if the file is up-to-date with the
       in-memory document, but it shouldn't.

       Set to a value of 1 to use it.

   need_selection
       This action should only be enabled/shown if there is some text selected
       within the current document.

       The action may be called anyway even if nothing is selected, but it
       shouldn't.

       Set to a value of 1 to use it.

   need
       Expected to contain a CODE reference which returns either true or
       false.

       If the code returns true, the action should be enabled/shown, otherwise
       it shouldn't, usually because it won't make sense to use this action
       without whatever_is_checked_by_the_code. (For example, UNDO can't be
       used if there was no change which could be undone.)

       The CODE receives a list of objects which should help with the
       decision:

	 config	     Contains the current configuration object
	 editor	     The current editor object
	 document    The current document object
	 main	     The main Wx object

       A typical sub for handling would look like this:

	 need => sub {
	     my $current = shift;
	     my $editor	 = $current->editor or return 0;
	     return $editor->CanUndo;
	 },

       Use this with caution! As this function is called very often there are
       few to no checks and if this isn't a CODE reference, Padre may crash at
       all or get very slow if your CODE is inefficient and requires a lot of
       processing time.

   comment
       A comment (longer than label) which could be used in lists. It should
       contain a short description of what this action does.

       Remember to use Wx::gettext to make this translatable.

   icon
       If there is an icon for this action, specify it here.

   shortcut
       The shortcut may be set by the user. This key sets the default shortcut
       to be used if there is no user-defined value.

   menu_event
       This is expected to contain a CODE reference which does the job of this
       action or an ARRAY reference of CODE references which are executed in
       order.

METHODS
   new
       A default constructor for action objects.

COPYRIGHT & LICENSE
       Copyright 2008-2011 The Padre development team as listed in Padre.pm.

       This program is free software; you can redistribute it and/or modify it
       under the same terms as Perl itself.

       The full text of the license can be found in the LICENSE file included
       with this module.

perl v5.14.1			  2011-06-18		  Padre::Wx::Action(3)
[top]

List of man pages available for Fedora

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net