ieframe: Moved string and menu resources to ieframe.
[wine/testsucceed.git] / dlls / ieframe / taskbarlist.c
blob747a033b14342ed15b4e9981c7055287dcab1788
1 /*
2 * Copyright 2009 Henri Verbeet for CodeWeavers
3 * Copyright 2011 André Hentschel
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "ieframe.h"
23 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
27 struct taskbar_list
29 ITaskbarList4 ITaskbarList4_iface;
30 LONG refcount;
33 static inline struct taskbar_list *impl_from_ITaskbarList4(ITaskbarList4 *iface)
35 return CONTAINING_RECORD(iface, struct taskbar_list, ITaskbarList4_iface);
38 /* IUnknown methods */
40 static HRESULT STDMETHODCALLTYPE taskbar_list_QueryInterface(ITaskbarList4 *iface, REFIID riid, void **object)
42 TRACE("iface %p, riid %s, object %p\n", iface, debugstr_guid(riid), object);
44 if (IsEqualGUID(riid, &IID_ITaskbarList) ||
45 IsEqualGUID(riid, &IID_ITaskbarList2) ||
46 IsEqualGUID(riid, &IID_ITaskbarList3) ||
47 IsEqualGUID(riid, &IID_ITaskbarList4) ||
48 IsEqualGUID(riid, &IID_IUnknown))
50 IUnknown_AddRef(iface);
51 *object = iface;
52 return S_OK;
55 WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid));
57 *object = NULL;
58 return E_NOINTERFACE;
61 static ULONG STDMETHODCALLTYPE taskbar_list_AddRef(ITaskbarList4 *iface)
63 struct taskbar_list *This = impl_from_ITaskbarList4(iface);
64 ULONG refcount = InterlockedIncrement(&This->refcount);
66 TRACE("%p increasing refcount to %u\n", This, refcount);
68 return refcount;
71 static ULONG STDMETHODCALLTYPE taskbar_list_Release(ITaskbarList4 *iface)
73 struct taskbar_list *This = impl_from_ITaskbarList4(iface);
74 ULONG refcount = InterlockedDecrement(&This->refcount);
76 TRACE("%p decreasing refcount to %u\n", This, refcount);
78 if (!refcount)
80 heap_free(This);
81 unlock_module();
84 return refcount;
87 /* ITaskbarList methods */
89 static HRESULT STDMETHODCALLTYPE taskbar_list_HrInit(ITaskbarList4 *iface)
91 TRACE("iface %p\n", iface);
93 return S_OK;
96 static HRESULT STDMETHODCALLTYPE taskbar_list_AddTab(ITaskbarList4 *iface, HWND hwnd)
98 FIXME("iface %p, hwnd %p stub!\n", iface, hwnd);
100 return E_NOTIMPL;
103 static HRESULT STDMETHODCALLTYPE taskbar_list_DeleteTab(ITaskbarList4 *iface, HWND hwnd)
105 FIXME("iface %p, hwnd %p stub!\n", iface, hwnd);
107 return E_NOTIMPL;
110 static HRESULT STDMETHODCALLTYPE taskbar_list_ActivateTab(ITaskbarList4 *iface, HWND hwnd)
112 FIXME("iface %p, hwnd %p stub!\n", iface, hwnd);
114 return E_NOTIMPL;
117 static HRESULT STDMETHODCALLTYPE taskbar_list_SetActiveAlt(ITaskbarList4 *iface, HWND hwnd)
119 FIXME("iface %p, hwnd %p stub!\n", iface, hwnd);
121 return E_NOTIMPL;
124 /* ITaskbarList2 method */
126 static HRESULT STDMETHODCALLTYPE taskbar_list_MarkFullscreenWindow(ITaskbarList4 *iface,
127 HWND hwnd,
128 BOOL fullscreen)
130 FIXME("iface %p, hwnd %p, fullscreen %s stub!\n", iface, hwnd, (fullscreen)?"true":"false");
132 return E_NOTIMPL;
135 /* ITaskbarList3 methods */
137 static HRESULT STDMETHODCALLTYPE taskbar_list_SetProgressValue(ITaskbarList4 *iface,
138 HWND hwnd,
139 ULONGLONG ullCompleted,
140 ULONGLONG ullTotal)
142 FIXME("iface %p, hwnd %p, ullCompleted %s, ullTotal %s stub!\n", iface, hwnd,
143 wine_dbgstr_longlong(ullCompleted), wine_dbgstr_longlong(ullTotal));
145 return S_OK;
148 static HRESULT STDMETHODCALLTYPE taskbar_list_SetProgressState(ITaskbarList4 *iface,
149 HWND hwnd,
150 TBPFLAG tbpFlags)
152 FIXME("iface %p, hwnd %p, flags %x stub!\n", iface, hwnd, tbpFlags);
154 return S_OK;
157 static HRESULT STDMETHODCALLTYPE taskbar_list_RegisterTab(ITaskbarList4 *iface, HWND hwndTab, HWND hwndMDI)
159 FIXME("iface %p, hwndTab %p, hwndMDI %p stub!\n", iface, hwndTab, hwndMDI);
161 return E_NOTIMPL;
164 static HRESULT STDMETHODCALLTYPE taskbar_list_UnregisterTab(ITaskbarList4 *iface, HWND hwndTab)
166 FIXME("iface %p, hwndTab %p stub!\n", iface, hwndTab);
168 return E_NOTIMPL;
171 static HRESULT STDMETHODCALLTYPE taskbar_list_SetTabOrder(ITaskbarList4 *iface,
172 HWND hwndTab,
173 HWND hwndInsertBefore)
175 FIXME("iface %p, hwndTab %p, hwndInsertBefore %p stub!\n", iface, hwndTab, hwndInsertBefore);
177 return E_NOTIMPL;
180 static HRESULT STDMETHODCALLTYPE taskbar_list_SetTabActive(ITaskbarList4 *iface,
181 HWND hwndTab,
182 HWND hwndMDI,
183 DWORD dwReserved)
185 FIXME("iface %p, hwndTab %p, hwndMDI %p, dwReserved %x stub!\n", iface, hwndTab, hwndMDI, dwReserved);
187 return E_NOTIMPL;
190 static HRESULT STDMETHODCALLTYPE taskbar_list_ThumbBarAddButtons(ITaskbarList4 *iface,
191 HWND hwnd,
192 UINT cButtons,
193 LPTHUMBBUTTON pButton)
195 FIXME("iface %p, hwnd %p, cButtons %u, pButton %p stub!\n", iface, hwnd, cButtons, pButton);
197 return E_NOTIMPL;
200 static HRESULT STDMETHODCALLTYPE taskbar_list_ThumbBarUpdateButtons(ITaskbarList4 *iface,
201 HWND hwnd,
202 UINT cButtons,
203 LPTHUMBBUTTON pButton)
205 FIXME("iface %p, hwnd %p, cButtons %u, pButton %p stub!\n", iface, hwnd, cButtons, pButton);
207 return E_NOTIMPL;
210 static HRESULT STDMETHODCALLTYPE taskbar_list_ThumbBarSetImageList(ITaskbarList4 *iface,
211 HWND hwnd,
212 HIMAGELIST himl)
214 FIXME("iface %p, hwnd %p, himl %p stub!\n", iface, hwnd, himl);
216 return E_NOTIMPL;
219 static HRESULT STDMETHODCALLTYPE taskbar_list_SetOverlayIcon(ITaskbarList4 *iface,
220 HWND hwnd,
221 HICON hIcon,
222 LPCWSTR pszDescription)
224 FIXME("iface %p, hwnd %p, hIcon %p, pszDescription %s stub!\n", iface, hwnd, hIcon,
225 debugstr_w(pszDescription));
227 return E_NOTIMPL;
230 static HRESULT STDMETHODCALLTYPE taskbar_list_SetThumbnailTooltip(ITaskbarList4 *iface,
231 HWND hwnd,
232 LPCWSTR pszTip)
234 FIXME("iface %p, hwnd %p, pszTip %s stub!\n", iface, hwnd, debugstr_w(pszTip));
236 return E_NOTIMPL;
239 static HRESULT STDMETHODCALLTYPE taskbar_list_SetThumbnailClip(ITaskbarList4 *iface,
240 HWND hwnd,
241 RECT *prcClip)
243 FIXME("iface %p, hwnd %p, prcClip %s stub!\n", iface, hwnd, wine_dbgstr_rect(prcClip));
245 return E_NOTIMPL;
248 /* ITaskbarList4 method */
250 static HRESULT STDMETHODCALLTYPE taskbar_list_SetTabProperties(ITaskbarList4 *iface,
251 HWND hwndTab,
252 STPFLAG stpFlags)
254 FIXME("iface %p, hwndTab %p, stpFlags %u stub!\n", iface, hwndTab, stpFlags);
256 return E_NOTIMPL;
259 static const struct ITaskbarList4Vtbl taskbar_list_vtbl =
261 /* IUnknown methods */
262 taskbar_list_QueryInterface,
263 taskbar_list_AddRef,
264 taskbar_list_Release,
265 /* ITaskbarList methods */
266 taskbar_list_HrInit,
267 taskbar_list_AddTab,
268 taskbar_list_DeleteTab,
269 taskbar_list_ActivateTab,
270 taskbar_list_SetActiveAlt,
271 /* ITaskbarList2 method */
272 taskbar_list_MarkFullscreenWindow,
273 /* ITaskbarList3 methods */
274 taskbar_list_SetProgressValue,
275 taskbar_list_SetProgressState,
276 taskbar_list_RegisterTab,
277 taskbar_list_UnregisterTab,
278 taskbar_list_SetTabOrder,
279 taskbar_list_SetTabActive,
280 taskbar_list_ThumbBarAddButtons,
281 taskbar_list_ThumbBarUpdateButtons,
282 taskbar_list_ThumbBarSetImageList,
283 taskbar_list_SetOverlayIcon,
284 taskbar_list_SetThumbnailTooltip,
285 taskbar_list_SetThumbnailClip,
286 /* ITaskbarList4 method */
287 taskbar_list_SetTabProperties,
290 HRESULT WINAPI TaskbarList_Create(IClassFactory *iface, IUnknown *outer, REFIID riid, void **taskbar_list)
292 struct taskbar_list *object;
293 HRESULT hres;
295 TRACE("outer %p, riid %s, taskbar_list %p\n", outer, debugstr_guid(riid), taskbar_list);
297 if (outer)
299 WARN("Aggregation not supported\n");
300 *taskbar_list = NULL;
301 return CLASS_E_NOAGGREGATION;
304 object = heap_alloc_zero(sizeof(*object));
305 if (!object)
307 ERR("Failed to allocate taskbar list object memory\n");
308 *taskbar_list = NULL;
309 return E_OUTOFMEMORY;
312 object->ITaskbarList4_iface.lpVtbl = &taskbar_list_vtbl;
313 object->refcount = 1;
314 lock_module();
316 TRACE("Created ITaskbarList4 %p\n", object);
318 hres = ITaskbarList4_QueryInterface(&object->ITaskbarList4_iface, riid, taskbar_list);
319 ITaskbarList4_Release(&object->ITaskbarList4_iface);
320 return hres;