]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/mslu.cpp
3e63d04fb25b795fa8739dd9bca36ab74d77d245
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 //------------------------------------------------------------------------
30 #if !wxUSE_UNICODE_MSLU
32 bool wxUsingUnicowsDll()
39 //------------------------------------------------------------------------
41 // NB: MSLU only covers Win32 API, it doesn't provide Unicode implementation of
42 // libc functions. Unfortunately, some of MSVCRT wchar_t functions
43 // (e.g. _wopen) don't work on Windows 9x, so we have to workaround it
44 // by calling the char version. We still want to use wchar_t version on
45 // NT/2000/XP, though, because they allow for Unicode file names.
47 // Moreover, there are bugs in unicows.dll, of course. We have to
48 // workaround them, too.
50 //------------------------------------------------------------------------
52 #include "wx/msw/private.h"
53 #include "wx/msw/mslu.h"
63 // Undef redirection macros defined in wx/msw/mslu.h:
65 #undef GetOpenFileNameW
66 #undef GetSaveFileNameW
68 // Returns true if we are running under Unicode emulation in Win9x environment.
69 // Workaround hacks take effect only if this condition is met
70 bool wxUsingUnicowsDll()
72 return (wxGetOsVersion() == wxWIN95
);
75 //------------------------------------------------------------------------
76 // Wrongly implemented functions from unicows.dll
77 //------------------------------------------------------------------------
81 WXDLLEXPORT
int wxMSLU_DrawStateW(WXHDC dc
, WXHBRUSH br
, WXFARPROC outputFunc
,
82 WXLPARAM lData
, WXWPARAM wData
,
83 int x
, int y
, int cx
, int cy
,
86 // VS: There's yet another bug in MSLU: DrawStateW behaves like if it was
87 // expecting char*, not wchar_t* input. We have to use DrawStateA
90 if ( wxUsingUnicowsDll() )
92 return DrawStateA((HDC
)dc
, (HBRUSH
)br
, (DRAWSTATEPROC
)outputFunc
,
94 wxConvLocal
.cWX2MB((const wxChar
*)lData
),
95 wData
, x
, y
, cx
, cy
, flags
);
99 return DrawStateW((HDC
)dc
, (HBRUSH
)br
, (DRAWSTATEPROC
)outputFunc
,
100 lData
, wData
, x
, y
, cx
, cy
, flags
);
104 static void wxFixOPENFILENAME(LPOPENFILENAME ofn
)
107 // VS: there's a bug in unicows.dll - when multiple files are selected,
108 // of.nFileOffset doesn't point to the first filename but rather to
109 // the last component of directory name. This bug is known to MSLU
110 // developers, but they are not going to fix it: "this is a true
111 // limitation, that we have decided to live with" and "working
112 // harder on this case just did not seem worth the effort"...
114 // Our only option is to try to fix it ourselves:
116 if ( (ofn
->Flags
& OFN_ALLOWMULTISELECT
) &&
117 ofn
->lpstrFile
[ofn
->nFileOffset
-1] != wxT('\0') )
119 if ( wxDirExists(ofn
->lpstrFile
) )
121 // 1st component is dir => multiple files selected
122 ofn
->nFileOffset
= wxStrlen(ofn
->lpstrFile
)+1;
128 WXDLLEXPORT
int wxMSLU_GetOpenFileNameW(void *ofn
)
130 int ret
= GetOpenFileName((LPOPENFILENAME
)ofn
);
131 if ( wxUsingUnicowsDll() && ret
!= 0 )
132 wxFixOPENFILENAME((LPOPENFILENAME
)ofn
);
136 WXDLLEXPORT
int wxMSLU_GetSaveFileNameW(void *ofn
)
138 int ret
= GetSaveFileName((LPOPENFILENAME
)ofn
);
139 if ( wxUsingUnicowsDll() && ret
!= 0 )
140 wxFixOPENFILENAME((LPOPENFILENAME
)ofn
);
146 //------------------------------------------------------------------------
147 // Missing libc file manipulation functions in Win9x
148 //------------------------------------------------------------------------
152 WXDLLIMPEXP_BASE
int wxMSLU__trename(const wxChar
*oldname
,
153 const wxChar
*newname
)
155 if ( wxUsingUnicowsDll() )
156 return rename(wxConvFile
.cWX2MB(oldname
), wxConvFile
.cWX2MB(newname
));
158 return _trename(oldname
, newname
);
161 WXDLLIMPEXP_BASE
int wxMSLU__tremove(const wxChar
*name
)
163 if ( wxUsingUnicowsDll() )
164 return remove(wxConvFile
.cWX2MB(name
));
166 return _tremove(name
);
169 #if defined( __VISUALC__ ) \
170 || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
171 || ( defined(__MWERKS__) && defined(__WXMSW__) ) \
172 || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) )
174 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wxChar
*name
, int flags
, int mode
)
176 if ( wxUsingUnicowsDll() )
178 return open(wxConvFile
.cWX2MB(name
), flags
, mode
);
180 return _open(wxConvFile
.cWX2MB(name
), flags
, mode
);
183 return _wopen(name
, flags
, mode
);
186 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wxChar
*name
, int mode
)
188 if ( wxUsingUnicowsDll() )
189 return _access(wxConvFile
.cWX2MB(name
), mode
);
191 return _waccess(name
, mode
);
194 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wxChar
*name
)
196 if ( wxUsingUnicowsDll() )
197 return _mkdir(wxConvFile
.cWX2MB(name
));
199 return _wmkdir(name
);
202 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wxChar
*name
)
204 if ( wxUsingUnicowsDll() )
205 return _rmdir(wxConvFile
.cWX2MB(name
));
207 return _wrmdir(name
);
210 WXDLLIMPEXP_BASE
int wxMSLU__wstat(const wxChar
*name
, struct _stat
*buffer
)
212 if ( wxUsingUnicowsDll() )
213 return _stat((const char*)wxConvFile
.cWX2MB(name
), buffer
);
215 return _wstat(name
, buffer
);
218 WXDLLIMPEXP_BASE
int wxMSLU__wstati64(const wxChar
*name
, struct _stati64
*buffer
)
220 if ( wxUsingUnicowsDll() )
221 return _stati64((const char*)wxConvFile
.cWX2MB(name
), buffer
);
223 return _wstati64(name
, buffer
);
226 #endif // compilers having wopen() &c
230 #endif // wxUSE_UNICODE_MSLU