Padre::QuickFix.3pm

Langue: en

Version: 2010-06-02 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Padre::QuickFix - Padre Quick Fix Provider API

DESCRIPTION

Quick Fix (Shortcut: Ctrl+2)

This opens a dialog that lists different actions that relate to fixing the code at the cursor. It will call event_on_quick_fix method passing a Padre::Wx::Editor object on the current Padre document. Please see the following sample implementation:
         sub quick_fix_list {
                 my ($self, $editor) = @_;
 
                 my @items = (
                         {
                                 text     => '123...',
                                 listener => sub {
                                         print "123...\n";
                                 }
                         },
                         {
                                 text     => '456...',
                                 listener => sub {
                                         print "456...\n";
                                 }
                         },
                 );
 
                 return @items;
         }