Author: tfaber
Date: Mon Jul 6 19:38:22 2015
New Revision: 68361
URL:
http://svn.reactos.org/svn/reactos?rev=68361&view=rev
Log:
[RAPPS_NEW][EXPLORER][RSHELL][BROWSEUI]
- Use ATL::CWindow methods where appropriate. By Benedikt Freisen.
CORE-9675 #resolve
Modified:
trunk/reactos/base/applications/rapps_new/gui.cpp
trunk/reactos/base/applications/rapps_new/rosui.h
trunk/reactos/base/shell/explorer/taskswnd.cpp
trunk/reactos/base/shell/explorer/trayntfy.cpp
trunk/reactos/base/shell/explorer/traywnd.cpp
trunk/reactos/base/shell/rshell/CMenuToolbars.cpp
trunk/reactos/dll/win32/browseui/addresseditbox.cpp
trunk/reactos/dll/win32/browseui/internettoolbar.cpp
Modified: trunk/reactos/base/applications/rapps_new/gui.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/rapps_ne…
==============================================================================
--- trunk/reactos/base/applications/rapps_new/gui.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/applications/rapps_new/gui.cpp [iso-8859-1] Mon Jul 6 19:38:22
2015
@@ -949,7 +949,7 @@
WCHAR szWndText[MAX_STR_LEN];
LoadStringW(hInst, IDS_SEARCH_TEXT, szBuf, _countof(szBuf));
- ::GetWindowTextW(m_SearchBar->m_hWnd, szWndText, MAX_STR_LEN);
+ m_SearchBar->GetWindowTextW(szWndText, MAX_STR_LEN);
if (wcscmp(szBuf, szWndText) == 0)
{
SearchEnabled = FALSE;
@@ -960,7 +960,7 @@
case EN_KILLFOCUS:
{
- ::GetWindowTextW(m_SearchBar->m_hWnd, szBuf, MAX_STR_LEN);
+ m_SearchBar->GetWindowTextW(szBuf, MAX_STR_LEN);
if (wcslen(szBuf) < 1)
{
LoadStringW(hInst, IDS_SEARCH_TEXT, szBuf, _countof(szBuf));
@@ -981,7 +981,7 @@
}
LoadStringW(hInst, IDS_SEARCH_TEXT, szBuf, _countof(szBuf));
- ::GetWindowTextW(m_SearchBar->m_hWnd, szWndText, MAX_STR_LEN);
+ m_SearchBar->GetWindowTextW(szWndText, MAX_STR_LEN);
if (wcscmp(szBuf, szWndText) != 0)
{
StringCbCopy(szSearchPattern, sizeof(szSearchPattern),
@@ -1019,7 +1019,7 @@
break;
case ID_EXIT:
- ::PostMessageW(m_hWnd, WM_CLOSE, 0, 0);
+ PostMessageW(WM_CLOSE, 0, 0);
break;
case ID_INSTALL:
@@ -1054,7 +1054,7 @@
break;
case ID_HELP:
- ::MessageBoxW(m_hWnd, L"Help not implemented yet", NULL, MB_OK);
+ MessageBoxW(L"Help not implemented yet", NULL, MB_OK);
break;
case ID_ABOUT:
Modified: trunk/reactos/base/applications/rapps_new/rosui.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/rapps_ne…
==============================================================================
--- trunk/reactos/base/applications/rapps_new/rosui.h [iso-8859-1] (original)
+++ trunk/reactos/base/applications/rapps_new/rosui.h [iso-8859-1] Mon Jul 6 19:38:22
2015
@@ -668,7 +668,7 @@
if (hDwp)
{
- return ::DeferWindowPos(hDwp, m_hWnd, NULL,
+ return DeferWindowPos(hDwp, NULL,
splitter.left, splitter.top,
splitter.right - splitter.left,
splitter.bottom - splitter.top,
Modified: trunk/reactos/base/shell/explorer/taskswnd.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/tasksw…
==============================================================================
--- trunk/reactos/base/shell/explorer/taskswnd.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/taskswnd.cpp [iso-8859-1] Mon Jul 6 19:38:22 2015
@@ -1790,7 +1790,7 @@
RECT* prcMinRect = (RECT*) lParam;
RECT rcItem, rcToolbar;
m_TaskBar.GetItemRect(TaskItem->Index, &rcItem);
- ::GetWindowRect(m_TaskBar.m_hWnd, &rcToolbar);
+ m_TaskBar.GetWindowRect(&rcToolbar);
OffsetRect(&rcItem, rcToolbar.left, rcToolbar.top);
Modified: trunk/reactos/base/shell/explorer/trayntfy.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/traynt…
==============================================================================
--- trunk/reactos/base/shell/explorer/trayntfy.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/trayntfy.cpp [iso-8859-1] Mon Jul 6 19:38:22 2015
@@ -345,7 +345,7 @@
POINT ptItem = { rcItem.left, rcItem.top };
SIZE szItem = { rcItem.right - rcItem.left, rcItem.bottom - rcItem.top };
- ::ClientToScreen(m_hWnd, &ptItem);
+ ClientToScreen(&ptItem);
ptItem.x += szItem.cx / 2;
ptItem.y -= szTip.cy;
@@ -732,7 +732,7 @@
INT c, i;
BOOL bRet = TRUE;
- hDC = ::GetDC(m_hWnd);
+ hDC = GetDC();
if (hDC != NULL)
{
if (hFont)
@@ -752,7 +752,7 @@
if (hFont)
SelectObject(hDC, hPrevFont);
- ::ReleaseDC(m_hWnd, hDC);
+ ReleaseDC(hDC);
if (bRet)
{
@@ -895,7 +895,7 @@
CurrentSize = szWnd;
}
- if (::IsWindowVisible(m_hWnd))
+ if (IsWindowVisible())
{
InvalidateRect(NULL, TRUE);
@@ -906,7 +906,7 @@
NMHDR nmh;
nmh.hwndFrom = m_hWnd;
- nmh.idFrom = ::GetWindowLongPtr(m_hWnd, GWLP_ID);
+ nmh.idFrom = GetWindowLongPtr(GWLP_ID);
nmh.code = NTNWM_REALIGN;
SendMessage(hWndNotify,
@@ -1497,10 +1497,10 @@
BOOL GetClockRect(OUT PRECT rcClock)
{
- if (!::IsWindowVisible(m_clock->m_hWnd))
+ if (!m_clock->IsWindowVisible())
return FALSE;
- return ::GetWindowRect(m_clock->m_hWnd, rcClock);
+ return m_clock->GetWindowRect(rcClock);
}
LRESULT OnGetMinimumSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&
bHandled)
Modified: trunk/reactos/base/shell/explorer/traywnd.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/traywn…
==============================================================================
--- trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] Mon Jul 6 19:38:22 2015
@@ -882,7 +882,7 @@
m_TrayRects[m_Position] = rcTray;
goto ChangePos;
}
- else if (::GetWindowRect(m_hWnd, &rcTray))
+ else if (GetWindowRect(&rcTray))
{
if (InSizeMove)
{
@@ -952,7 +952,7 @@
RECT rcClip, rcWindow;
HRGN hClipRgn;
- if (::GetWindowRect(m_hWnd, &rcWindow))
+ if (GetWindowRect(&rcWindow))
{
/* Disable clipping on systems with only one monitor */
if (GetSystemMetrics(SM_CMONITORS) <= 1)
@@ -980,7 +980,7 @@
/* Set the clipping region or make sure the window isn't clipped
by disabling it explicitly. */
- ::SetWindowRgn(m_hWnd, hClipRgn, TRUE);
+ SetWindowRgn(hClipRgn, TRUE);
}
}
@@ -1215,7 +1215,7 @@
{
if (ptmp == NULL &&
GetClientRect(&tmp.rcExclude) &&
- ::MapWindowPoints(m_hWnd,
+ MapWindowPoints(
NULL,
(LPPOINT) &tmp.rcExclude,
2) != 0)
@@ -1344,14 +1344,13 @@
if (m_StartButton.m_hWnd != NULL)
{
/* Resize and reposition the button */
- dwp = ::DeferWindowPos(dwp,
- m_StartButton.m_hWnd,
- NULL,
- 0,
- 0,
- StartSize.cx,
- StartSize.cy,
- SWP_NOZORDER | SWP_NOACTIVATE);
+ dwp = m_StartButton.DeferWindowPos(dwp,
+ NULL,
+ 0,
+ 0,
+ StartSize.cx,
+ StartSize.cy,
+ SWP_NOZORDER | SWP_NOACTIVATE);
if (dwp == NULL)
{
ERR("DeferWindowPos for start button failed. lastErr=%d\n",
GetLastError());
@@ -1586,7 +1585,7 @@
If it was somehow destroyed just create a new tray window. */
if (m_hWnd != NULL && IsWindow())
{
- if (!::IsWindowVisible(m_hWnd))
+ if (!IsWindowVisible())
{
CheckTrayWndPosition();
@@ -1656,7 +1655,7 @@
HWND hwnd;
RECT posRect;
- ::GetWindowRect(m_StartButton.m_hWnd, &posRect);
+ m_StartButton.GetWindowRect(&posRect);
hwnd = CreateWindowEx(0,
WC_STATIC,
NULL,
@@ -1886,10 +1885,10 @@
RECT rect;
int backoundPart;
- ::GetWindowRect(m_hWnd, &rect);
+ GetWindowRect(&rect);
OffsetRect(&rect, -rect.left, -rect.top);
- hdc = ::GetDCEx(m_hWnd, hRgn, DCX_WINDOW | DCX_INTERSECTRGN | DCX_PARENTCLIP);
+ hdc = GetDCEx(hRgn, DCX_WINDOW | DCX_INTERSECTRGN | DCX_PARENTCLIP);
switch (m_Position)
{
@@ -1917,7 +1916,7 @@
}
DrawThemeBackground(m_Theme, hdc, backoundPart, 0, &rect, 0);
- ::ReleaseDC(m_hWnd, hdc);
+ ReleaseDC(hdc);
return 0;
}
@@ -1926,7 +1925,7 @@
HWND hwnd;
RECT posRect;
- ::GetWindowRect(m_StartButton.m_hWnd, &posRect);
+ m_StartButton.GetWindowRect(&posRect);
hwnd = CreateWindowEx(0,
WC_STATIC,
@@ -1982,7 +1981,7 @@
RECTL rcExclude;
DWORD dwFlags = 0;
- if (::GetWindowRect(m_StartButton.m_hWnd, (RECT*) &rcExclude))
+ if (m_StartButton.GetWindowRect((RECT*) &rcExclude))
{
switch (m_Position)
{
@@ -2023,7 +2022,7 @@
UINT state = m_AutoHideState;
GetCursorPos(&pt);
- ::GetWindowRect(m_hWnd, &rcCurrent);
+ GetWindowRect(&rcCurrent);
over = PtInRect(&rcCurrent, pt);
if (m_StartButton.SendMessage( BM_GETSTATE, 0, 0) != BST_UNCHECKED)
@@ -2243,7 +2242,7 @@
SetLastError(ERROR_SUCCESS);
if (GetClientRect(&rcClient) &&
- (::MapWindowPoints(m_hWnd, NULL, (LPPOINT) &rcClient, 2) != 0 ||
GetLastError() == ERROR_SUCCESS))
+ (MapWindowPoints(NULL, (LPPOINT) &rcClient, 2) != 0 || GetLastError() ==
ERROR_SUCCESS))
{
pt.x = (SHORT) LOWORD(lParam);
pt.y = (SHORT) HIWORD(lParam);
@@ -2386,7 +2385,7 @@
if (!Locked)
{
/* Apply clipping */
- ::PostMessage(m_hWnd, WM_SIZE, SIZE_RESTORED, 0);
+ PostMessage(WM_SIZE, SIZE_RESTORED, 0);
}
return TRUE;
}
@@ -2415,7 +2414,7 @@
/* temporarily enable the system menu */
SetWindowStyle(m_hWnd, WS_SYSMENU, WS_SYSMENU);
- hSysMenu = ::GetSystemMenu(m_hWnd, FALSE);
+ hSysMenu = GetSystemMenu(FALSE);
if (hSysMenu != NULL)
{
/* Disable all items that are not relevant */
@@ -2505,7 +2504,7 @@
/* Convert the coordinates to client-coordinates */
::MapWindowPoints(NULL, m_hWnd, &ptClient, 1);
- hWndAtPt = ::ChildWindowFromPoint(m_hWnd, ptClient);
+ hWndAtPt = ChildWindowFromPoint(ptClient);
if (hWndAtPt != NULL &&
(hWndAtPt == m_Rebar || ::IsChild(m_Rebar, hWndAtPt)))
{
@@ -2561,7 +2560,7 @@
{
case NTNWM_REALIGN:
/* Cause all controls to be aligned */
- ::PostMessage(m_hWnd, WM_SIZE, SIZE_RESTORED, 0);
+ PostMessage(WM_SIZE, SIZE_RESTORED, 0);
break;
}
}
Modified: trunk/reactos/base/shell/rshell/CMenuToolbars.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/rshell/CMenuToo…
==============================================================================
--- trunk/reactos/base/shell/rshell/CMenuToolbars.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/rshell/CMenuToolbars.cpp [iso-8859-1] Mon Jul 6 19:38:22
2015
@@ -700,8 +700,8 @@
POINT a = { rc.left, rc.top };
POINT b = { rc.right, rc.bottom };
- ::ClientToScreen(m_hWnd, &a);
- ::ClientToScreen(m_hWnd, &b);
+ ClientToScreen(&a);
+ ClientToScreen(&b);
POINTL pt = { a.x, b.y };
RECTL rcl = { a.x, a.y, b.x, b.y };
@@ -741,8 +741,8 @@
POINT a = { rc.left, rc.top };
POINT b = { rc.right, rc.bottom };
- ::ClientToScreen(m_hWnd, &a);
- ::ClientToScreen(m_hWnd, &b);
+ ClientToScreen(&a);
+ ClientToScreen(&b);
POINT pt = { a.x, b.y };
RECT rcl = { a.x, a.y, b.x, b.y };
@@ -937,7 +937,7 @@
HWND tlw;
m_menuBand->_GetTopLevelWindow(&tlw);
SendMessageW(tlw, WM_CANCELMODE, 0, 0);
- ::PostMessageW(m_hWnd, WM_USER_CHANGETRACKEDITEM, index,
MAKELPARAM(m_isTrackingPopup, FALSE));
+ PostMessageW(WM_USER_CHANGETRACKEDITEM, index,
MAKELPARAM(m_isTrackingPopup, FALSE));
}
else
m_menuBand->_ChangeHotItem(this, btn.idCommand, 0);
Modified: trunk/reactos/dll/win32/browseui/addresseditbox.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/browseui/address…
==============================================================================
--- trunk/reactos/dll/win32/browseui/addresseditbox.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/browseui/addresseditbox.cpp [iso-8859-1] Mon Jul 6 19:38:22
2015
@@ -108,10 +108,10 @@
return hr;
LPWSTR input;
- int inputLength = ::GetWindowTextLength(fCombobox.m_hWnd) + 2;
+ int inputLength = fCombobox.GetWindowTextLength() + 2;
input = new WCHAR[inputLength];
- ::GetWindowText(fCombobox.m_hWnd, input, inputLength);
+ fCombobox.GetWindowText(input, inputLength);
LPWSTR address;
int addressLength = ExpandEnvironmentStrings(input, NULL, 0);
Modified: trunk/reactos/dll/win32/browseui/internettoolbar.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/browseui/interne…
==============================================================================
--- trunk/reactos/dll/win32/browseui/internettoolbar.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/browseui/internettoolbar.cpp [iso-8859-1] Mon Jul 6 19:38:22
2015
@@ -1841,7 +1841,7 @@
fStartPosition.y = GET_Y_LPARAM(msgp);
RECT rc;
- ::GetWindowRect(m_hWnd, &rc);
+ GetWindowRect(&rc);
fStartHeight = rc.bottom - rc.top;