]> git.saurik.com Git - wxWidgets.git/blame - src/msw/volume.cpp
fill in the fields of wxListItem in a wxListEvent before handling the event (closes...
[wxWidgets.git] / src / msw / volume.cpp
CommitLineData
7183fd72
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: src/msw/volume.cpp
3// Purpose: wxFSVolume - encapsulates system volume information
4// Author: George Policello
5// Modified by:
6// Created: 28 Jan 02
7// RCS-ID: $Id$
8// Copyright: (c) 2002 George Policello
65571936 9// Licence: wxWindows licence
7183fd72
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
7183fd72
VZ
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23 #pragma hdrstop
24#endif
25
05815ab3
VZ
26#if wxUSE_FSVOLUME
27
7212d155
PC
28#include "wx/volume.h"
29
7183fd72 30#ifndef WX_PRECOMP
df5168c4
MB
31 #if wxUSE_GUI
32 #include "wx/icon.h"
33 #endif
05815ab3 34 #include "wx/intl.h"
df69528b 35 #include "wx/hashmap.h"
a368dde5 36 #include "wx/filefn.h"
7183fd72
VZ
37#endif // WX_PRECOMP
38
39#include "wx/dir.h"
7183fd72
VZ
40#include "wx/dynlib.h"
41#include "wx/arrimpl.cpp"
42
eaeeb91e 43#include <shellapi.h>
a6c7a0f8 44#include <shlobj.h>
7212d155 45#include "wx/msw/missing.h"
eaeeb91e 46
ec67cff1 47#if wxUSE_BASE
7cfdeaad 48
7183fd72
VZ
49//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
50// Dynamic library function defs.
51//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
52
64c288fa 53#if wxUSE_DYNLIB_CLASS
7183fd72 54static wxDynamicLibrary s_mprLib;
64c288fa 55#endif
7183fd72
VZ
56
57typedef DWORD (WINAPI* WNetOpenEnumPtr)(DWORD, DWORD, DWORD, LPNETRESOURCE, LPHANDLE);
58typedef DWORD (WINAPI* WNetEnumResourcePtr)(HANDLE, LPDWORD, LPVOID, LPDWORD);
59typedef DWORD (WINAPI* WNetCloseEnumPtr)(HANDLE);
60
61static WNetOpenEnumPtr s_pWNetOpenEnum;
62static WNetEnumResourcePtr s_pWNetEnumResource;
63static WNetCloseEnumPtr s_pWNetCloseEnum;
64
65//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
66// Globals/Statics
67//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
68static long s_cancelSearch = FALSE;
69
17ebae65 70struct FileInfo
7183fd72
VZ
71{
72 FileInfo(unsigned flag=0, wxFSVolumeKind type=wxFS_VOL_OTHER) :
73 m_flags(flag), m_type(type) {}
51fdd3da
VZ
74
75 FileInfo(const FileInfo& other) { *this = other; }
76 FileInfo& operator=(const FileInfo& other)
77 {
78 m_flags = other.m_flags;
79 m_type = other.m_type;
80 return *this;
81 }
82
7183fd72
VZ
83 unsigned m_flags;
84 wxFSVolumeKind m_type;
85};
86WX_DECLARE_STRING_HASH_MAP(FileInfo, FileInfoMap);
17ebae65
MB
87// Cygwin bug (?) destructor for global s_fileInfo is called twice...
88static FileInfoMap& GetFileInfoMap()
89{
90 static FileInfoMap s_fileInfo(25);
91
92 return s_fileInfo;
93}
94#define s_fileInfo (GetFileInfoMap())
7183fd72 95
7183fd72
VZ
96//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
97// Local helper functions.
98//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
99
100//=============================================================================
101// Function: GetBasicFlags
102// Purpose: Set basic flags, primarily wxFS_VOL_REMOTE and wxFS_VOL_REMOVABLE.
103// Notes: - Local and mapped drives are mounted by definition. We have no
104// way to determine mounted status of network drives, so assume that
105// all drives are mounted, and let the caller decide otherwise.
106// - Other flags are 'best guess' from type of drive. The system will
107// not report the file attributes with any degree of accuracy.
108//=============================================================================
4d90b8de 109static unsigned GetBasicFlags(const wxChar* filename)
7183fd72
VZ
110{
111 unsigned flags = wxFS_VOL_MOUNTED;
112
113 //----------------------------------
114 // 'Best Guess' based on drive type.
115 //----------------------------------
116 wxFSVolumeKind type;
117 switch(GetDriveType(filename))
118 {
119 case DRIVE_FIXED:
120 type = wxFS_VOL_DISK;
121 break;
122
123 case DRIVE_REMOVABLE:
124 flags |= wxFS_VOL_REMOVABLE;
125 type = wxFS_VOL_FLOPPY;
126 break;
127
128 case DRIVE_CDROM:
129 flags |= wxFS_VOL_REMOVABLE | wxFS_VOL_READONLY;
130 type = wxFS_VOL_CDROM;
131 break;
132
133 case DRIVE_REMOTE:
134 flags |= wxFS_VOL_REMOTE;
135 type = wxFS_VOL_NETWORK;
136 break;
137
138 case DRIVE_NO_ROOT_DIR:
139 flags &= ~wxFS_VOL_MOUNTED;
140 type = wxFS_VOL_OTHER;
141 break;
142
143 default:
144 type = wxFS_VOL_OTHER;
145 break;
146 }
147
148 //-----------------------------------------------------------------------
90e572f1 149 // The following most likely will not modify anything not set above,
7183fd72
VZ
150 // and will not work at all for network shares or empty CD ROM drives.
151 // But it is a good check if the Win API ever gets better about reporting
152 // this information.
153 //-----------------------------------------------------------------------
154 SHFILEINFO fi;
ab63e6ae 155 long rc = SHGetFileInfo(filename, 0, &fi, sizeof(fi), SHGFI_ATTRIBUTES);
7183fd72
VZ
156 if (!rc)
157 {
ab63e6ae
VZ
158 // this error is not fatal, so don't show a message to the user about
159 // it, otherwise it would appear every time a generic directory picker
160 // dialog is used and there is a connected network drive
161 wxLogLastError(_T("SHGetFileInfo"));
7183fd72
VZ
162 }
163 else
164 {
165 if (fi.dwAttributes & SFGAO_READONLY)
166 flags |= wxFS_VOL_READONLY;
167 if (fi.dwAttributes & SFGAO_REMOVABLE)
168 flags |= wxFS_VOL_REMOVABLE;
169 }
170
171 //------------------
172 // Flags are cached.
173 //------------------
174 s_fileInfo[filename] = FileInfo(flags, type);
175
176 return flags;
177} // GetBasicFlags
178
179//=============================================================================
180// Function: FilteredAdd
181// Purpose: Add a file to the list if it meets the filter requirement.
182// Notes: - See GetBasicFlags for remarks about the Mounted flag.
183//=============================================================================
27d2dbbc 184static bool FilteredAdd(wxArrayString& list, const wxChar* filename,
4d90b8de 185 unsigned flagsSet, unsigned flagsUnset)
7183fd72 186{
27d2dbbc 187 bool accept = true;
7183fd72
VZ
188 unsigned flags = GetBasicFlags(filename);
189
190 if (flagsSet & wxFS_VOL_MOUNTED && !(flags & wxFS_VOL_MOUNTED))
27d2dbbc 191 accept = false;
7183fd72 192 else if (flagsUnset & wxFS_VOL_MOUNTED && (flags & wxFS_VOL_MOUNTED))
27d2dbbc 193 accept = false;
7183fd72 194 else if (flagsSet & wxFS_VOL_REMOVABLE && !(flags & wxFS_VOL_REMOVABLE))
27d2dbbc 195 accept = false;
7183fd72 196 else if (flagsUnset & wxFS_VOL_REMOVABLE && (flags & wxFS_VOL_REMOVABLE))
27d2dbbc 197 accept = false;
7183fd72 198 else if (flagsSet & wxFS_VOL_READONLY && !(flags & wxFS_VOL_READONLY))
27d2dbbc 199 accept = false;
7183fd72 200 else if (flagsUnset & wxFS_VOL_READONLY && (flags & wxFS_VOL_READONLY))
27d2dbbc 201 accept = false;
7183fd72 202 else if (flagsSet & wxFS_VOL_REMOTE && !(flags & wxFS_VOL_REMOTE))
27d2dbbc 203 accept = false;
7183fd72 204 else if (flagsUnset & wxFS_VOL_REMOTE && (flags & wxFS_VOL_REMOTE))
27d2dbbc 205 accept = false;
7183fd72
VZ
206
207 // Add to the list if passed the filter.
208 if (accept)
209 list.Add(filename);
210
211 return accept;
212} // FilteredAdd
213
214//=============================================================================
215// Function: BuildListFromNN
216// Purpose: Append or remove items from the list
217// Notes: - There is no way to find all disconnected NN items, or even to find
218// all items while determining which are connected and not. So this
219// function will find either all items or connected items.
220//=============================================================================
27d2dbbc 221static void BuildListFromNN(wxArrayString& list, NETRESOURCE* pResSrc,
4d90b8de 222 unsigned flagsSet, unsigned flagsUnset)
7183fd72
VZ
223{
224 HANDLE hEnum;
225 int rc;
226
227 //-----------------------------------------------
228 // Scope may be all drives or all mounted drives.
229 //-----------------------------------------------
230 unsigned scope = RESOURCE_GLOBALNET;
231 if (flagsSet & wxFS_VOL_MOUNTED)
232 scope = RESOURCE_CONNECTED;
233
234 //----------------------------------------------------------------------
235 // Enumerate all items, adding only non-containers (ie. network shares).
236 // Containers cause a recursive call to this function for their own
237 // enumeration.
238 //----------------------------------------------------------------------
239 if (rc = s_pWNetOpenEnum(scope, RESOURCETYPE_DISK, 0, pResSrc, &hEnum), rc == NO_ERROR)
240 {
4aebbc59
MB
241 DWORD count = 1;
242 DWORD size = 256;
7183fd72
VZ
243 NETRESOURCE* pRes = (NETRESOURCE*)malloc(size);
244 memset(pRes, 0, sizeof(NETRESOURCE));
245 while (rc = s_pWNetEnumResource(hEnum, &count, pRes, &size), rc == NO_ERROR || rc == ERROR_MORE_DATA)
246 {
247 if (s_cancelSearch)
248 break;
249
250 if (rc == ERROR_MORE_DATA)
251 {
252 pRes = (NETRESOURCE*)realloc(pRes, size);
253 count = 1;
254 }
255 else if (count == 1)
256 {
257 // Enumerate the container.
258 if (pRes->dwUsage & RESOURCEUSAGE_CONTAINER)
259 {
260 BuildListFromNN(list, pRes, flagsSet, flagsUnset);
261 }
262
263 // Add the network share.
264 else
265 {
266 wxString filename(pRes->lpRemoteName);
267
1d243ee0
VZ
268 // if the drive is unavailable, FilteredAdd() can hang for
269 // a long time and, moreover, its failure appears to be not
270 // cached so this will happen every time we use it, so try
271 // a much quicker wxDirExists() test (which still hangs but
272 // for much shorter time) for locally mapped drives first
273 // to try to avoid this
274 if ( pRes->lpLocalName &&
275 *pRes->lpLocalName &&
276 !wxDirExists(pRes->lpLocalName) )
277 continue;
278
df69528b 279 if (!filename.empty())
7183fd72
VZ
280 {
281 if (filename.Last() != '\\')
282 filename.Append('\\');
283
284 // The filter function will not know mounted from unmounted, and neither do we unless
285 // we are iterating using RESOURCE_CONNECTED, in which case they all are mounted.
286 // Volumes on disconnected servers, however, will correctly show as unmounted.
17a691c1 287 FilteredAdd(list, filename.wx_str(), flagsSet, flagsUnset&~wxFS_VOL_MOUNTED);
7183fd72
VZ
288 if (scope == RESOURCE_GLOBALNET)
289 s_fileInfo[filename].m_flags &= ~wxFS_VOL_MOUNTED;
290 }
291 }
292 }
293 else if (count == 0)
294 break;
295 }
296 free(pRes);
297 s_pWNetCloseEnum(hEnum);
298 }
299} // BuildListFromNN
300
301//=============================================================================
302// Function: CompareFcn
303// Purpose: Used to sort the NN list alphabetically, case insensitive.
304//=============================================================================
99f161bd 305static int CompareFcn(const wxString& first, const wxString& second)
7183fd72 306{
99f161bd 307 return wxStricmp(first.c_str(), second.c_str());
7183fd72
VZ
308} // CompareFcn
309
310//=============================================================================
311// Function: BuildRemoteList
312// Purpose: Append Network Neighborhood items to the list.
313// Notes: - Mounted gets transalated into Connected. FilteredAdd is told
314// to ignore the Mounted flag since we need to handle it in a weird
315// way manually.
316// - The resulting list is sorted alphabetically.
317//=============================================================================
27d2dbbc 318static bool BuildRemoteList(wxArrayString& list, NETRESOURCE* pResSrc,
4d90b8de 319 unsigned flagsSet, unsigned flagsUnset)
7183fd72
VZ
320{
321 // NN query depends on dynamically loaded library.
322 if (!s_pWNetOpenEnum || !s_pWNetEnumResource || !s_pWNetCloseEnum)
323 {
324 wxLogError(_("Failed to load mpr.dll."));
27d2dbbc 325 return false;
7183fd72
VZ
326 }
327
328 // Don't waste time doing the work if the flags conflict.
329 if (flagsSet & wxFS_VOL_MOUNTED && flagsUnset & wxFS_VOL_MOUNTED)
27d2dbbc 330 return false;
7183fd72
VZ
331
332 //----------------------------------------------
333 // Generate the list according to the flags set.
334 //----------------------------------------------
335 BuildListFromNN(list, pResSrc, flagsSet, flagsUnset);
336 list.Sort(CompareFcn);
337
338 //-------------------------------------------------------------------------
339 // If mounted only is requested, then we only need one simple pass.
340 // Otherwise, we need to build a list of all NN volumes and then apply the
341 // list of mounted drives to it.
342 //-------------------------------------------------------------------------
343 if (!(flagsSet & wxFS_VOL_MOUNTED))
344 {
345 // generate.
346 wxArrayString mounted;
347 BuildListFromNN(mounted, pResSrc, flagsSet | wxFS_VOL_MOUNTED, flagsUnset & ~wxFS_VOL_MOUNTED);
348 mounted.Sort(CompareFcn);
349
350 // apply list from bottom to top to preserve indexes if removing items.
4a559093
WS
351 ssize_t iList = list.GetCount()-1;
352 for (ssize_t iMounted = mounted.GetCount()-1; iMounted >= 0 && iList >= 0; iMounted--)
7183fd72
VZ
353 {
354 int compare;
355 wxString all(list[iList]);
356 wxString mount(mounted[iMounted]);
357
27d2dbbc 358 while (compare =
4d90b8de
VS
359 wxStricmp(list[iList].c_str(), mounted[iMounted].c_str()),
360 compare > 0 && iList >= 0)
7183fd72
VZ
361 {
362 iList--;
363 all = list[iList];
364 }
365
366
367 if (compare == 0)
368 {
369 // Found the element. Remove it or mark it mounted.
370 if (flagsUnset & wxFS_VOL_MOUNTED)
ba8c1601 371 list.RemoveAt(iList);
7183fd72
VZ
372 else
373 s_fileInfo[list[iList]].m_flags |= wxFS_VOL_MOUNTED;
374
375 }
376
377 iList--;
378 }
379 }
380
27d2dbbc 381 return true;
7183fd72
VZ
382} // BuildRemoteList
383
384//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
385// wxFSVolume
386//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
387
388//=============================================================================
389// Function: GetVolumes
390// Purpose: Generate and return a list of all volumes (drives) available.
391// Notes:
392//=============================================================================
e2478fde 393wxArrayString wxFSVolumeBase::GetVolumes(int flagsSet, int flagsUnset)
7183fd72 394{
27d2dbbc 395 ::InterlockedExchange(&s_cancelSearch, FALSE); // reset
7183fd72 396
64c288fa 397#if wxUSE_DYNLIB_CLASS
7183fd72
VZ
398 if (!s_mprLib.IsLoaded() && s_mprLib.Load(_T("mpr.dll")))
399 {
400#ifdef UNICODE
401 s_pWNetOpenEnum = (WNetOpenEnumPtr)s_mprLib.GetSymbol(_T("WNetOpenEnumW"));
2b5f62a0 402 s_pWNetEnumResource = (WNetEnumResourcePtr)s_mprLib.GetSymbol(_T("WNetEnumResourceW"));
7183fd72
VZ
403#else
404 s_pWNetOpenEnum = (WNetOpenEnumPtr)s_mprLib.GetSymbol(_T("WNetOpenEnumA"));
405 s_pWNetEnumResource = (WNetEnumResourcePtr)s_mprLib.GetSymbol(_T("WNetEnumResourceA"));
406#endif
407 s_pWNetCloseEnum = (WNetCloseEnumPtr)s_mprLib.GetSymbol(_T("WNetCloseEnum"));
408 }
64c288fa 409#endif
7183fd72
VZ
410
411 wxArrayString list;
412
413 //-------------------------------
414 // Local and mapped drives first.
415 //-------------------------------
416 // Allocate the required space for the API call.
95dc6a2b 417 const DWORD chars = GetLogicalDriveStrings(0, NULL);
7183fd72
VZ
418 TCHAR* buf = new TCHAR[chars+1];
419
420 // Get the list of drives.
999836aa 421 GetLogicalDriveStrings(chars, buf);
7183fd72
VZ
422
423 // Parse the list into an array, applying appropriate filters.
424 TCHAR *pVol;
425 pVol = buf;
426 while (*pVol)
427 {
428 FilteredAdd(list, pVol, flagsSet, flagsUnset);
67fade33 429 pVol = pVol + wxStrlen(pVol) + 1;
7183fd72
VZ
430 }
431
432 // Cleanup.
433 delete[] buf;
434
435 //---------------------------
436 // Network Neighborhood next.
437 //---------------------------
438
439 // not exclude remote and not removable
440 if (!(flagsUnset & wxFS_VOL_REMOTE) &&
441 !(flagsSet & wxFS_VOL_REMOVABLE)
442 )
443 {
444 // The returned list will be sorted alphabetically. We don't pass
445 // our in since we don't want to change to order of the local drives.
446 wxArrayString nn;
447 if (BuildRemoteList(nn, 0, flagsSet, flagsUnset))
448 {
89c98653 449 for (size_t idx = 0; idx < nn.GetCount(); idx++)
7183fd72
VZ
450 list.Add(nn[idx]);
451 }
452 }
453
454 return list;
455} // GetVolumes
456
457//=============================================================================
458// Function: CancelSearch
459// Purpose: Instruct an active search to stop.
460// Notes: - This will only sensibly be called by a thread other than the one
461// performing the search. This is the only thread-safe function
462// provided by the class.
463//=============================================================================
e2478fde 464void wxFSVolumeBase::CancelSearch()
7183fd72 465{
27d2dbbc 466 ::InterlockedExchange(&s_cancelSearch, TRUE);
7183fd72
VZ
467} // CancelSearch
468
469//=============================================================================
470// Function: constructor
471// Purpose: default constructor
472//=============================================================================
e2478fde 473wxFSVolumeBase::wxFSVolumeBase()
7183fd72 474{
27d2dbbc 475 m_isOk = false;
7183fd72
VZ
476} // wxVolume
477
478//=============================================================================
479// Function: constructor
480// Purpose: constructor that calls Create
481//=============================================================================
e2478fde 482wxFSVolumeBase::wxFSVolumeBase(const wxString& name)
7183fd72
VZ
483{
484 Create(name);
485} // wxVolume
486
487//=============================================================================
488// Function: Create
489// Purpose: Finds, logs in, etc. to the request volume.
490//=============================================================================
e2478fde 491bool wxFSVolumeBase::Create(const wxString& name)
7183fd72
VZ
492{
493 // assume fail.
27d2dbbc 494 m_isOk = false;
7183fd72
VZ
495
496 // supplied.
497 m_volName = name;
498
499 // Display name.
500 SHFILEINFO fi;
17a691c1 501 long rc = SHGetFileInfo(m_volName.wx_str(), 0, &fi, sizeof(fi), SHGFI_DISPLAYNAME);
7183fd72
VZ
502 if (!rc)
503 {
4d90b8de 504 wxLogError(_("Cannot read typename from '%s'!"), m_volName.c_str());
7183fd72
VZ
505 return m_isOk;
506 }
507 m_dispName = fi.szDisplayName;
508
7183fd72 509 // all tests passed.
27d2dbbc 510 return m_isOk = true;
7183fd72
VZ
511} // Create
512
513//=============================================================================
514// Function: IsOk
27d2dbbc 515// Purpose: returns true if the volume is legal.
7183fd72
VZ
516// Notes: For fixed disks, it must exist. For removable disks, it must also
517// be present. For Network Shares, it must also be logged in, etc.
518//=============================================================================
e2478fde 519bool wxFSVolumeBase::IsOk() const
7183fd72
VZ
520{
521 return m_isOk;
522} // IsOk
523
524//=============================================================================
525// Function: GetKind
526// Purpose: Return the type of the volume.
527//=============================================================================
e2478fde 528wxFSVolumeKind wxFSVolumeBase::GetKind() const
7183fd72
VZ
529{
530 if (!m_isOk)
531 return wxFS_VOL_OTHER;
532
533 FileInfoMap::iterator itr = s_fileInfo.find(m_volName);
534 if (itr == s_fileInfo.end())
535 return wxFS_VOL_OTHER;
536
537 return itr->second.m_type;
538}
539
540//=============================================================================
541// Function: GetFlags
542// Purpose: Return the caches flags for this volume.
543// Notes: - Returns -1 if no flags were cached.
544//=============================================================================
e2478fde 545int wxFSVolumeBase::GetFlags() const
7183fd72
VZ
546{
547 if (!m_isOk)
548 return -1;
549
550 FileInfoMap::iterator itr = s_fileInfo.find(m_volName);
551 if (itr == s_fileInfo.end())
552 return -1;
553
554 return itr->second.m_flags;
555} // GetFlags
556
ec67cff1 557#endif // wxUSE_BASE
e2478fde
VZ
558
559// ============================================================================
560// wxFSVolume
561// ============================================================================
562
0e7fa3a6 563#if wxUSE_GUI
7183fd72 564
e2478fde
VZ
565void wxFSVolume::InitIcons()
566{
567 m_icons.Alloc(wxFS_VOL_ICO_MAX);
568 wxIcon null;
569 for (int idx = 0; idx < wxFS_VOL_ICO_MAX; idx++)
570 m_icons.Add(null);
571}
572
7183fd72
VZ
573//=============================================================================
574// Function: GetIcon
575// Purpose: return the requested icon.
576//=============================================================================
e2478fde 577
7183fd72
VZ
578wxIcon wxFSVolume::GetIcon(wxFSIconType type) const
579{
e2478fde
VZ
580 wxCHECK_MSG( type >= 0 && (size_t)type < m_icons.GetCount(), wxNullIcon,
581 _T("wxFSIconType::GetIcon(): invalid icon index") );
7183fd72
VZ
582
583 // Load on demand.
584 if (m_icons[type].IsNull())
585 {
e2478fde 586 UINT flags = SHGFI_ICON;
7183fd72
VZ
587 switch (type)
588 {
589 case wxFS_VOL_ICO_SMALL:
e2478fde 590 flags |= SHGFI_SMALLICON;
7183fd72
VZ
591 break;
592
593 case wxFS_VOL_ICO_LARGE:
e2478fde 594 flags |= SHGFI_SHELLICONSIZE;
7183fd72
VZ
595 break;
596
597 case wxFS_VOL_ICO_SEL_SMALL:
e2478fde 598 flags |= SHGFI_SMALLICON | SHGFI_OPENICON;
7183fd72
VZ
599 break;
600
601 case wxFS_VOL_ICO_SEL_LARGE:
e2478fde 602 flags |= SHGFI_SHELLICONSIZE | SHGFI_OPENICON;
7183fd72 603 break;
27d2dbbc 604
4d90b8de
VS
605 case wxFS_VOL_ICO_MAX:
606 wxFAIL_MSG(_T("wxFS_VOL_ICO_MAX is not valid icon type"));
607 break;
7183fd72
VZ
608 }
609
610 SHFILEINFO fi;
17a691c1 611 long rc = SHGetFileInfo(m_volName.wx_str(), 0, &fi, sizeof(fi), flags);
7183fd72
VZ
612 m_icons[type].SetHICON((WXHICON)fi.hIcon);
613 if (!rc || !fi.hIcon)
4d90b8de 614 wxLogError(_("Cannot load icon from '%s'."), m_volName.c_str());
7183fd72
VZ
615 }
616
617 return m_icons[type];
618} // GetIcon
619
620#endif // wxUSE_GUI
621
05815ab3 622#endif // wxUSE_FSVOLUME