On Mon, Jul 28, 2008 at 4:59 PM, Octavian Rasnita <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I've seen that the hotkey F3 is not well defined for the "Find again" menu.
>
> I've made a little change, and this way it works. The changed line is:
>
>   EVT_MENU( $self, $edit->Append( -1,           "&Find Again\tF3"  ),
>
> So the hotkey should be separated by a tab and not included between ( and ).
>
> Also, Control+G didn't work for Goto, but after I changed the following
> line, it works:
>
>   EVT_MENU( $self, $edit->Append( -1,           "&Goto\tCtrl-G"       ),

Thanks, those are going to be in the next release (after 0.03_01).


>   Other menus like "New", "Open", "Save" have hotkeys defined and they work
> fine.
> Where can I find the default IDs for all types of standard menu items like
> these?

http://docs.wxwidgets.org/2.8.6/wx_stockitems.html#stockitems

> I think the recommendation is not to use a custom label, but use the default
> ones when it is possible.
> Who knows... maybe if the user uses an OS with a different locale than
> English, those strings might be translated to that language...

This is what I think as well.
Unfortunately not everything I need have stock items.

Gabor

Reply via email to