Author: gadamopoulos
Date: Tue Oct 28 14:31:19 2014
New Revision: 65071
URL: http://svn.reactos.org/svn/reactos?rev=65071&view=rev
Log:
[RSHELL]
- Actually give focus to the start menu when CMenuDeskBar::Popup is called
- Fixes opening and navigating the start menu with the keyboard
Modified:
branches/shell-experiments/base/shell/rshell/CMenuDeskBar.cpp
Modified: branches/shell-experiments/base/shell/rshell/CMenuDeskBar.cpp
URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/base/shell/rs…
==============================================================================
--- branches/shell-experiments/base/shell/rshell/CMenuDeskBar.cpp [iso-8859-1] (original)
+++ branches/shell-experiments/base/shell/rshell/CMenuDeskBar.cpp [iso-8859-1] Tue Oct 28 14:31:19 2014
@@ -381,7 +381,7 @@
y = rcWorkArea.bottom - cy;
}
- this->SetWindowPos(HWND_TOPMOST, x, y, cx, cy, SWP_SHOWWINDOW | SWP_NOACTIVATE);
+ this->SetWindowPos(HWND_TOPMOST, x, y, cx, cy, SWP_SHOWWINDOW);
m_ShowFlags = dwFlags;
m_Shown = true;
Author: gadamopoulos
Date: Tue Oct 28 13:45:43 2014
New Revision: 65069
URL: http://svn.reactos.org/svn/reactos?rev=65069&view=rev
Log:
[WIN32K]
- Send the HSHELL_TASKMAN notification to the shell when the windows key is pressed
- Needed to open and close the start menu with the keyboard
Modified:
branches/shell-experiments/win32ss/user/ntuser/hotkey.c
Modified: branches/shell-experiments/win32ss/user/ntuser/hotkey.c
URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/win32ss/user/…
==============================================================================
--- branches/shell-experiments/win32ss/user/ntuser/hotkey.c [iso-8859-1] (original)
+++ branches/shell-experiments/win32ss/user/ntuser/hotkey.c [iso-8859-1] Tue Oct 28 13:45:43 2014
@@ -219,7 +219,7 @@
{
TRACE("System Hot key Id %d Key %d\n",pHotKey->id, wVk );
UserPostMessage(UserHMGetHandle(pWnd), WM_SYSCOMMAND, SC_TASKLIST, 0);
- //ptiLastInput = pWnd->head.pti;
+ co_IntShellHookNotify(HSHELL_TASKMAN, 0, 0);
bWinHotkeyActive = FALSE;
return FALSE;
}
Author: pschweitzer
Date: Tue Oct 28 10:26:47 2014
New Revision: 65068
URL: http://svn.reactos.org/svn/reactos?rev=65068&view=rev
Log:
[NTFS]
ReleaseAttributeContext() is to be used out of mft.c
I believe that at some point, we're leaking memory...
Modified:
trunk/reactos/drivers/filesystems/ntfs/ntfs.h
Modified: trunk/reactos/drivers/filesystems/ntfs/ntfs.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/ntfs/n…
==============================================================================
--- trunk/reactos/drivers/filesystems/ntfs/ntfs.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/ntfs/ntfs.h [iso-8859-1] Tue Oct 28 10:26:47 2014
@@ -600,6 +600,9 @@
/* mft.c */
+VOID
+ReleaseAttributeContext(PNTFS_ATTR_CONTEXT Context);
+
ULONG
ReadAttribute(PDEVICE_EXTENSION Vcb,
PNTFS_ATTR_CONTEXT Context,