Changeset 832


Ignore:
Timestamp:
11/09/08 01:17:06 (3 years ago)
Author:
szabgab
Message:

add ... after menu options that give first show a dialog box

Location:
trunk/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Padre.pm

    r821 r832  
    301301 
    302302See also L<Padre::PluginManager> and L<Padre::PluginBuilder>  
     303 
     304=head1 Editing tools 
     305 
     306=head2 Case Changes 
     307 
     308Change the case of the selected text or if there  
     309is no selection all the text in the current file. 
     310 
     311Change all characters to upper or lower case 
     312 
     313Change the first character ot every word to upper/lower 
     314case leaving the rest as they were. 
     315 
     316=head2 Tab and space conversion 
     317 
     318Tab to Space and Space to Tab conversions ask the number of spaces 
     319each tab should substitute. It currently works everywhere. 
     320We probably should add a mode to operate only at the beginning of  
     321the lines or better yet only at the indentation levels. 
     322 
     323Delete All Ending space does just what it sais. 
     324 
     325Delete Leading Space will ask How many leading spaces and act accordingly. 
    303326 
    304327 
  • trunk/lib/Padre/Wx/Menu.pm

    r829 r832  
    221221    $menu->{edit}->Append( -1, gettext("Tab and Space"), $menu->{edit_tab} ); 
    222222    Wx::Event::EVT_MENU( $win, 
    223         $menu->{edit_tab}->Append( -1, gettext("Tab to Space") ), 
     223        $menu->{edit_tab}->Append( -1, gettext("Tab to Space...") ), 
    224224        sub { $_[0]->on_tab_and_space('Tab_to_Space') }, 
    225225    ); 
    226226    Wx::Event::EVT_MENU( $win, 
    227         $menu->{edit_tab}->Append( -1, gettext("Space to Tab") ), 
     227        $menu->{edit_tab}->Append( -1, gettext("Space to Tab...") ), 
    228228        sub { $_[0]->on_tab_and_space('Space_to_Tab') }, 
    229229    ); 
    230230    Wx::Event::EVT_MENU( $win, 
    231         $menu->{edit_tab}->Append( -1, gettext("Delete Ending Space") ), 
     231        $menu->{edit_tab}->Append( -1, gettext("Delete All Ending Space") ), 
    232232        sub { $_[0]->on_delete_ending_space() }, 
    233233    ); 
    234234    Wx::Event::EVT_MENU( $win, 
    235         $menu->{edit_tab}->Append( -1, gettext("Delete Leading Space") ), 
     235        $menu->{edit_tab}->Append( -1, gettext("Delete Leading Space...") ), 
    236236        sub { $_[0]->on_delete_leading_space() }, 
    237237    ); 
Note: See TracChangeset for help on using the changeset viewer.