1999-07-27 18:20:36 +02:00
|
|
|
/*
|
|
|
|
* Implementation of IShellBrowser for the File Open common dialog
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* Copyright 1999 Francois Boisvert
|
|
|
|
* Copyright 1999, 2000 Juergen Schmied
|
1999-07-27 18:20:36 +02:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-07-27 18:20:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SHBROWSER_H
|
2002-03-10 00:29:33 +01:00
|
|
|
#define SHBROWSER_H
|
1999-07-27 18:20:36 +02:00
|
|
|
|
|
|
|
#include "shlobj.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "commdlg.h"
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Defines and global variables
|
|
|
|
*/
|
2000-11-01 02:50:21 +01:00
|
|
|
#define _ICommDlgBrowser_Offset ((int)(&(((IShellBrowserImpl*)0)->lpVtblCommDlgBrowser)))
|
|
|
|
#define _ICOM_THIS_FromICommDlgBrowser(class, name) class* This = (class*)(((char*)name)-_ICommDlgBrowser_Offset);
|
|
|
|
|
|
|
|
#define _IServiceProvider_Offset ((int)(&(((IShellBrowserImpl*)0)->lpVtblServiceProvider)))
|
|
|
|
#define _ICOM_THIS_FromIServiceProvider(class, name) class* This = (class*)(((char*)name)-_IServiceProvider_Offset);
|
1999-07-27 18:20:36 +02:00
|
|
|
|
1999-09-03 18:46:41 +02:00
|
|
|
/* dialog internal property */
|
|
|
|
|
|
|
|
#define FODPROP_SAVEDLG 0x0001 /* File dialog is a Save file dialog */
|
2002-06-01 01:06:46 +02:00
|
|
|
#define FODPROP_USEVIEW 0x0002 /* Indicates the user selection must be taken
|
1999-09-03 18:46:41 +02:00
|
|
|
from the IShellView */
|
|
|
|
|
1999-07-27 18:20:36 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* Data structure
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2000-02-20 19:54:04 +01:00
|
|
|
LPOPENFILENAMEA ofnInfos;
|
2002-08-17 01:26:22 +02:00
|
|
|
BOOL unicode;
|
|
|
|
LPWSTR initdir;
|
|
|
|
LPWSTR filename;
|
|
|
|
LPCWSTR title;
|
|
|
|
LPCWSTR defext;
|
|
|
|
LPCWSTR filter;
|
|
|
|
LPCWSTR customfilter;
|
1999-07-27 18:20:36 +02:00
|
|
|
struct {
|
2002-06-01 01:06:46 +02:00
|
|
|
IShellBrowser *FOIShellBrowser;
|
1999-07-27 18:20:36 +02:00
|
|
|
IShellFolder *FOIShellFolder;
|
|
|
|
IShellView *FOIShellView;
|
2000-06-02 21:36:53 +02:00
|
|
|
IDataObject *FOIDataObject;
|
1999-07-27 18:20:36 +02:00
|
|
|
} Shell;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
HWND hwndOwner;
|
|
|
|
HWND hwndView;
|
|
|
|
RECT rectView;
|
|
|
|
FOLDERSETTINGS folderSettings;
|
|
|
|
LPITEMIDLIST pidlAbsCurrent;
|
|
|
|
LPWSTR lpstrCurrentFilter;
|
|
|
|
} ShellInfos;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
HWND hwndFileTypeCB;
|
|
|
|
HWND hwndLookInCB;
|
|
|
|
HWND hwndFileName;
|
1999-11-07 23:41:05 +01:00
|
|
|
HWND hwndTB;
|
1999-11-07 06:39:24 +01:00
|
|
|
HWND hwndCustomDlg;
|
1999-09-03 18:46:41 +02:00
|
|
|
DWORD dwDlgProp;
|
1999-07-27 18:20:36 +02:00
|
|
|
} DlgInfos;
|
|
|
|
|
2000-11-01 02:50:21 +01:00
|
|
|
struct {
|
|
|
|
UINT fileokstring;
|
|
|
|
UINT lbselchstring;
|
|
|
|
UINT helpmsgstring;
|
|
|
|
UINT sharevistring;
|
|
|
|
} HookMsg;
|
|
|
|
|
1999-07-27 18:20:36 +02:00
|
|
|
} FileOpenDlgInfos;
|
|
|
|
|
1999-11-12 02:02:27 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* Control ID's
|
|
|
|
*/
|
|
|
|
#define IDS_ABOUTBOX 101
|
|
|
|
#define IDS_DOCUMENTFOLDERS 102
|
|
|
|
#define IDS_PERSONAL 103
|
|
|
|
#define IDS_FAVORITES 104
|
|
|
|
#define IDS_PATH 105
|
|
|
|
#define IDS_DESKTOP 106
|
|
|
|
|
|
|
|
#define IDS_FONTS 108
|
|
|
|
#define IDS_MYCOMPUTER 110
|
|
|
|
#define IDS_SYSTEMFOLDERS 112
|
|
|
|
#define IDS_LOCALHARDRIVES 113
|
|
|
|
#define IDS_FILENOTFOUND 114
|
|
|
|
#define IDS_VERIFYFILE 115
|
|
|
|
#define IDS_CREATEFILE 116
|
1999-12-04 05:03:01 +01:00
|
|
|
#define IDS_CREATEFOLDER_DENIED 117
|
|
|
|
#define IDS_FILEOPEN_CAPTION 118
|
2000-06-02 21:36:53 +02:00
|
|
|
#define IDL_OVERWRITEFILE 119
|
|
|
|
#define IDS_INVALID_FILENAME_TITLE 120
|
|
|
|
#define IDS_INVALID_FILENAME 121
|
|
|
|
#define IDS_PATHNOTEXISTING 122
|
|
|
|
#define IDS_FILENOTEXISTING 123
|
1999-11-12 02:02:27 +01:00
|
|
|
|
2000-02-20 19:54:04 +01:00
|
|
|
/* File Dialog Tooltips string IDs */
|
|
|
|
|
|
|
|
#define IDS_UPFOLDER 150
|
|
|
|
#define IDS_NEWFOLDER 151
|
|
|
|
#define IDS_LISTVIEW 152
|
|
|
|
#define IDS_REPORTVIEW 153
|
2000-06-24 15:39:53 +02:00
|
|
|
#define IDS_TODESKTOP 154
|
2000-02-20 19:54:04 +01:00
|
|
|
|
1999-11-12 02:02:27 +01:00
|
|
|
#define IDC_OPENREADONLY chx1
|
|
|
|
|
|
|
|
#define IDC_TOOLBARSTATIC stc1
|
|
|
|
#define IDC_FILETYPESTATIC stc2
|
|
|
|
#define IDC_FILENAMESTATIC stc3
|
|
|
|
#define IDC_LOOKINSTATIC stc4
|
|
|
|
|
|
|
|
#define IDC_SHELLSTATIC lst1
|
|
|
|
|
|
|
|
#define IDC_FILETYPE cmb1
|
|
|
|
#define IDC_LOOKIN cmb2
|
|
|
|
|
|
|
|
#define IDC_FILENAME edt1
|
|
|
|
|
|
|
|
#define IDC_TOOLBAR ctl1
|
|
|
|
|
1999-07-27 18:20:36 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* Prototypes for the methods of the IShellBrowserImpl class
|
|
|
|
*/
|
|
|
|
/* Constructor */
|
|
|
|
IShellBrowser * IShellBrowserImpl_Construct(HWND hwndOwner);
|
|
|
|
|
|
|
|
|
2000-06-02 21:36:53 +02:00
|
|
|
LPITEMIDLIST GetPidlFromDataObject ( IDataObject *doSelected, UINT nPidlIndex);
|
|
|
|
UINT GetNumSelected(IDataObject *doSelected);
|
1999-09-03 18:46:41 +02:00
|
|
|
|
2000-06-02 21:36:53 +02:00
|
|
|
/* pidl handling */
|
|
|
|
BOOL IsPidlFolder (LPSHELLFOLDER psf, LPITEMIDLIST pidl);
|
|
|
|
|
|
|
|
/* Functions used by the EDIT box */
|
|
|
|
void FILEDLG95_FILENAME_FillFromSelection (HWND hwnd);
|
2002-08-17 01:26:22 +02:00
|
|
|
int FILEDLG95_FILENAME_GetFileNames (HWND hwnd, LPWSTR * lpstrFileList, UINT * sizeUsed);
|
1999-09-03 18:46:41 +02:00
|
|
|
|
1999-07-27 18:20:36 +02:00
|
|
|
#endif /*SHBROWSER_H*/
|