]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/mslu.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Fixes for bugs in MSLU
4 // Author: Vaclav Slavik
8 // Copyright: (c) 2002 Vaclav Slavik
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
28 #if wxUSE_UNICODE_MSLU
30 //------------------------------------------------------------------------
32 // NB: MSLU only covers Win32 API, it doesn't provide Unicode implementation of
33 // libc functions. Unfortunately, some of MSVCRT wchar_t functions
34 // (e.g. _wopen) don't work on Windows 9x, so we have to workaround it
35 // by calling the char version. We still want to use wchar_t version on
36 // NT/2000/XP, though, because they allow for Unicode file names.
38 // Moreover, there are bugs in unicows.dll, of course. We have to
39 // workaround them, too.
41 //------------------------------------------------------------------------
43 #include "wx/msw/private.h"
44 #include "wx/msw/mslu.h"
54 // Undef redirection macros defined in wx/msw/mslu.h:
56 #undef GetOpenFileNameW
57 #undef GetSaveFileNameW
59 //------------------------------------------------------------------------
60 // Wrongly implemented functions from unicows.dll
61 //------------------------------------------------------------------------
65 WXDLLIMPEXP_BASE
int wxMSLU_DrawStateW(WXHDC dc
, WXHBRUSH br
,
67 WXLPARAM lData
, WXWPARAM wData
,
68 int x
, int y
, int cx
, int cy
,
71 // VS: There's yet another bug in MSLU: DrawStateW behaves like if it was
72 // expecting char*, not wchar_t* input. We have to use DrawStateA
75 if ( wxUsingUnicowsDll() )
77 return DrawStateA((HDC
)dc
, (HBRUSH
)br
, (DRAWSTATEPROC
)outputFunc
,
79 wxConvLocal
.cWX2MB((const wxChar
*)lData
),
80 wData
, x
, y
, cx
, cy
, flags
);
84 return DrawStateW((HDC
)dc
, (HBRUSH
)br
, (DRAWSTATEPROC
)outputFunc
,
85 lData
, wData
, x
, y
, cx
, cy
, flags
);
89 static void wxFixOPENFILENAME(LPOPENFILENAME ofn
)
92 // VS: there's a bug in unicows.dll - when multiple files are selected,
93 // of.nFileOffset doesn't point to the first filename but rather to
94 // the last component of directory name. This bug is known to MSLU
95 // developers, but they are not going to fix it: "this is a true
96 // limitation, that we have decided to live with" and "working
97 // harder on this case just did not seem worth the effort"...
99 // Our only option is to try to fix it ourselves:
101 if ( (ofn
->Flags
& OFN_ALLOWMULTISELECT
) &&
102 ofn
->lpstrFile
[ofn
->nFileOffset
-1] != wxT('\0') )
104 if ( wxDirExists(ofn
->lpstrFile
) )
106 // 1st component is dir => multiple files selected
107 ofn
->nFileOffset
= wxStrlen(ofn
->lpstrFile
)+1;
113 WXDLLIMPEXP_BASE
int wxMSLU_GetOpenFileNameW(void *ofn
)
115 int ret
= GetOpenFileName((LPOPENFILENAME
)ofn
);
116 if ( wxUsingUnicowsDll() && ret
!= 0 )
117 wxFixOPENFILENAME((LPOPENFILENAME
)ofn
);
121 WXDLLIMPEXP_BASE
int wxMSLU_GetSaveFileNameW(void *ofn
)
123 int ret
= GetSaveFileName((LPOPENFILENAME
)ofn
);
124 if ( wxUsingUnicowsDll() && ret
!= 0 )
125 wxFixOPENFILENAME((LPOPENFILENAME
)ofn
);
131 //------------------------------------------------------------------------
132 // Missing libc file manipulation functions in Win9x
133 //------------------------------------------------------------------------
137 WXDLLIMPEXP_BASE
int wxMSLU__trename(const wxChar
*oldname
,
138 const wxChar
*newname
)
140 if ( wxUsingUnicowsDll() )
141 return rename(wxConvFile
.cWX2MB(oldname
), wxConvFile
.cWX2MB(newname
));
143 return _trename(oldname
, newname
);
146 WXDLLIMPEXP_BASE
int wxMSLU__tremove(const wxChar
*name
)
148 if ( wxUsingUnicowsDll() )
149 return remove(wxConvFile
.cWX2MB(name
));
151 return _tremove(name
);
154 #if defined( __VISUALC__ ) \
155 || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
156 || ( defined(__MWERKS__) && defined(__WXMSW__) ) \
157 || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) )
159 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wxChar
*name
, int flags
, int mode
)
161 if ( wxUsingUnicowsDll() )
163 return open(wxConvFile
.cWX2MB(name
), flags
, mode
);
165 return _open(wxConvFile
.cWX2MB(name
), flags
, mode
);
168 return _wopen(name
, flags
, mode
);
171 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wxChar
*name
, int mode
)
173 if ( wxUsingUnicowsDll() )
174 return _access(wxConvFile
.cWX2MB(name
), mode
);
176 return _waccess(name
, mode
);
179 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wxChar
*name
)
181 if ( wxUsingUnicowsDll() )
182 return _mkdir(wxConvFile
.cWX2MB(name
));
184 return _wmkdir(name
);
187 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wxChar
*name
)
189 if ( wxUsingUnicowsDll() )
190 return _rmdir(wxConvFile
.cWX2MB(name
));
192 return _wrmdir(name
);
195 WXDLLIMPEXP_BASE
int wxMSLU__wstat(const wxChar
*name
, struct _stat
*buffer
)
197 if ( wxUsingUnicowsDll() )
198 return _stat((const char*)wxConvFile
.cWX2MB(name
), buffer
);
200 return _wstat(name
, buffer
);
203 #endif // compilers having wopen() &c
207 #endif // wxUSE_UNICODE_MSLU