Padre::Wx::Dialog::Replace.3pm

Langue: en

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

Section: 3 (Bibliothèques de fonctions)

NAME

Padre::Wx::Dialog::Replace - Find and Replace Widget

DESCRIPTION

"Padre::Wx:Main" implements Padre's Find and Replace dialog box.

METHODS

new

   my $find = Padre::Wx::Dialog::Replace->new($main);
 
 

Create and return a "Padre::Wx::Dialog::Replace" search and replace widget.

find

   $self->find
 
 

Grab currently selected text, if any, and place it in find combo box. Bring up the dialog or perform search for string's next occurrence if dialog is already displayed.

TO DO: if selection is more than one line then consider it as the limit of the search and not as the string to be used.

find_button

   $self->find_button
 
 

Executed when Find button is clicked.

Performs search on the term specified in the dialog.

cancel_button

   $self->cancel_button
 
 

Hide dialog when pressed cancel button.

replace_button

   $self->replace_button;
 
 

Executed when the Replace button is clicked.

Replaces one appearance of the Find Text with the Replace Text.

If search window is still open, run "search" on the whole text, again.

replace_all

   $self->replace_all;
 
 

Executed when Replace All button is clicked.

Replace all appearances of given string in the current document.

as_search

Integration with Padre::Search. Generates a search instance for the currently configured information in the Find dialog.

Returns a Padre::Search object, or "undef" if current state of the dialog does not result in a valid search.

Copyright 2008-2010 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.