ReactOS 0.4.15-dev-7961-gdcf9eb0
startmnu.cpp
Go to the documentation of this file.
1/*
2 * ReactOS Explorer
3 *
4 * Copyright 2006 - 2007 Thomas Weidenmueller <w3seek@reactos.org>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "precomp.h"
22
25 IN HBITMAP hbmBanner OPTIONAL,
26 IN BOOL bSmallIcons,
27 IN BOOL bRefresh)
28{
30 HRESULT hRet;
31
32 hRet = pMenuPopup->QueryInterface(IID_PPV_ARG(IBanneredBar, &pbb));
33 if (SUCCEEDED(hRet))
34 {
35 hRet = pbb->SetBitmap(hbmBanner);
36
37 /* Update the icon size */
38 hRet = pbb->SetIconSize(bSmallIcons ? BMICON_SMALL : BMICON_LARGE);
39 }
40
41 if (bRefresh)
42 {
43 FIXME("Refresh the Start menu with communicating with SHELL32\n");
44 }
45
46 return hRet;
47}
48
50CreateStartMenu(IN ITrayWindow *Tray,
51 OUT IMenuBand **ppMenuBand,
52 IN HBITMAP hbmBanner OPTIONAL,
53 IN BOOL bSmallIcons)
54{
55 HRESULT hr;
62 DWORD dwBandId = 0;
63
66 return NULL;
67
70 return NULL;
71
72 /* Set the menu site so we can handle messages */
73 hr = IUnknown_SetSite(pMp, pSms);
75 return NULL;
76
77 /* Initialize the menu object */
78 hr = pMp->QueryInterface(IID_PPV_ARG(IInitializeObject, &pIo));
79 if (SUCCEEDED(hr))
80 hr = pIo->Initialize();
81 else
82 hr = S_OK;
83
84 /* Everything is initialized now. Let's get the IMenuBand interface. */
86 return NULL;
87
88 hr = pMp->GetClient(&pUnk);
90 return NULL;
91
94 return NULL;
95
96 /* Finally we have the IBandSite interface, there's only one
97 band in it that apparently provides the IMenuBand interface */
98 hr = pBs->EnumBands(0, &dwBandId);
100 return NULL;
101
102 hr = pBs->GetBandObject(dwBandId, IID_PPV_ARG(IMenuBand, &pMb));
104 return NULL;
105
106 UpdateStartMenu(pMp, hbmBanner, bSmallIcons, FALSE);
107
108 *ppMenuBand = pMb.Detach();
109
110 return pMp.Detach();
111}
HRESULT CStartMenuSite_CreateInstance(IN OUT ITrayWindow *Tray, const IID &riid, PVOID *ppv)
HRESULT WINAPI _CStartMenu_CreateInstance(REFIID riid, void **ppv)
Definition: rshell.cpp:32
#define FIXME(fmt,...)
Definition: debug.h:111
T * Detach()
Definition: atlcomcli.h:186
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
#define FAILED_UNEXPECTEDLY(hr)
Definition: precomp.h:121
HRESULT WINAPI IUnknown_SetSite(IUnknown *obj, IUnknown *site)
Definition: ordinal.c:1407
static void *static void *static LPDIRECTPLAY IUnknown * pUnk
Definition: dplayx.c:30
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
HRESULT QueryInterface([in] REFIID riid, [out, iid_is(riid)] void **ppvObject)
nsresult QueryInterface(nsIIDRef riid, void **result)
#define S_OK
Definition: intsafe.h:52
#define SUCCEEDED(hr)
Definition: intsafe.h:50
static HBITMAP
Definition: button.c:44
HRESULT hr
Definition: shlfolder.c:183
@ BMICON_SMALL
Definition: shlobj_undoc.h:90
@ BMICON_LARGE
Definition: shlobj_undoc.h:89
HRESULT UpdateStartMenu(IN OUT IMenuPopup *pMenuPopup, IN HBITMAP hbmBanner OPTIONAL, IN BOOL bSmallIcons, IN BOOL bRefresh)
Definition: startmnu.cpp:24
IMenuPopup * CreateStartMenu(IN ITrayWindow *Tray, OUT IMenuBand **ppMenuBand, IN HBITMAP hbmBanner OPTIONAL, IN BOOL bSmallIcons)
Definition: startmnu.cpp:50
PULONG MinorVersion OPTIONAL
Definition: CrossNt.h:68
#define IN
Definition: typedefs.h:39
#define OUT
Definition: typedefs.h:40
#define IID_PPV_ARG(Itype, ppType)