Menu

#19 Find and Replace sub menu

closed-fixed
nobody
GUI (11)
5
2009-04-10
2009-04-10
Tim Gerundt
No

The current "Edit" menu is really long and not user-friendly. This patch moves the Find and Replace items to a own sub menu like in Visual Studio:

Index: heksedit.rc

--- heksedit.rc (Revision 480)
+++ heksedit.rc (Arbeitskopie)
@@ -98,10 +98,13 @@
IDA_INSERTMODETOGGLE
MENUITEM "Read-only mode\tAlt+R", IDM_EDIT_READONLYMODE
MENUITEM SEPARATOR
- MENUITEM "&Find...\tCtrl+F", IDM_FIND
- MENUITEM "Replace...\tCtrl+H", IDM_REPLACE
- MENUITEM "Find previous\tF3", IDM_FINDPREV
- MENUITEM "Find next\tF4", IDM_FINDNEXT
+ POPUP "&Find and Replace"
+ BEGIN
+ MENUITEM "&Find...\tCtrl+F", IDM_FIND
+ MENUITEM "&Replace...\tCtrl+H", IDM_REPLACE
+ MENUITEM "Find &previous\tF3", IDM_FINDPREV
+ MENUITEM "Find &next\tF4", IDM_FINDNEXT
+ END
MENUITEM "&Go To...\tCtrl+G", IDM_GO_TO
MENUITEM SEPARATOR
MENUITEM "Enter decimal &value...\tCtrl+D",

Greetings,
Tim

Discussion

  • Tim Gerundt

    Tim Gerundt - 2009-04-10

    patch file

     
  • Kimmo Varis

    Kimmo Varis - 2009-04-10

    > The current "Edit" menu is really long and not user-friendly.
    Agreed. I've thought about this but don't have good ideas.

    > moves the Find and Replace items to a own sub menu
    I think this is a bit ugly solution, but also looks fine solution until we figure out something better.

    So OK for trunk.

     
  • Tim Gerundt

    Tim Gerundt - 2009-04-10

    Committed to SVN (In Revision 483)...

     
  • Tim Gerundt

    Tim Gerundt - 2009-04-10
    • status: open --> closed-fixed