Skip to content

Commit

Permalink
[NEW_FEATURE] Make Recent File List totally customizable (in progress).
Browse files Browse the repository at this point in the history
- Notepad-plus svn trunk @ 782
  • Loading branch information
donho committed Jun 27, 2011
1 parent 4a4f14a commit f225e5f
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions PowerEditor/src/lastRecentFileList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,29 +44,35 @@ void LastRecentFileList::initMenu(HMENU hMenu, int idBase, int posBase, bool doS

void LastRecentFileList::switchMode()
{
//Remove all menu items
::RemoveMenu(_hMenu, IDM_OPEN_ALL_RECENT_FILE, MF_BYCOMMAND);
::RemoveMenu(_hMenu, IDM_CLEAN_RECENT_FILE_LIST, MF_BYCOMMAND);
for(int i = 0; i < _size; i++)
{
::RemoveMenu(_hMenu, _lrfl.at(i)._id, MF_BYCOMMAND);
}

if (_hParentMenu == NULL) // mode main menu
{
//Remove all menu items
::RemoveMenu(_hMenu, IDM_OPEN_ALL_RECENT_FILE, MF_BYCOMMAND);
::RemoveMenu(_hMenu, IDM_CLEAN_RECENT_FILE_LIST, MF_BYCOMMAND);
for(int i = 0; i < _size; i++)
{
::RemoveMenu(_hMenu, _lrfl.at(i)._id, MF_BYCOMMAND);
}
::RemoveMenu(_hMenu, _posBase, MF_BYPOSITION);
::RemoveMenu(_hMenu, _posBase, MF_BYPOSITION);

// switch to sub-menu mode
_hParentMenu = _hMenu;
_hMenu = ::CreatePopupMenu();


::RemoveMenu(_hMenu, _posBase+1, MF_BYPOSITION);
}
else // mode sub-menu
{
::RemoveMenu(_hParentMenu, _posBase, MF_BYPOSITION);
::RemoveMenu(_hParentMenu, _posBase, MF_BYPOSITION);

// switch to main menu mode
::DestroyMenu(_hMenu);
_hMenu = _hParentMenu;
_hParentMenu = NULL;
}
_hasSeparators = false;
};

void LastRecentFileList::updateMenu()
Expand Down

0 comments on commit f225e5f

Please sign in to comment.