2010-08-20 07:45:56 +02:00
|
|
|
/*
|
|
|
|
* ExplorerBrowser Control implementation.
|
|
|
|
*
|
|
|
|
* Copyright 2010 David Hedberg
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
#include "wine/list.h"
|
2010-08-20 07:45:56 +02:00
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "debughlp.h"
|
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
#include "shell32_main.h"
|
2010-08-24 10:56:21 +02:00
|
|
|
#include "pidl.h"
|
2010-08-20 07:45:59 +02:00
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
|
|
|
|
2010-08-26 13:58:20 +02:00
|
|
|
#define SPLITTER_WIDTH 2
|
|
|
|
#define NP_MIN_WIDTH 60
|
|
|
|
#define SV_MIN_WIDTH 150
|
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
typedef struct _event_client {
|
|
|
|
struct list entry;
|
|
|
|
IExplorerBrowserEvents *pebe;
|
|
|
|
DWORD cookie;
|
|
|
|
} event_client;
|
|
|
|
|
2010-08-25 15:24:33 +02:00
|
|
|
typedef struct _travellog_entry {
|
|
|
|
struct list entry;
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
} travellog_entry;
|
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
typedef struct _ExplorerBrowserImpl {
|
2010-12-22 02:20:47 +01:00
|
|
|
IExplorerBrowser IExplorerBrowser_iface;
|
|
|
|
IShellBrowser IShellBrowser_iface;
|
|
|
|
ICommDlgBrowser3 ICommDlgBrowser3_iface;
|
|
|
|
IObjectWithSite IObjectWithSite_iface;
|
|
|
|
INameSpaceTreeControlEvents INameSpaceTreeControlEvents_iface;
|
2010-12-23 14:52:30 +01:00
|
|
|
IInputObject IInputObject_iface;
|
2010-08-20 07:45:56 +02:00
|
|
|
LONG ref;
|
|
|
|
BOOL destroyed;
|
2010-08-20 07:45:59 +02:00
|
|
|
|
|
|
|
HWND hwnd_main;
|
2010-08-23 12:55:18 +02:00
|
|
|
HWND hwnd_sv;
|
2010-08-23 12:55:17 +02:00
|
|
|
|
2010-08-26 13:58:20 +02:00
|
|
|
RECT splitter_rc;
|
|
|
|
struct {
|
|
|
|
INameSpaceTreeControl2 *pnstc2;
|
|
|
|
HWND hwnd_splitter, hwnd_nstc;
|
|
|
|
DWORD nstc_cookie;
|
|
|
|
UINT width;
|
|
|
|
BOOL show;
|
|
|
|
RECT rc;
|
|
|
|
} navpane;
|
|
|
|
|
2010-08-23 12:55:17 +02:00
|
|
|
EXPLORER_BROWSER_OPTIONS eb_options;
|
2010-08-23 12:55:19 +02:00
|
|
|
FOLDERSETTINGS fs;
|
2010-08-23 12:55:18 +02:00
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
struct list event_clients;
|
|
|
|
DWORD events_next_cookie;
|
2010-08-25 15:24:33 +02:00
|
|
|
struct list travellog;
|
|
|
|
travellog_entry *travellog_cursor;
|
|
|
|
int travellog_count;
|
2010-08-24 10:56:19 +02:00
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
IShellView *psv;
|
|
|
|
RECT sv_rc;
|
2010-08-24 10:56:21 +02:00
|
|
|
LPITEMIDLIST current_pidl;
|
2010-08-25 15:24:36 +02:00
|
|
|
|
|
|
|
IUnknown *punk_site;
|
2010-08-26 13:58:16 +02:00
|
|
|
ICommDlgBrowser *pcdb_site;
|
|
|
|
ICommDlgBrowser2 *pcdb2_site;
|
|
|
|
ICommDlgBrowser3 *pcdb3_site;
|
2010-08-26 13:58:17 +02:00
|
|
|
IExplorerPaneVisibility *pepv_site;
|
2010-08-20 07:45:56 +02:00
|
|
|
} ExplorerBrowserImpl;
|
|
|
|
|
2010-08-26 13:58:20 +02:00
|
|
|
static void initialize_navpane(ExplorerBrowserImpl *This, HWND hwnd_parent, RECT *rc);
|
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* Event functions.
|
|
|
|
*/
|
|
|
|
static void events_unadvise_all(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
event_client *client, *curs;
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(client, curs, &This->event_clients, event_client, entry)
|
|
|
|
{
|
|
|
|
TRACE("Removing %p\n", client);
|
|
|
|
list_remove(&client->entry);
|
|
|
|
IExplorerBrowserEvents_Release(client->pebe);
|
|
|
|
HeapFree(GetProcessHeap(), 0, client);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
static HRESULT events_NavigationPending(ExplorerBrowserImpl *This, PCIDLIST_ABSOLUTE pidl)
|
|
|
|
{
|
|
|
|
event_client *cursor;
|
|
|
|
HRESULT hres = S_OK;
|
|
|
|
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY(cursor, &This->event_clients, event_client, entry)
|
|
|
|
{
|
|
|
|
TRACE("Notifying %p\n", cursor);
|
|
|
|
hres = IExplorerBrowserEvents_OnNavigationPending(cursor->pebe, pidl);
|
|
|
|
|
|
|
|
/* If this failed for any reason, the browsing is supposed to be aborted. */
|
|
|
|
if(FAILED(hres))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void events_NavigationComplete(ExplorerBrowserImpl *This, PCIDLIST_ABSOLUTE pidl)
|
|
|
|
{
|
|
|
|
event_client *cursor;
|
|
|
|
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY(cursor, &This->event_clients, event_client, entry)
|
|
|
|
{
|
|
|
|
TRACE("Notifying %p\n", cursor);
|
|
|
|
IExplorerBrowserEvents_OnNavigationComplete(cursor->pebe, pidl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void events_NavigationFailed(ExplorerBrowserImpl *This, PCIDLIST_ABSOLUTE pidl)
|
|
|
|
{
|
|
|
|
event_client *cursor;
|
|
|
|
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY(cursor, &This->event_clients, event_client, entry)
|
|
|
|
{
|
|
|
|
TRACE("Notifying %p\n", cursor);
|
|
|
|
IExplorerBrowserEvents_OnNavigationFailed(cursor->pebe, pidl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void events_ViewCreated(ExplorerBrowserImpl *This, IShellView *psv)
|
|
|
|
{
|
|
|
|
event_client *cursor;
|
|
|
|
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY(cursor, &This->event_clients, event_client, entry)
|
|
|
|
{
|
|
|
|
TRACE("Notifying %p\n", cursor);
|
|
|
|
IExplorerBrowserEvents_OnViewCreated(cursor->pebe, psv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-25 15:24:33 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* Travellog functions.
|
|
|
|
*/
|
|
|
|
static void travellog_remove_entry(ExplorerBrowserImpl *This, travellog_entry *entry)
|
|
|
|
{
|
|
|
|
TRACE("Removing %p\n", entry);
|
|
|
|
|
|
|
|
list_remove(&entry->entry);
|
2011-01-16 10:57:00 +01:00
|
|
|
ILFree(entry->pidl);
|
2010-08-25 15:24:33 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, entry);
|
|
|
|
This->travellog_count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void travellog_remove_all_entries(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
travellog_entry *cursor, *cursor2;
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, &This->travellog, travellog_entry, entry)
|
|
|
|
travellog_remove_entry(This, cursor);
|
|
|
|
|
|
|
|
This->travellog_cursor = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void travellog_add_entry(ExplorerBrowserImpl *This, LPITEMIDLIST pidl)
|
|
|
|
{
|
|
|
|
travellog_entry *new, *cursor, *cursor2;
|
|
|
|
TRACE("%p (old count %d)\n", pidl, This->travellog_count);
|
|
|
|
|
|
|
|
/* Replace the old tail, if any, with the new entry */
|
|
|
|
if(This->travellog_cursor)
|
|
|
|
{
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE_REV(cursor, cursor2, &This->travellog, travellog_entry, entry)
|
|
|
|
{
|
|
|
|
if(cursor == This->travellog_cursor)
|
|
|
|
break;
|
|
|
|
travellog_remove_entry(This, cursor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create and add the new entry */
|
|
|
|
new = HeapAlloc(GetProcessHeap(), 0, sizeof(travellog_entry));
|
|
|
|
new->pidl = ILClone(pidl);
|
|
|
|
list_add_tail(&This->travellog, &new->entry);
|
|
|
|
This->travellog_cursor = new;
|
|
|
|
This->travellog_count++;
|
|
|
|
|
|
|
|
/* Remove the first few entries if the size limit is reached. */
|
|
|
|
if(This->travellog_count > 200)
|
|
|
|
{
|
|
|
|
UINT i = 0;
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, &This->travellog, travellog_entry, entry)
|
|
|
|
{
|
|
|
|
if(i++ > 10)
|
|
|
|
break;
|
|
|
|
travellog_remove_entry(This, cursor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static LPCITEMIDLIST travellog_go_back(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
travellog_entry *prev;
|
|
|
|
TRACE("%p, %p\n", This, This->travellog_cursor);
|
|
|
|
|
|
|
|
if(!This->travellog_cursor)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
prev = LIST_ENTRY(list_prev(&This->travellog, &This->travellog_cursor->entry),
|
|
|
|
travellog_entry, entry);
|
|
|
|
if(!prev)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
This->travellog_cursor = prev;
|
|
|
|
return prev->pidl;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LPCITEMIDLIST travellog_go_forward(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
travellog_entry *next;
|
|
|
|
TRACE("%p, %p\n", This, This->travellog_cursor);
|
|
|
|
|
|
|
|
if(!This->travellog_cursor)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
next = LIST_ENTRY(list_next(&This->travellog, &This->travellog_cursor->entry),
|
|
|
|
travellog_entry, entry);
|
|
|
|
if(!next)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
This->travellog_cursor = next;
|
|
|
|
return next->pidl;
|
|
|
|
}
|
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* Helper functions
|
|
|
|
*/
|
|
|
|
static void update_layout(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
RECT rc;
|
2010-08-26 13:58:20 +02:00
|
|
|
INT navpane_width_actual;
|
|
|
|
INT shellview_width_actual;
|
|
|
|
TRACE("%p (navpane: %d, EBO_SHOWFRAMES: %d)\n",
|
|
|
|
This, This->navpane.show, This->eb_options & EBO_SHOWFRAMES);
|
2010-08-23 12:55:18 +02:00
|
|
|
|
|
|
|
GetClientRect(This->hwnd_main, &rc);
|
2010-08-26 13:58:20 +02:00
|
|
|
|
|
|
|
if((This->eb_options & EBO_SHOWFRAMES) && This->navpane.show)
|
|
|
|
navpane_width_actual = This->navpane.width;
|
|
|
|
else
|
|
|
|
navpane_width_actual = 0;
|
|
|
|
|
|
|
|
shellview_width_actual = rc.right - navpane_width_actual;
|
|
|
|
if(shellview_width_actual < SV_MIN_WIDTH && navpane_width_actual)
|
|
|
|
{
|
|
|
|
INT missing_width = SV_MIN_WIDTH - shellview_width_actual;
|
|
|
|
if(missing_width < (navpane_width_actual - NP_MIN_WIDTH))
|
|
|
|
{
|
|
|
|
/* Shrink the navpane */
|
|
|
|
navpane_width_actual -= missing_width;
|
|
|
|
shellview_width_actual += missing_width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Hide the navpane */
|
|
|
|
shellview_width_actual += navpane_width_actual;
|
|
|
|
navpane_width_actual = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************
|
|
|
|
* Calculate rectangles for the panes. All rectangles contain
|
|
|
|
* the position of the panes relative to hwnd_main.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(navpane_width_actual)
|
|
|
|
{
|
|
|
|
This->navpane.rc.left = This->navpane.rc.top = 0;
|
|
|
|
This->navpane.rc.right = navpane_width_actual;
|
|
|
|
This->navpane.rc.bottom = rc.bottom;
|
|
|
|
|
|
|
|
if(!This->navpane.hwnd_splitter)
|
|
|
|
initialize_navpane(This, This->hwnd_main, &This->navpane.rc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ZeroMemory(&This->navpane.rc, sizeof(RECT));
|
|
|
|
|
|
|
|
This->sv_rc.left = navpane_width_actual;
|
|
|
|
This->sv_rc.top = 0;
|
|
|
|
This->sv_rc.right = This->sv_rc.left + shellview_width_actual;
|
|
|
|
This->sv_rc.bottom = rc.bottom;
|
2010-08-23 12:55:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void size_panes(ExplorerBrowserImpl *This)
|
|
|
|
{
|
2010-08-26 13:58:20 +02:00
|
|
|
MoveWindow(This->navpane.hwnd_splitter,
|
|
|
|
This->navpane.rc.right - SPLITTER_WIDTH, This->navpane.rc.top,
|
|
|
|
SPLITTER_WIDTH, This->navpane.rc.bottom - This->navpane.rc.top,
|
|
|
|
TRUE);
|
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
MoveWindow(This->hwnd_sv,
|
|
|
|
This->sv_rc.left, This->sv_rc.top,
|
|
|
|
This->sv_rc.right - This->sv_rc.left, This->sv_rc.bottom - This->sv_rc.top,
|
|
|
|
TRUE);
|
|
|
|
}
|
|
|
|
|
2010-08-23 12:55:19 +02:00
|
|
|
static HRESULT change_viewmode(ExplorerBrowserImpl *This, UINT viewmode)
|
|
|
|
{
|
|
|
|
IFolderView *pfv;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if(!This->psv)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
hr = IShellView_QueryInterface(This->psv, &IID_IFolderView, (void*)&pfv);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IFolderView_SetCurrentViewMode(pfv, This->fs.ViewMode);
|
|
|
|
IFolderView_Release(pfv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
static HRESULT create_new_shellview(ExplorerBrowserImpl *This, IShellItem *psi)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
IShellBrowser *psb = &This->IShellBrowser_iface;
|
2010-08-24 10:56:21 +02:00
|
|
|
IShellFolder *psf;
|
|
|
|
IShellView *psv;
|
|
|
|
HWND hwnd_new;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("%p, %p\n", This, psi);
|
|
|
|
|
|
|
|
hr = IShellItem_BindToHandler(psi, NULL, &BHID_SFObject, &IID_IShellFolder, (void**)&psf);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IShellFolder_CreateViewObject(psf, This->hwnd_main, &IID_IShellView, (void**)&psv);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
if(This->hwnd_sv)
|
|
|
|
{
|
|
|
|
IShellView_DestroyViewWindow(This->psv);
|
|
|
|
This->hwnd_sv = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IShellView_CreateViewWindow(psv, This->psv, &This->fs, psb, &This->sv_rc, &hwnd_new);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
/* Replace the old shellview */
|
|
|
|
if(This->psv) IShellView_Release(This->psv);
|
|
|
|
|
|
|
|
This->psv = psv;
|
|
|
|
This->hwnd_sv = hwnd_new;
|
|
|
|
events_ViewCreated(This, psv);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERR("CreateViewWindow failed (0x%x)\n", hr);
|
|
|
|
IShellView_Release(psv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ERR("CreateViewObject failed (0x%x)\n", hr);
|
|
|
|
|
|
|
|
IShellFolder_Release(psf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ERR("SI::BindToHandler failed (0x%x)\n", hr);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-08-25 15:24:36 +02:00
|
|
|
static void get_interfaces_from_site(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
IServiceProvider *psp;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
/* Calling this with This->punk_site set to NULL should properly
|
|
|
|
* release any previously fetched interfaces.
|
|
|
|
*/
|
|
|
|
|
2010-08-26 13:58:16 +02:00
|
|
|
if(This->pcdb_site)
|
2010-08-25 15:24:36 +02:00
|
|
|
{
|
2012-07-29 10:51:05 +02:00
|
|
|
ICommDlgBrowser_Release(This->pcdb_site);
|
|
|
|
if(This->pcdb2_site) ICommDlgBrowser2_Release(This->pcdb2_site);
|
|
|
|
if(This->pcdb3_site) ICommDlgBrowser3_Release(This->pcdb3_site);
|
2010-08-26 13:58:16 +02:00
|
|
|
|
|
|
|
This->pcdb_site = NULL;
|
|
|
|
This->pcdb2_site = NULL;
|
|
|
|
This->pcdb3_site = NULL;
|
|
|
|
}
|
|
|
|
|
2010-08-26 13:58:17 +02:00
|
|
|
if(This->pepv_site)
|
|
|
|
{
|
|
|
|
IExplorerPaneVisibility_Release(This->pepv_site);
|
|
|
|
This->pepv_site = NULL;
|
|
|
|
}
|
|
|
|
|
2010-08-26 13:58:16 +02:00
|
|
|
if(!This->punk_site)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IUnknown_QueryInterface(This->punk_site, &IID_IServiceProvider, (void**)&psp);
|
|
|
|
if(FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("Failed to get IServiceProvider from site.\n");
|
|
|
|
return;
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
2010-08-26 13:58:16 +02:00
|
|
|
|
|
|
|
/* ICommDlgBrowser */
|
|
|
|
IServiceProvider_QueryService(psp, &SID_SExplorerBrowserFrame, &IID_ICommDlgBrowser,
|
|
|
|
(void**)&This->pcdb_site);
|
|
|
|
IServiceProvider_QueryService(psp, &SID_SExplorerBrowserFrame, &IID_ICommDlgBrowser2,
|
|
|
|
(void**)&This->pcdb2_site);
|
|
|
|
IServiceProvider_QueryService(psp, &SID_SExplorerBrowserFrame, &IID_ICommDlgBrowser3,
|
|
|
|
(void**)&This->pcdb3_site);
|
|
|
|
|
2010-08-26 13:58:17 +02:00
|
|
|
/* IExplorerPaneVisibility */
|
|
|
|
IServiceProvider_QueryService(psp, &SID_ExplorerPaneVisibility, &IID_IExplorerPaneVisibility,
|
|
|
|
(void**)&This->pepv_site);
|
|
|
|
|
2010-08-26 13:58:16 +02:00
|
|
|
IServiceProvider_Release(psp);
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
|
|
|
|
2010-08-26 13:58:20 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* General pane functionality.
|
|
|
|
*/
|
|
|
|
static void update_panestate(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
EXPLORERPANESTATE eps = EPS_DONTCARE;
|
|
|
|
BOOL show_navpane;
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
if(!This->pepv_site) return;
|
|
|
|
|
|
|
|
IExplorerPaneVisibility_GetPaneState(This->pepv_site, (REFEXPLORERPANE) &EP_NavPane, &eps);
|
|
|
|
if( !(eps & EPS_DEFAULT_OFF) )
|
|
|
|
show_navpane = TRUE;
|
|
|
|
else
|
|
|
|
show_navpane = FALSE;
|
|
|
|
|
2010-10-21 13:19:45 +02:00
|
|
|
if(This->navpane.show != show_navpane)
|
2010-08-26 13:58:20 +02:00
|
|
|
{
|
|
|
|
update_layout(This);
|
|
|
|
size_panes(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
This->navpane.show = show_navpane;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void splitter_draw(HWND hwnd, RECT *rc)
|
|
|
|
{
|
|
|
|
HDC hdc = GetDC(hwnd);
|
|
|
|
InvertRect(hdc, rc);
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* The Navigation Pane.
|
|
|
|
*/
|
|
|
|
static LRESULT navpane_splitter_beginresize(ExplorerBrowserImpl *This, HWND hwnd, LPARAM lParam)
|
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
SetCapture(hwnd);
|
|
|
|
|
2016-06-22 11:54:09 +02:00
|
|
|
This->splitter_rc = This->navpane.rc;
|
2010-08-26 13:58:20 +02:00
|
|
|
This->splitter_rc.left = This->splitter_rc.right - SPLITTER_WIDTH;
|
|
|
|
|
|
|
|
splitter_draw(GetParent(hwnd), &This->splitter_rc);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT navpane_splitter_resizing(ExplorerBrowserImpl *This, HWND hwnd, LPARAM lParam)
|
|
|
|
{
|
|
|
|
int new_width, dx;
|
|
|
|
RECT rc;
|
|
|
|
|
|
|
|
if(GetCapture() != hwnd) return FALSE;
|
|
|
|
|
|
|
|
dx = (SHORT)LOWORD(lParam);
|
|
|
|
TRACE("%d.\n", dx);
|
|
|
|
|
2016-06-22 11:54:09 +02:00
|
|
|
rc = This->navpane.rc;
|
2010-08-26 13:58:20 +02:00
|
|
|
new_width = This->navpane.width + dx;
|
|
|
|
if(new_width > NP_MIN_WIDTH && This->sv_rc.right - new_width > SV_MIN_WIDTH)
|
|
|
|
{
|
|
|
|
rc.right = new_width;
|
|
|
|
rc.left = rc.right - SPLITTER_WIDTH;
|
|
|
|
splitter_draw(GetParent(hwnd), &This->splitter_rc);
|
|
|
|
splitter_draw(GetParent(hwnd), &rc);
|
2016-06-22 11:54:09 +02:00
|
|
|
This->splitter_rc = rc;
|
2010-08-26 13:58:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT navpane_splitter_endresize(ExplorerBrowserImpl *This, HWND hwnd, LPARAM lParam)
|
|
|
|
{
|
|
|
|
int new_width, dx;
|
|
|
|
|
|
|
|
if(GetCapture() != hwnd) return FALSE;
|
|
|
|
|
|
|
|
dx = (SHORT)LOWORD(lParam);
|
|
|
|
TRACE("%d.\n", dx);
|
|
|
|
|
|
|
|
splitter_draw(GetParent(hwnd), &This->splitter_rc);
|
|
|
|
|
|
|
|
new_width = This->navpane.width + dx;
|
|
|
|
if(new_width < NP_MIN_WIDTH)
|
|
|
|
new_width = NP_MIN_WIDTH;
|
|
|
|
else if(This->sv_rc.right - new_width < SV_MIN_WIDTH)
|
|
|
|
new_width = This->sv_rc.right - SV_MIN_WIDTH;
|
|
|
|
|
|
|
|
This->navpane.width = new_width;
|
|
|
|
|
|
|
|
update_layout(This);
|
|
|
|
size_panes(This);
|
|
|
|
|
|
|
|
ReleaseCapture();
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT navpane_on_wm_create(HWND hwnd, CREATESTRUCTW *crs)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = crs->lpCreateParams;
|
|
|
|
INameSpaceTreeControl2 *pnstc2;
|
|
|
|
DWORD style;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
SetWindowLongPtrW(hwnd, GWLP_USERDATA, (LPARAM)This);
|
|
|
|
This->navpane.hwnd_splitter = hwnd;
|
|
|
|
|
|
|
|
hr = CoCreateInstance(&CLSID_NamespaceTreeControl, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_INameSpaceTreeControl2, (void**)&pnstc2);
|
|
|
|
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
style = NSTCS_HASEXPANDOS | NSTCS_ROOTHASEXPANDO | NSTCS_SHOWSELECTIONALWAYS;
|
|
|
|
hr = INameSpaceTreeControl2_Initialize(pnstc2, GetParent(hwnd), NULL, style);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
INameSpaceTreeControlEvents *pnstce;
|
|
|
|
IShellFolder *psfdesktop;
|
|
|
|
IShellItem *psi;
|
|
|
|
IOleWindow *pow;
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
DWORD cookie, style2 = NSTCS2_DISPLAYPADDING;
|
|
|
|
|
|
|
|
hr = INameSpaceTreeControl2_SetControlStyle2(pnstc2, 0xFF, style2);
|
|
|
|
if(FAILED(hr))
|
|
|
|
ERR("SetControlStyle2 failed (0x%08x)\n", hr);
|
|
|
|
|
|
|
|
hr = INameSpaceTreeControl2_QueryInterface(pnstc2, &IID_IOleWindow, (void**)&pow);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IOleWindow_GetWindow(pow, &This->navpane.hwnd_nstc);
|
|
|
|
IOleWindow_Release(pow);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ERR("QueryInterface(IOleWindow) failed (0x%08x)\n", hr);
|
|
|
|
|
2010-12-22 02:20:47 +01:00
|
|
|
pnstce = &This->INameSpaceTreeControlEvents_iface;
|
2010-08-26 13:58:20 +02:00
|
|
|
hr = INameSpaceTreeControl2_TreeAdvise(pnstc2, (IUnknown*)pnstce, &cookie);
|
|
|
|
if(FAILED(hr))
|
|
|
|
ERR("TreeAdvise failed. (0x%08x).\n", hr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add the default roots
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* TODO: This should be FOLDERID_Links */
|
|
|
|
hr = SHGetSpecialFolderLocation(NULL, CSIDL_FAVORITES, &pidl);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = SHCreateShellItem(NULL, NULL, pidl, &psi);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = INameSpaceTreeControl2_AppendRoot(pnstc2, psi, SHCONTF_NONFOLDERS, NSTCRS_VISIBLE, NULL);
|
|
|
|
IShellItem_Release(psi);
|
|
|
|
}
|
|
|
|
ILFree(pidl);
|
|
|
|
}
|
|
|
|
|
|
|
|
SHGetDesktopFolder(&psfdesktop);
|
|
|
|
hr = SHGetItemFromObject((IUnknown*)psfdesktop, &IID_IShellItem, (void**)&psi);
|
|
|
|
IShellFolder_Release(psfdesktop);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = INameSpaceTreeControl2_AppendRoot(pnstc2, psi, SHCONTF_FOLDERS, NSTCRS_EXPANDED, NULL);
|
|
|
|
IShellItem_Release(psi);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO:
|
|
|
|
* We should advertise IID_INameSpaceTreeControl to the site of the
|
|
|
|
* host through its IProfferService interface, if any.
|
|
|
|
*/
|
|
|
|
|
|
|
|
This->navpane.pnstc2 = pnstc2;
|
|
|
|
This->navpane.nstc_cookie = cookie;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
This->navpane.pnstc2 = NULL;
|
|
|
|
ERR("Failed (0x%08x)\n", hr);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT navpane_on_wm_size_move(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
UINT height, width;
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
width = This->navpane.rc.right - This->navpane.rc.left - SPLITTER_WIDTH;
|
|
|
|
height = This->navpane.rc.bottom - This->navpane.rc.top;
|
|
|
|
|
|
|
|
MoveWindow(This->navpane.hwnd_nstc,
|
|
|
|
This->navpane.rc.left, This->navpane.rc.top,
|
|
|
|
width, height,
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT navpane_on_wm_destroy(ExplorerBrowserImpl *This)
|
|
|
|
{
|
2012-07-29 10:51:05 +02:00
|
|
|
INameSpaceTreeControl2_TreeUnadvise(This->navpane.pnstc2, This->navpane.nstc_cookie);
|
|
|
|
INameSpaceTreeControl2_Release(This->navpane.pnstc2);
|
2010-08-26 13:58:20 +02:00
|
|
|
This->navpane.pnstc2 = NULL;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT CALLBACK navpane_wndproc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = (ExplorerBrowserImpl*)GetWindowLongPtrW(hWnd, GWLP_USERDATA);
|
|
|
|
|
|
|
|
switch(uMessage) {
|
|
|
|
case WM_CREATE: return navpane_on_wm_create(hWnd, (CREATESTRUCTW*)lParam);
|
|
|
|
case WM_MOVE: /* Fall through */
|
|
|
|
case WM_SIZE: return navpane_on_wm_size_move(This);
|
|
|
|
case WM_DESTROY: return navpane_on_wm_destroy(This);
|
|
|
|
case WM_LBUTTONDOWN: return navpane_splitter_beginresize(This, hWnd, lParam);
|
|
|
|
case WM_MOUSEMOVE: return navpane_splitter_resizing(This, hWnd, lParam);
|
|
|
|
case WM_LBUTTONUP: return navpane_splitter_endresize(This, hWnd, lParam);
|
|
|
|
default:
|
|
|
|
return DefWindowProcW(hWnd, uMessage, wParam, lParam);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void initialize_navpane(ExplorerBrowserImpl *This, HWND hwnd_parent, RECT *rc)
|
|
|
|
{
|
|
|
|
WNDCLASSW wc;
|
|
|
|
HWND splitter;
|
|
|
|
static const WCHAR navpane_classname[] = {'e','b','_','n','a','v','p','a','n','e',0};
|
|
|
|
|
|
|
|
if( !GetClassInfoW(shell32_hInstance, navpane_classname, &wc) )
|
|
|
|
{
|
|
|
|
wc.style = CS_HREDRAW | CS_VREDRAW;
|
|
|
|
wc.lpfnWndProc = navpane_wndproc;
|
|
|
|
wc.cbClsExtra = 0;
|
|
|
|
wc.cbWndExtra = 0;
|
|
|
|
wc.hInstance = shell32_hInstance;
|
|
|
|
wc.hIcon = 0;
|
|
|
|
wc.hCursor = LoadCursorW(0, (LPWSTR)IDC_SIZEWE);
|
2015-08-02 22:52:43 +02:00
|
|
|
wc.hbrBackground = (HBRUSH)(COLOR_3DFACE + 1);
|
2010-08-26 13:58:20 +02:00
|
|
|
wc.lpszMenuName = NULL;
|
|
|
|
wc.lpszClassName = navpane_classname;
|
|
|
|
|
|
|
|
if (!RegisterClassW(&wc)) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
splitter = CreateWindowExW(0, navpane_classname, NULL,
|
|
|
|
WS_CHILD | WS_TABSTOP | WS_VISIBLE,
|
|
|
|
rc->right - SPLITTER_WIDTH, rc->top,
|
|
|
|
SPLITTER_WIDTH, rc->bottom - rc->top,
|
|
|
|
hwnd_parent, 0, shell32_hInstance, This);
|
|
|
|
if(!splitter)
|
|
|
|
ERR("Failed to create navpane : %d.\n", GetLastError());
|
|
|
|
}
|
2010-08-26 13:58:16 +02:00
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* Main window related functions.
|
|
|
|
*/
|
|
|
|
static LRESULT main_on_wm_create(HWND hWnd, CREATESTRUCTW *crs)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = crs->lpCreateParams;
|
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
|
|
|
SetWindowLongPtrW(hWnd, GWLP_USERDATA, (LPARAM)This);
|
|
|
|
This->hwnd_main = hWnd;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
static LRESULT main_on_wm_size(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
update_layout(This);
|
|
|
|
size_panes(This);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-07-11 23:35:31 +02:00
|
|
|
static LRESULT main_on_cwm_getishellbrowser(ExplorerBrowserImpl *This)
|
|
|
|
{
|
|
|
|
return (LRESULT)&This->IShellBrowser_iface;
|
|
|
|
}
|
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
static LRESULT CALLBACK main_wndproc(HWND hWnd, UINT uMessage, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2010-08-23 12:55:18 +02:00
|
|
|
ExplorerBrowserImpl *This = (ExplorerBrowserImpl*)GetWindowLongPtrW(hWnd, GWLP_USERDATA);
|
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
switch(uMessage)
|
|
|
|
{
|
|
|
|
case WM_CREATE: return main_on_wm_create(hWnd, (CREATESTRUCTW*)lParam);
|
2010-08-23 12:55:18 +02:00
|
|
|
case WM_SIZE: return main_on_wm_size(This);
|
2011-07-11 23:35:31 +02:00
|
|
|
case CWM_GETISHELLBROWSER: return main_on_cwm_getishellbrowser(This);
|
2010-08-20 07:45:59 +02:00
|
|
|
default: return DefWindowProcW(hWnd, uMessage, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* IExplorerBrowser Implementation
|
|
|
|
*/
|
2010-12-22 02:20:47 +01:00
|
|
|
|
|
|
|
static inline ExplorerBrowserImpl *impl_from_IExplorerBrowser(IExplorerBrowser *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, ExplorerBrowserImpl, IExplorerBrowser_iface);
|
|
|
|
}
|
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnQueryInterface(IExplorerBrowser *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
TRACE("%p (%s, %p)\n", This, shdebugstr_guid(riid), ppvObject);
|
|
|
|
|
|
|
|
*ppvObject = NULL;
|
|
|
|
if(IsEqualIID(riid, &IID_IExplorerBrowser) ||
|
|
|
|
IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
{
|
2013-09-03 15:09:07 +02:00
|
|
|
*ppvObject = &This->IExplorerBrowser_iface;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
2017-04-24 12:21:42 +02:00
|
|
|
else if(IsEqualIID(riid, &IID_IShellBrowser) ||
|
|
|
|
IsEqualIID(riid, &IID_IOleWindow))
|
2010-08-20 07:45:58 +02:00
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
*ppvObject = &This->IShellBrowser_iface;
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
2010-08-25 15:24:34 +02:00
|
|
|
else if(IsEqualIID(riid, &IID_ICommDlgBrowser) ||
|
|
|
|
IsEqualIID(riid, &IID_ICommDlgBrowser2) ||
|
|
|
|
IsEqualIID(riid, &IID_ICommDlgBrowser3))
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
*ppvObject = &This->ICommDlgBrowser3_iface;
|
2010-08-25 15:24:34 +02:00
|
|
|
}
|
2010-08-25 15:24:36 +02:00
|
|
|
else if(IsEqualIID(riid, &IID_IObjectWithSite))
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
*ppvObject = &This->IObjectWithSite_iface;
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
2010-12-23 14:52:30 +01:00
|
|
|
else if(IsEqualIID(riid, &IID_IInputObject))
|
|
|
|
{
|
|
|
|
*ppvObject = &This->IInputObject_iface;
|
|
|
|
}
|
2010-08-20 07:45:56 +02:00
|
|
|
|
|
|
|
if(*ppvObject)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppvObject);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IExplorerBrowser_fnAddRef(IExplorerBrowser *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
TRACE("%p - ref %d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IExplorerBrowser_fnRelease(IExplorerBrowser *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
TRACE("%p - ref %d\n", This, ref);
|
|
|
|
|
|
|
|
if(!ref)
|
|
|
|
{
|
|
|
|
TRACE("Freeing.\n");
|
|
|
|
|
|
|
|
if(!This->destroyed)
|
|
|
|
IExplorerBrowser_Destroy(iface);
|
|
|
|
|
2010-12-22 02:20:47 +01:00
|
|
|
IObjectWithSite_SetSite(&This->IObjectWithSite_iface, NULL);
|
2010-08-25 15:24:36 +02:00
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnInitialize(IExplorerBrowser *iface,
|
|
|
|
HWND hwndParent, const RECT *prc,
|
|
|
|
const FOLDERSETTINGS *pfs)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:59 +02:00
|
|
|
WNDCLASSW wc;
|
|
|
|
LONG style;
|
|
|
|
static const WCHAR EB_CLASS_NAME[] =
|
|
|
|
{'E','x','p','l','o','r','e','r','B','r','o','w','s','e','r','C','o','n','t','r','o','l',0};
|
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
TRACE("%p (%p, %p, %p)\n", This, hwndParent, prc, pfs);
|
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
if(This->hwnd_main)
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
|
|
|
|
if(!hwndParent)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if( !GetClassInfoW(shell32_hInstance, EB_CLASS_NAME, &wc) )
|
|
|
|
{
|
|
|
|
wc.style = CS_HREDRAW | CS_VREDRAW;
|
|
|
|
wc.lpfnWndProc = main_wndproc;
|
|
|
|
wc.cbClsExtra = 0;
|
|
|
|
wc.cbWndExtra = 0;
|
|
|
|
wc.hInstance = shell32_hInstance;
|
|
|
|
wc.hIcon = 0;
|
|
|
|
wc.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
|
|
|
|
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
|
|
|
|
wc.lpszMenuName = NULL;
|
|
|
|
wc.lpszClassName = EB_CLASS_NAME;
|
|
|
|
|
|
|
|
if (!RegisterClassW(&wc)) return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2015-08-02 22:53:03 +02:00
|
|
|
style = WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS;
|
|
|
|
if (!(This->eb_options & EBO_NOBORDER))
|
|
|
|
style |= WS_BORDER;
|
2010-08-20 07:45:59 +02:00
|
|
|
This->hwnd_main = CreateWindowExW(WS_EX_CONTROLPARENT, EB_CLASS_NAME, NULL, style,
|
|
|
|
prc->left, prc->top,
|
|
|
|
prc->right - prc->left, prc->bottom - prc->top,
|
|
|
|
hwndParent, 0, shell32_hInstance, This);
|
|
|
|
|
|
|
|
if(!This->hwnd_main)
|
|
|
|
{
|
|
|
|
ERR("Failed to create the window.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2010-08-23 12:55:19 +02:00
|
|
|
This->fs.ViewMode = pfs ? pfs->ViewMode : FVM_DETAILS;
|
|
|
|
This->fs.fFlags = pfs ? (pfs->fFlags | FWF_NOCLIENTEDGE) : FWF_NOCLIENTEDGE;
|
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnDestroy(IExplorerBrowser *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
TRACE("%p\n", This);
|
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
if(This->psv)
|
|
|
|
{
|
|
|
|
IShellView_DestroyViewWindow(This->psv);
|
|
|
|
IShellView_Release(This->psv);
|
|
|
|
This->psv = NULL;
|
|
|
|
This->hwnd_sv = NULL;
|
|
|
|
}
|
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
events_unadvise_all(This);
|
2010-08-25 15:24:33 +02:00
|
|
|
travellog_remove_all_entries(This);
|
2010-08-24 10:56:19 +02:00
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
ILFree(This->current_pidl);
|
|
|
|
This->current_pidl = NULL;
|
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
DestroyWindow(This->hwnd_main);
|
2010-08-20 07:45:56 +02:00
|
|
|
This->destroyed = TRUE;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnSetRect(IExplorerBrowser *iface,
|
|
|
|
HDWP *phdwp, RECT rcBrowser)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:46:00 +02:00
|
|
|
TRACE("%p (%p, %s)\n", This, phdwp, wine_dbgstr_rect(&rcBrowser));
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-12-19 22:07:12 +01:00
|
|
|
if(phdwp && *phdwp)
|
2010-08-20 07:46:00 +02:00
|
|
|
{
|
|
|
|
*phdwp = DeferWindowPos(*phdwp, This->hwnd_main, NULL, rcBrowser.left, rcBrowser.top,
|
|
|
|
rcBrowser.right - rcBrowser.left, rcBrowser.bottom - rcBrowser.top,
|
|
|
|
SWP_NOZORDER | SWP_NOACTIVATE);
|
2010-12-19 22:07:12 +01:00
|
|
|
if(!*phdwp)
|
|
|
|
return E_FAIL;
|
2010-08-20 07:46:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MoveWindow(This->hwnd_main, rcBrowser.left, rcBrowser.top,
|
|
|
|
rcBrowser.right - rcBrowser.left, rcBrowser.bottom - rcBrowser.top, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnSetPropertyBag(IExplorerBrowser *iface,
|
|
|
|
LPCWSTR pszPropertyBag)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
FIXME("stub, %p (%s)\n", This, debugstr_w(pszPropertyBag));
|
|
|
|
|
2010-12-19 22:11:23 +01:00
|
|
|
if(!pszPropertyBag)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
/* FIXME: This method is currently useless as we don't save any
|
|
|
|
* settings anywhere, but at least one application breaks if we
|
|
|
|
* return E_NOTIMPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return S_OK;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnSetEmptyText(IExplorerBrowser *iface,
|
|
|
|
LPCWSTR pszEmptyText)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
FIXME("stub, %p (%s)\n", This, debugstr_w(pszEmptyText));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnSetFolderSettings(IExplorerBrowser *iface,
|
|
|
|
const FOLDERSETTINGS *pfs)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-23 12:55:19 +02:00
|
|
|
TRACE("%p (%p)\n", This, pfs);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-23 12:55:19 +02:00
|
|
|
if(!pfs)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
This->fs.ViewMode = pfs->ViewMode;
|
|
|
|
This->fs.fFlags = pfs->fFlags | FWF_NOCLIENTEDGE;
|
|
|
|
|
|
|
|
/* Change the settings of the current view, if any. */
|
|
|
|
return change_viewmode(This, This->fs.ViewMode);
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnAdvise(IExplorerBrowser *iface,
|
|
|
|
IExplorerBrowserEvents *psbe,
|
|
|
|
DWORD *pdwCookie)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-24 10:56:19 +02:00
|
|
|
event_client *client;
|
|
|
|
TRACE("%p (%p, %p)\n", This, psbe, pdwCookie);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
client = HeapAlloc(GetProcessHeap(), 0, sizeof(event_client));
|
|
|
|
client->pebe = psbe;
|
|
|
|
client->cookie = ++This->events_next_cookie;
|
|
|
|
|
|
|
|
IExplorerBrowserEvents_AddRef(psbe);
|
|
|
|
*pdwCookie = client->cookie;
|
|
|
|
|
|
|
|
list_add_tail(&This->event_clients, &client->entry);
|
|
|
|
|
|
|
|
return S_OK;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnUnadvise(IExplorerBrowser *iface,
|
|
|
|
DWORD dwCookie)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-24 10:56:19 +02:00
|
|
|
event_client *client;
|
|
|
|
TRACE("%p (0x%x)\n", This, dwCookie);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
LIST_FOR_EACH_ENTRY(client, &This->event_clients, event_client, entry)
|
|
|
|
{
|
|
|
|
if(client->cookie == dwCookie)
|
|
|
|
{
|
|
|
|
list_remove(&client->entry);
|
|
|
|
IExplorerBrowserEvents_Release(client->pebe);
|
|
|
|
HeapFree(GetProcessHeap(), 0, client);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnSetOptions(IExplorerBrowser *iface,
|
|
|
|
EXPLORER_BROWSER_OPTIONS dwFlag)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-23 12:55:17 +02:00
|
|
|
static const EXPLORER_BROWSER_OPTIONS unsupported_options =
|
2015-08-02 22:53:03 +02:00
|
|
|
EBO_ALWAYSNAVIGATE | EBO_NOWRAPPERWINDOW | EBO_HTMLSHAREPOINTVIEW | EBO_NOPERSISTVIEWSTATE;
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-23 12:55:17 +02:00
|
|
|
TRACE("%p (0x%x)\n", This, dwFlag);
|
|
|
|
|
|
|
|
if(dwFlag & unsupported_options)
|
|
|
|
FIXME("Flags 0x%08x contains unsupported options.\n", dwFlag);
|
|
|
|
|
|
|
|
This->eb_options = dwFlag;
|
|
|
|
|
|
|
|
return S_OK;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnGetOptions(IExplorerBrowser *iface,
|
|
|
|
EXPLORER_BROWSER_OPTIONS *pdwFlag)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-23 12:55:17 +02:00
|
|
|
TRACE("%p (%p)\n", This, pdwFlag);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-23 12:55:17 +02:00
|
|
|
*pdwFlag = This->eb_options;
|
|
|
|
|
|
|
|
return S_OK;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnBrowseToIDList(IExplorerBrowser *iface,
|
|
|
|
PCUIDLIST_RELATIVE pidl,
|
|
|
|
UINT uFlags)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-24 10:56:21 +02:00
|
|
|
LPITEMIDLIST absolute_pidl = NULL;
|
|
|
|
HRESULT hr;
|
2010-08-25 15:24:33 +02:00
|
|
|
static const UINT unsupported_browse_flags =
|
|
|
|
SBSP_NEWBROWSER | EBF_SELECTFROMDATAOBJECT | EBF_NODROPTARGET;
|
2010-08-24 10:56:21 +02:00
|
|
|
TRACE("%p (%p, 0x%x)\n", This, pidl, uFlags);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
if(!This->hwnd_main)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
if(This->destroyed)
|
|
|
|
return HRESULT_FROM_WIN32(ERROR_BUSY);
|
|
|
|
|
|
|
|
if(This->current_pidl && (This->eb_options & EBO_NAVIGATEONCE))
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
if(uFlags & SBSP_EXPLOREMODE)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if(uFlags & unsupported_browse_flags)
|
|
|
|
FIXME("Argument 0x%x contains unsupported flags.\n", uFlags);
|
|
|
|
|
2010-08-25 15:24:33 +02:00
|
|
|
if(uFlags & SBSP_NAVIGATEBACK)
|
|
|
|
{
|
|
|
|
TRACE("SBSP_NAVIGATEBACK\n");
|
|
|
|
absolute_pidl = ILClone(travellog_go_back(This));
|
|
|
|
if(!absolute_pidl && !This->current_pidl)
|
|
|
|
return E_FAIL;
|
|
|
|
else if(!absolute_pidl)
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
}
|
|
|
|
else if(uFlags & SBSP_NAVIGATEFORWARD)
|
|
|
|
{
|
|
|
|
TRACE("SBSP_NAVIGATEFORWARD\n");
|
|
|
|
absolute_pidl = ILClone(travellog_go_forward(This));
|
|
|
|
if(!absolute_pidl && !This->current_pidl)
|
|
|
|
return E_FAIL;
|
|
|
|
else if(!absolute_pidl)
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
}
|
|
|
|
else if(uFlags & SBSP_PARENT)
|
2010-08-24 10:56:21 +02:00
|
|
|
{
|
|
|
|
if(This->current_pidl)
|
|
|
|
{
|
|
|
|
if(_ILIsPidlSimple(This->current_pidl))
|
|
|
|
{
|
|
|
|
absolute_pidl = _ILCreateDesktop();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
absolute_pidl = ILClone(This->current_pidl);
|
|
|
|
ILRemoveLastID(absolute_pidl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!absolute_pidl)
|
|
|
|
{
|
|
|
|
ERR("Failed to get parent pidl.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if(uFlags & SBSP_RELATIVE)
|
|
|
|
{
|
|
|
|
/* SBSP_RELATIVE has precedence over SBSP_ABSOLUTE */
|
|
|
|
TRACE("SBSP_RELATIVE\n");
|
|
|
|
if(This->current_pidl)
|
|
|
|
{
|
|
|
|
absolute_pidl = ILCombine(This->current_pidl, pidl);
|
|
|
|
}
|
|
|
|
if(!absolute_pidl)
|
|
|
|
{
|
|
|
|
ERR("Failed to get absolute pidl.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TRACE("SBSP_ABSOLUTE\n");
|
|
|
|
absolute_pidl = ILClone(pidl);
|
|
|
|
if(!absolute_pidl && !This->current_pidl)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
else if(!absolute_pidl)
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Asynchronous browsing. Return S_OK here and finish in
|
|
|
|
* another thread. */
|
|
|
|
|
|
|
|
hr = events_NavigationPending(This, absolute_pidl);
|
|
|
|
if(FAILED(hr))
|
|
|
|
{
|
|
|
|
TRACE("Browsing aborted.\n");
|
|
|
|
ILFree(absolute_pidl);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2010-08-25 15:24:36 +02:00
|
|
|
get_interfaces_from_site(This);
|
2010-08-26 13:58:20 +02:00
|
|
|
update_panestate(This);
|
2010-08-25 15:24:36 +02:00
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
/* Only browse if the new pidl differs from the old */
|
|
|
|
if(!ILIsEqual(This->current_pidl, absolute_pidl))
|
|
|
|
{
|
|
|
|
IShellItem *psi;
|
|
|
|
hr = SHCreateItemFromIDList(absolute_pidl, &IID_IShellItem, (void**)&psi);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = create_new_shellview(This, psi);
|
|
|
|
if(FAILED(hr))
|
|
|
|
{
|
|
|
|
events_NavigationFailed(This, absolute_pidl);
|
|
|
|
ILFree(absolute_pidl);
|
|
|
|
IShellItem_Release(psi);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2010-08-25 15:24:33 +02:00
|
|
|
|
|
|
|
/* Add to travellog */
|
|
|
|
if( !(This->eb_options & EBO_NOTRAVELLOG) &&
|
|
|
|
!(uFlags & (SBSP_NAVIGATEFORWARD|SBSP_NAVIGATEBACK)) )
|
|
|
|
{
|
|
|
|
travellog_add_entry(This, absolute_pidl);
|
|
|
|
}
|
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
IShellItem_Release(psi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
events_NavigationComplete(This, absolute_pidl);
|
|
|
|
ILFree(This->current_pidl);
|
|
|
|
This->current_pidl = absolute_pidl;
|
|
|
|
|
2010-08-26 13:58:20 +02:00
|
|
|
/* Expand the NameSpaceTree to the current location. */
|
|
|
|
if(This->navpane.show && This->navpane.pnstc2)
|
|
|
|
{
|
|
|
|
IShellItem *psi;
|
|
|
|
hr = SHCreateItemFromIDList(This->current_pidl, &IID_IShellItem, (void**)&psi);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
2012-07-29 10:51:05 +02:00
|
|
|
INameSpaceTreeControl2_EnsureItemVisible(This->navpane.pnstc2, psi);
|
2010-08-26 13:58:20 +02:00
|
|
|
IShellItem_Release(psi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-24 10:56:21 +02:00
|
|
|
return S_OK;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnBrowseToObject(IExplorerBrowser *iface,
|
|
|
|
IUnknown *punk, UINT uFlags)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-25 15:24:32 +02:00
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
HRESULT hr;
|
|
|
|
TRACE("%p (%p, 0x%x)\n", This, punk, uFlags);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-25 15:24:32 +02:00
|
|
|
if(!punk)
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_BrowseToIDList(iface, NULL, uFlags);
|
2010-08-25 15:24:32 +02:00
|
|
|
|
|
|
|
hr = SHGetIDListFromObject(punk, &pidl);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IExplorerBrowser_BrowseToIDList(iface, pidl, uFlags);
|
|
|
|
ILFree(pidl);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnFillFromObject(IExplorerBrowser *iface,
|
|
|
|
IUnknown *punk,
|
|
|
|
EXPLORER_BROWSER_FILL_FLAGS dwFlags)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
FIXME("stub, %p (%p, 0x%x)\n", This, punk, dwFlags);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnRemoveAll(IExplorerBrowser *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
FIXME("stub, %p\n", This);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IExplorerBrowser_fnGetCurrentView(IExplorerBrowser *iface,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
ExplorerBrowserImpl *This = impl_from_IExplorerBrowser(iface);
|
2010-08-23 12:55:18 +02:00
|
|
|
TRACE("%p (%s, %p)\n", This, shdebugstr_guid(riid), ppv);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
if(!This->psv)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
return IShellView_QueryInterface(This->psv, riid, ppv);
|
2010-08-20 07:45:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IExplorerBrowserVtbl vt_IExplorerBrowser =
|
|
|
|
{
|
|
|
|
IExplorerBrowser_fnQueryInterface,
|
|
|
|
IExplorerBrowser_fnAddRef,
|
|
|
|
IExplorerBrowser_fnRelease,
|
|
|
|
IExplorerBrowser_fnInitialize,
|
|
|
|
IExplorerBrowser_fnDestroy,
|
|
|
|
IExplorerBrowser_fnSetRect,
|
|
|
|
IExplorerBrowser_fnSetPropertyBag,
|
|
|
|
IExplorerBrowser_fnSetEmptyText,
|
|
|
|
IExplorerBrowser_fnSetFolderSettings,
|
|
|
|
IExplorerBrowser_fnAdvise,
|
|
|
|
IExplorerBrowser_fnUnadvise,
|
|
|
|
IExplorerBrowser_fnSetOptions,
|
|
|
|
IExplorerBrowser_fnGetOptions,
|
|
|
|
IExplorerBrowser_fnBrowseToIDList,
|
|
|
|
IExplorerBrowser_fnBrowseToObject,
|
|
|
|
IExplorerBrowser_fnFillFromObject,
|
|
|
|
IExplorerBrowser_fnRemoveAll,
|
|
|
|
IExplorerBrowser_fnGetCurrentView
|
|
|
|
};
|
|
|
|
|
2010-08-20 07:45:58 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* IShellBrowser Implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline ExplorerBrowserImpl *impl_from_IShellBrowser(IShellBrowser *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
return CONTAINING_RECORD(iface, ExplorerBrowserImpl, IShellBrowser_iface);
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnQueryInterface(IShellBrowser *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_QueryInterface(&This->IExplorerBrowser_iface, riid, ppvObject);
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IShellBrowser_fnAddRef(IShellBrowser *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_AddRef(&This->IExplorerBrowser_iface);
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IShellBrowser_fnRelease(IShellBrowser *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_Release(&This->IExplorerBrowser_iface);
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnGetWindow(IShellBrowser *iface, HWND *phwnd)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
2010-08-20 07:45:59 +02:00
|
|
|
TRACE("%p (%p)\n", This, phwnd);
|
2010-08-20 07:45:58 +02:00
|
|
|
|
2010-08-20 07:45:59 +02:00
|
|
|
if(!This->hwnd_main)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
*phwnd = This->hwnd_main;
|
|
|
|
return S_OK;
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnContextSensitiveHelp(IShellBrowser *iface,
|
|
|
|
BOOL fEnterMode)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%d)\n", This, fEnterMode);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnInsertMenusSB(IShellBrowser *iface,
|
|
|
|
HMENU hmenuShared,
|
|
|
|
LPOLEMENUGROUPWIDTHS lpMenuWidths)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
TRACE("%p (%p, %p)\n", This, hmenuShared, lpMenuWidths);
|
|
|
|
|
|
|
|
/* Not implemented. */
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnSetMenuSB(IShellBrowser *iface,
|
|
|
|
HMENU hmenuShared,
|
|
|
|
HOLEMENU holemenuReserved,
|
|
|
|
HWND hwndActiveObject)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
TRACE("%p (%p, %p, %p)\n", This, hmenuShared, holemenuReserved, hwndActiveObject);
|
|
|
|
|
|
|
|
/* Not implemented. */
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnRemoveMenusSB(IShellBrowser *iface,
|
|
|
|
HMENU hmenuShared)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
TRACE("%p (%p)\n", This, hmenuShared);
|
|
|
|
|
|
|
|
/* Not implemented. */
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnSetStatusTextSB(IShellBrowser *iface,
|
|
|
|
LPCOLESTR pszStatusText)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%s)\n", This, debugstr_w(pszStatusText));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnEnableModelessSB(IShellBrowser *iface,
|
|
|
|
BOOL fEnable)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%d)\n", This, fEnable);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnTranslateAcceleratorSB(IShellBrowser *iface,
|
|
|
|
MSG *pmsg, WORD wID)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%p, 0x%x)\n", This, pmsg, wID);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnBrowseObject(IShellBrowser *iface,
|
|
|
|
LPCITEMIDLIST pidl, UINT wFlags)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
2010-08-24 10:56:21 +02:00
|
|
|
TRACE("%p (%p, %x)\n", This, pidl, wFlags);
|
2010-08-20 07:45:58 +02:00
|
|
|
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_BrowseToIDList(&This->IExplorerBrowser_iface, pidl, wFlags);
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnGetViewStateStream(IShellBrowser *iface,
|
|
|
|
DWORD grfMode,
|
|
|
|
IStream **ppStrm)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (0x%x, %p)\n", This, grfMode, ppStrm);
|
|
|
|
|
|
|
|
*ppStrm = NULL;
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnGetControlWindow(IShellBrowser *iface,
|
|
|
|
UINT id, HWND *phwnd)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
2013-06-01 11:38:51 +02:00
|
|
|
TRACE("(%p)->(%d, %p)\n", This, id, phwnd);
|
|
|
|
if (phwnd) *phwnd = NULL;
|
2010-08-20 07:45:58 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnSendControlMsg(IShellBrowser *iface,
|
|
|
|
UINT id, UINT uMsg,
|
|
|
|
WPARAM wParam, LPARAM lParam,
|
|
|
|
LRESULT *pret)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%d, %d, %lx, %lx, %p)\n", This, id, uMsg, wParam, lParam, pret);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnQueryActiveShellView(IShellBrowser *iface,
|
|
|
|
IShellView **ppshv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
2010-08-23 12:55:18 +02:00
|
|
|
TRACE("%p (%p)\n", This, ppshv);
|
2010-08-20 07:45:58 +02:00
|
|
|
|
2010-08-23 12:55:18 +02:00
|
|
|
if(!This->psv)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
*ppshv = This->psv;
|
|
|
|
IShellView_AddRef(This->psv);
|
|
|
|
|
|
|
|
return S_OK;
|
2010-08-20 07:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnOnViewWindowActive(IShellBrowser *iface,
|
|
|
|
IShellView *pshv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%p)\n", This, pshv);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IShellBrowser_fnSetToolbarItems(IShellBrowser *iface,
|
|
|
|
LPTBBUTTONSB lpButtons,
|
|
|
|
UINT nButtons, UINT uFlags)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IShellBrowser(iface);
|
|
|
|
FIXME("stub, %p (%p, %d, 0x%x)\n", This, lpButtons, nButtons, uFlags);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IShellBrowserVtbl vt_IShellBrowser = {
|
|
|
|
IShellBrowser_fnQueryInterface,
|
|
|
|
IShellBrowser_fnAddRef,
|
|
|
|
IShellBrowser_fnRelease,
|
|
|
|
IShellBrowser_fnGetWindow,
|
|
|
|
IShellBrowser_fnContextSensitiveHelp,
|
|
|
|
IShellBrowser_fnInsertMenusSB,
|
|
|
|
IShellBrowser_fnSetMenuSB,
|
|
|
|
IShellBrowser_fnRemoveMenusSB,
|
|
|
|
IShellBrowser_fnSetStatusTextSB,
|
|
|
|
IShellBrowser_fnEnableModelessSB,
|
|
|
|
IShellBrowser_fnTranslateAcceleratorSB,
|
|
|
|
IShellBrowser_fnBrowseObject,
|
|
|
|
IShellBrowser_fnGetViewStateStream,
|
|
|
|
IShellBrowser_fnGetControlWindow,
|
|
|
|
IShellBrowser_fnSendControlMsg,
|
|
|
|
IShellBrowser_fnQueryActiveShellView,
|
|
|
|
IShellBrowser_fnOnViewWindowActive,
|
|
|
|
IShellBrowser_fnSetToolbarItems
|
|
|
|
};
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* ICommDlgBrowser3 Implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline ExplorerBrowserImpl *impl_from_ICommDlgBrowser3(ICommDlgBrowser3 *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
return CONTAINING_RECORD(iface, ExplorerBrowserImpl, ICommDlgBrowser3_iface);
|
2010-08-25 15:24:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnQueryInterface(ICommDlgBrowser3 *iface,
|
|
|
|
REFIID riid,
|
|
|
|
void **ppvObject)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_QueryInterface(&This->IExplorerBrowser_iface, riid, ppvObject);
|
2010-08-25 15:24:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ICommDlgBrowser3_fnAddRef(ICommDlgBrowser3 *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_AddRef(&This->IExplorerBrowser_iface);
|
2010-08-25 15:24:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ICommDlgBrowser3_fnRelease(ICommDlgBrowser3 *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_Release(&This->IExplorerBrowser_iface);
|
2010-08-25 15:24:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnOnDefaultCommand(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *shv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-25 15:24:35 +02:00
|
|
|
IDataObject *pdo;
|
|
|
|
HRESULT hr;
|
|
|
|
HRESULT ret = S_FALSE;
|
|
|
|
|
|
|
|
TRACE("%p (%p)\n", This, shv);
|
|
|
|
|
|
|
|
hr = IShellView_GetItemObject(shv, SVGIO_SELECTION, &IID_IDataObject, (void**)&pdo);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
FORMATETC fmt;
|
|
|
|
STGMEDIUM medium;
|
|
|
|
|
|
|
|
fmt.cfFormat = RegisterClipboardFormatW(CFSTR_SHELLIDLISTW);
|
|
|
|
fmt.ptd = NULL;
|
|
|
|
fmt.dwAspect = DVASPECT_CONTENT;
|
|
|
|
fmt.lindex = -1;
|
|
|
|
fmt.tymed = TYMED_HGLOBAL;
|
|
|
|
|
|
|
|
hr = IDataObject_GetData(pdo, &fmt ,&medium);
|
|
|
|
IDataObject_Release(pdo);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
LPIDA pida = GlobalLock(medium.u.hGlobal);
|
|
|
|
LPCITEMIDLIST pidl_child = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[1]);
|
|
|
|
|
|
|
|
/* Handle folders by browsing to them. */
|
|
|
|
if(_ILIsFolder(pidl_child) || _ILIsDrive(pidl_child) || _ILIsSpecialFolder(pidl_child))
|
|
|
|
{
|
2013-06-01 11:53:19 +02:00
|
|
|
IExplorerBrowser_BrowseToIDList(&This->IExplorerBrowser_iface, pidl_child, SBSP_RELATIVE);
|
2010-08-25 15:24:35 +02:00
|
|
|
ret = S_OK;
|
|
|
|
}
|
|
|
|
GlobalUnlock(medium.u.hGlobal);
|
|
|
|
GlobalFree(medium.u.hGlobal);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ERR("Failed to get data from IDataObject.\n");
|
|
|
|
} else
|
|
|
|
ERR("Failed to get IDataObject.\n");
|
|
|
|
|
2010-08-26 13:58:16 +02:00
|
|
|
/* If we didn't handle the default command, check if we have a
|
|
|
|
* client that does */
|
|
|
|
if(ret == S_FALSE && This->pcdb_site)
|
|
|
|
return ICommDlgBrowser_OnDefaultCommand(This->pcdb_site, shv);
|
|
|
|
|
2010-08-25 15:24:35 +02:00
|
|
|
return ret;
|
2010-08-25 15:24:34 +02:00
|
|
|
}
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnOnStateChange(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *shv, ULONG uChange)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p, %d)\n", This, shv, uChange);
|
|
|
|
|
|
|
|
if(This->pcdb_site)
|
|
|
|
return ICommDlgBrowser_OnStateChange(This->pcdb_site, shv, uChange);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnIncludeObject(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *pshv, LPCITEMIDLIST pidl)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p, %p)\n", This, pshv, pidl);
|
|
|
|
|
|
|
|
if(This->pcdb_site)
|
|
|
|
return ICommDlgBrowser_IncludeObject(This->pcdb_site, pshv, pidl);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnNotify(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *pshv,
|
|
|
|
DWORD dwNotifyType)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p, 0x%x)\n", This, pshv, dwNotifyType);
|
|
|
|
|
|
|
|
if(This->pcdb2_site)
|
|
|
|
return ICommDlgBrowser2_Notify(This->pcdb2_site, pshv, dwNotifyType);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnGetDefaultMenuText(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *pshv,
|
|
|
|
LPWSTR pszText, int cchMax)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p, %s, %d)\n", This, pshv, debugstr_w(pszText), cchMax);
|
|
|
|
|
|
|
|
if(This->pcdb2_site)
|
|
|
|
return ICommDlgBrowser2_GetDefaultMenuText(This->pcdb2_site, pshv, pszText, cchMax);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnGetViewFlags(ICommDlgBrowser3 *iface,
|
|
|
|
DWORD *pdwFlags)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p)\n", This, pdwFlags);
|
|
|
|
|
|
|
|
if(This->pcdb2_site)
|
|
|
|
return ICommDlgBrowser2_GetViewFlags(This->pcdb2_site, pdwFlags);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnOnColumnClicked(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *pshv, int iColumn)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p, %d)\n", This, pshv, iColumn);
|
|
|
|
|
|
|
|
if(This->pcdb3_site)
|
|
|
|
return ICommDlgBrowser3_OnColumnClicked(This->pcdb3_site, pshv, iColumn);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnGetCurrentFilter(ICommDlgBrowser3 *iface,
|
|
|
|
LPWSTR pszFileSpec,
|
|
|
|
int cchFileSpec)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%s, %d)\n", This, debugstr_w(pszFileSpec), cchFileSpec);
|
|
|
|
|
|
|
|
if(This->pcdb3_site)
|
|
|
|
return ICommDlgBrowser3_GetCurrentFilter(This->pcdb3_site, pszFileSpec, cchFileSpec);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ICommDlgBrowser3_fnOnPreviewCreated(ICommDlgBrowser3 *iface,
|
|
|
|
IShellView *pshv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
|
2010-08-26 13:58:16 +02:00
|
|
|
TRACE("%p (%p)\n", This, pshv);
|
|
|
|
|
|
|
|
if(This->pcdb3_site)
|
|
|
|
return ICommDlgBrowser3_OnPreviewCreated(This->pcdb3_site, pshv);
|
|
|
|
|
2010-08-25 15:24:34 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const ICommDlgBrowser3Vtbl vt_ICommDlgBrowser3 = {
|
|
|
|
ICommDlgBrowser3_fnQueryInterface,
|
|
|
|
ICommDlgBrowser3_fnAddRef,
|
|
|
|
ICommDlgBrowser3_fnRelease,
|
|
|
|
ICommDlgBrowser3_fnOnDefaultCommand,
|
|
|
|
ICommDlgBrowser3_fnOnStateChange,
|
|
|
|
ICommDlgBrowser3_fnIncludeObject,
|
|
|
|
ICommDlgBrowser3_fnNotify,
|
|
|
|
ICommDlgBrowser3_fnGetDefaultMenuText,
|
|
|
|
ICommDlgBrowser3_fnGetViewFlags,
|
|
|
|
ICommDlgBrowser3_fnOnColumnClicked,
|
|
|
|
ICommDlgBrowser3_fnGetCurrentFilter,
|
|
|
|
ICommDlgBrowser3_fnOnPreviewCreated
|
|
|
|
};
|
|
|
|
|
2010-08-25 15:24:36 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* IObjectWithSite Implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline ExplorerBrowserImpl *impl_from_IObjectWithSite(IObjectWithSite *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
return CONTAINING_RECORD(iface, ExplorerBrowserImpl, IObjectWithSite_iface);
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IObjectWithSite_fnQueryInterface(IObjectWithSite *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IObjectWithSite(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_QueryInterface(&This->IExplorerBrowser_iface, riid, ppvObject);
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IObjectWithSite_fnAddRef(IObjectWithSite *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IObjectWithSite(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_AddRef(&This->IExplorerBrowser_iface);
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IObjectWithSite_fnRelease(IObjectWithSite *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IObjectWithSite(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_Release(&This->IExplorerBrowser_iface);
|
2010-08-25 15:24:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IObjectWithSite_fnSetSite(IObjectWithSite *iface, IUnknown *punk_site)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IObjectWithSite(iface);
|
|
|
|
TRACE("%p (%p)\n", This, punk_site);
|
|
|
|
|
|
|
|
if(This->punk_site)
|
|
|
|
{
|
|
|
|
IUnknown_Release(This->punk_site);
|
|
|
|
This->punk_site = NULL;
|
|
|
|
get_interfaces_from_site(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
This->punk_site = punk_site;
|
|
|
|
|
|
|
|
if(This->punk_site)
|
|
|
|
IUnknown_AddRef(This->punk_site);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IObjectWithSite_fnGetSite(IObjectWithSite *iface, REFIID riid, void **ppvSite)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IObjectWithSite(iface);
|
|
|
|
TRACE("%p (%s, %p)\n", This, shdebugstr_guid(riid), ppvSite);
|
|
|
|
|
|
|
|
if(!This->punk_site)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
return IUnknown_QueryInterface(This->punk_site, riid, ppvSite);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IObjectWithSiteVtbl vt_IObjectWithSite = {
|
|
|
|
IObjectWithSite_fnQueryInterface,
|
|
|
|
IObjectWithSite_fnAddRef,
|
|
|
|
IObjectWithSite_fnRelease,
|
|
|
|
IObjectWithSite_fnSetSite,
|
|
|
|
IObjectWithSite_fnGetSite
|
|
|
|
};
|
|
|
|
|
2010-08-26 13:58:19 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* INameSpaceTreeControlEvents Implementation
|
|
|
|
*/
|
|
|
|
static inline ExplorerBrowserImpl *impl_from_INameSpaceTreeControlEvents(INameSpaceTreeControlEvents *iface)
|
|
|
|
{
|
2010-12-22 02:20:47 +01:00
|
|
|
return CONTAINING_RECORD(iface, ExplorerBrowserImpl, INameSpaceTreeControlEvents_iface);
|
2010-08-26 13:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnQueryInterface(INameSpaceTreeControlEvents *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%s, %p)\n", This, shdebugstr_guid(riid), ppvObject);
|
|
|
|
|
|
|
|
*ppvObject = NULL;
|
|
|
|
if(IsEqualIID(riid, &IID_INameSpaceTreeControlEvents) ||
|
|
|
|
IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
*ppvObject = iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*ppvObject)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppvObject);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI NSTCEvents_fnAddRef(INameSpaceTreeControlEvents *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_AddRef(&This->IExplorerBrowser_iface);
|
2010-08-26 13:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI NSTCEvents_fnRelease(INameSpaceTreeControlEvents *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_Release(&This->IExplorerBrowser_iface);
|
2010-08-26 13:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnItemClick(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi,
|
|
|
|
NSTCEHITTEST nstceHitTest,
|
|
|
|
NSTCECLICKTYPE nstceClickType)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, 0x%x, 0x%x)\n", This, psi, nstceHitTest, nstceClickType);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnPropertyItemCommit(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnItemStateChanging(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi,
|
|
|
|
NSTCITEMSTATE nstcisMask,
|
|
|
|
NSTCITEMSTATE nstcisState)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, 0x%x, 0x%x)\n", This, psi, nstcisMask, nstcisState);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnItemStateChanged(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi,
|
|
|
|
NSTCITEMSTATE nstcisMask,
|
|
|
|
NSTCITEMSTATE nstcisState)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, 0x%x, 0x%x)\n", This, psi, nstcisMask, nstcisState);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnSelectionChanged(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItemArray *psiaSelection)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
2010-10-21 13:19:46 +02:00
|
|
|
IShellItem *psi;
|
|
|
|
HRESULT hr;
|
2010-08-26 13:58:19 +02:00
|
|
|
TRACE("%p (%p)\n", This, psiaSelection);
|
2010-10-21 13:19:46 +02:00
|
|
|
|
|
|
|
hr = IShellItemArray_GetItemAt(psiaSelection, 0, &psi);
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
2013-06-01 11:53:19 +02:00
|
|
|
hr = IExplorerBrowser_BrowseToObject(&This->IExplorerBrowser_iface,
|
2010-10-21 13:19:46 +02:00
|
|
|
(IUnknown*)psi, SBSP_DEFBROWSER);
|
|
|
|
IShellItem_Release(psi);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2010-08-26 13:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnKeyboardInput(INameSpaceTreeControlEvents *iface,
|
|
|
|
UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%d, 0x%lx, 0x%lx)\n", This, uMsg, wParam, lParam);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnBeforeExpand(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnAfterExpand(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnBeginLabelEdit(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnEndLabelEdit(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnGetToolTip(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi, LPWSTR pszTip, int cchTip)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, %p, %d)\n", This, psi, pszTip, cchTip);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnBeforeItemDelete(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnItemAdded(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi, BOOL fIsRoot)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, %d)\n", This, psi, fIsRoot);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnItemDeleted(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi, BOOL fIsRoot)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, %d)\n", This, psi, fIsRoot);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnBeforeContextMenu(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, %s, %p)\n", This, psi, shdebugstr_guid(riid), ppv);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnAfterContextMenu(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi, IContextMenu *pcmIn,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, %p, %s, %p)\n", This, psi, pcmIn, shdebugstr_guid(riid), ppv);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnBeforeStateImageChange(INameSpaceTreeControlEvents *iface,
|
|
|
|
IShellItem *psi)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p)\n", This, psi);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI NSTCEvents_fnOnGetDefaultIconIndex(INameSpaceTreeControlEvents* iface,
|
|
|
|
IShellItem *psi,
|
|
|
|
int *piDefaultIcon, int *piOpenIcon)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_INameSpaceTreeControlEvents(iface);
|
|
|
|
TRACE("%p (%p, %p, %p)\n", This, psi, piDefaultIcon, piOpenIcon);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-26 19:23:52 +02:00
|
|
|
static const INameSpaceTreeControlEventsVtbl vt_INameSpaceTreeControlEvents = {
|
2010-08-26 13:58:19 +02:00
|
|
|
NSTCEvents_fnQueryInterface,
|
|
|
|
NSTCEvents_fnAddRef,
|
|
|
|
NSTCEvents_fnRelease,
|
|
|
|
NSTCEvents_fnOnItemClick,
|
|
|
|
NSTCEvents_fnOnPropertyItemCommit,
|
|
|
|
NSTCEvents_fnOnItemStateChanging,
|
|
|
|
NSTCEvents_fnOnItemStateChanged,
|
|
|
|
NSTCEvents_fnOnSelectionChanged,
|
|
|
|
NSTCEvents_fnOnKeyboardInput,
|
|
|
|
NSTCEvents_fnOnBeforeExpand,
|
|
|
|
NSTCEvents_fnOnAfterExpand,
|
|
|
|
NSTCEvents_fnOnBeginLabelEdit,
|
|
|
|
NSTCEvents_fnOnEndLabelEdit,
|
|
|
|
NSTCEvents_fnOnGetToolTip,
|
|
|
|
NSTCEvents_fnOnBeforeItemDelete,
|
|
|
|
NSTCEvents_fnOnItemAdded,
|
|
|
|
NSTCEvents_fnOnItemDeleted,
|
|
|
|
NSTCEvents_fnOnBeforeContextMenu,
|
|
|
|
NSTCEvents_fnOnAfterContextMenu,
|
|
|
|
NSTCEvents_fnOnBeforeStateImageChange,
|
|
|
|
NSTCEvents_fnOnGetDefaultIconIndex
|
|
|
|
};
|
|
|
|
|
2010-12-23 14:52:30 +01:00
|
|
|
/**************************************************************************
|
|
|
|
* IInputObject Implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline ExplorerBrowserImpl *impl_from_IInputObject(IInputObject *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, ExplorerBrowserImpl, IInputObject_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IInputObject_fnQueryInterface(IInputObject *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IInputObject(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_QueryInterface(&This->IExplorerBrowser_iface, riid, ppvObject);
|
2010-12-23 14:52:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IInputObject_fnAddRef(IInputObject *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IInputObject(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_AddRef(&This->IExplorerBrowser_iface);
|
2010-12-23 14:52:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IInputObject_fnRelease(IInputObject *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IInputObject(iface);
|
|
|
|
TRACE("%p\n", This);
|
2013-06-01 11:53:19 +02:00
|
|
|
return IExplorerBrowser_Release(&This->IExplorerBrowser_iface);
|
2010-12-23 14:52:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IInputObject_fnUIActivateIO(IInputObject *iface, BOOL fActivate, MSG *pMsg)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IInputObject(iface);
|
|
|
|
FIXME("stub, %p (%d, %p)\n", This, fActivate, pMsg);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IInputObject_fnHasFocusIO(IInputObject *iface)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IInputObject(iface);
|
|
|
|
FIXME("stub, %p\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IInputObject_fnTranslateAcceleratorIO(IInputObject *iface, MSG *pMsg)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *This = impl_from_IInputObject(iface);
|
|
|
|
FIXME("stub, %p (%p)\n", This, pMsg);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static IInputObjectVtbl vt_IInputObject = {
|
|
|
|
IInputObject_fnQueryInterface,
|
|
|
|
IInputObject_fnAddRef,
|
|
|
|
IInputObject_fnRelease,
|
|
|
|
IInputObject_fnUIActivateIO,
|
|
|
|
IInputObject_fnHasFocusIO,
|
|
|
|
IInputObject_fnTranslateAcceleratorIO
|
|
|
|
};
|
|
|
|
|
2010-08-20 07:45:56 +02:00
|
|
|
HRESULT WINAPI ExplorerBrowser_Constructor(IUnknown *pUnkOuter, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
ExplorerBrowserImpl *eb;
|
|
|
|
HRESULT ret;
|
|
|
|
|
|
|
|
TRACE("%p %s %p\n", pUnkOuter, shdebugstr_guid (riid), ppv);
|
|
|
|
|
|
|
|
if(!ppv)
|
|
|
|
return E_POINTER;
|
|
|
|
if(pUnkOuter)
|
|
|
|
return CLASS_E_NOAGGREGATION;
|
|
|
|
|
|
|
|
eb = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(ExplorerBrowserImpl));
|
|
|
|
eb->ref = 1;
|
2010-12-22 02:20:47 +01:00
|
|
|
eb->IExplorerBrowser_iface.lpVtbl = &vt_IExplorerBrowser;
|
|
|
|
eb->IShellBrowser_iface.lpVtbl = &vt_IShellBrowser;
|
|
|
|
eb->ICommDlgBrowser3_iface.lpVtbl = &vt_ICommDlgBrowser3;
|
|
|
|
eb->IObjectWithSite_iface.lpVtbl = &vt_IObjectWithSite;
|
|
|
|
eb->INameSpaceTreeControlEvents_iface.lpVtbl = &vt_INameSpaceTreeControlEvents;
|
2010-12-23 14:52:30 +01:00
|
|
|
eb->IInputObject_iface.lpVtbl = &vt_IInputObject;
|
2010-08-20 07:45:56 +02:00
|
|
|
|
2010-08-26 13:58:20 +02:00
|
|
|
/* Default settings */
|
|
|
|
eb->navpane.width = 150;
|
|
|
|
eb->navpane.show = TRUE;
|
|
|
|
|
2010-08-24 10:56:19 +02:00
|
|
|
list_init(&eb->event_clients);
|
2010-08-25 15:24:33 +02:00
|
|
|
list_init(&eb->travellog);
|
2010-08-24 10:56:19 +02:00
|
|
|
|
2013-06-01 11:53:19 +02:00
|
|
|
ret = IExplorerBrowser_QueryInterface(&eb->IExplorerBrowser_iface, riid, ppv);
|
|
|
|
IExplorerBrowser_Release(&eb->IExplorerBrowser_iface);
|
2010-08-20 07:45:56 +02:00
|
|
|
|
|
|
|
TRACE("--(%p)\n", ppv);
|
|
|
|
return ret;
|
|
|
|
}
|