X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f516d986371b7643efda569d64ae19e75d221411..ce7208d49d5ce2ca1dc0b3b83f14f1d04f29c4bf:/src/msw/utilsgui.cpp diff --git a/src/msw/utilsgui.cpp b/src/msw/utilsgui.cpp index 7926bdb330..d1acea6ad5 100644 --- a/src/msw/utilsgui.cpp +++ b/src/msw/utilsgui.cpp @@ -30,6 +30,8 @@ #include "wx/utils.h" #endif //WX_PRECOMP +#include "wx/dynlib.h" + #include "wx/msw/private.h" // includes // ============================================================================ @@ -452,3 +454,50 @@ void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2) } +// ---------------------------------------------------------------------------- +// Shell API wrappers +// ---------------------------------------------------------------------------- + +extern bool wxEnableFileNameAutoComplete(HWND hwnd) +{ +#if wxUSE_DYNLIB_CLASS + typedef HRESULT (WINAPI *SHAutoComplete_t)(HWND, DWORD); + + static SHAutoComplete_t s_pfnSHAutoComplete = NULL; + static bool s_initialized = false; + + if ( !s_initialized ) + { + s_initialized = true; + + wxLogNull nolog; + wxDynamicLibrary dll(_T("shlwapi.dll")); + if ( dll.IsLoaded() ) + { + s_pfnSHAutoComplete = + (SHAutoComplete_t)dll.GetSymbol(_T("SHAutoComplete")); + if ( s_pfnSHAutoComplete ) + { + // won't be unloaded until the process termination, no big deal + dll.Detach(); + } + } + } + + if ( !s_pfnSHAutoComplete ) + return false; + + HRESULT hr = s_pfnSHAutoComplete(hwnd, 0x10 /* SHACF_FILESYS_ONLY */); + if ( FAILED(hr) ) + { + wxLogApiError(_T("SHAutoComplete"), hr); + return false; + } + + return true; +#else + wxUnusedVar(hwnd); + return false; +#endif // wxUSE_DYNLIB_CLASS/!wxUSE_DYNLIB_CLASS +} +