]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/mslu.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/mslu.cpp
3 // Purpose: Fixes for bugs in MSLU
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2002 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
23 #define wxHAS_HUGE_FILES
25 //------------------------------------------------------------------------
26 // Check for use of MSLU
27 //------------------------------------------------------------------------
31 bool WXDLLIMPEXP_BASE
wxUsingUnicowsDll()
33 #if wxUSE_UNICODE_MSLU
34 return (wxGetOsVersion() == wxOS_WINDOWS_9X
);
43 #if wxUSE_UNICODE_MSLU
45 //------------------------------------------------------------------------
47 // NB: MSLU only covers Win32 API, it doesn't provide Unicode implementation of
48 // libc functions. Unfortunately, some of MSVCRT wchar_t functions
49 // (e.g. _wopen) don't work on Windows 9x, so we have to workaround it
50 // by calling the char version. We still want to use wchar_t version on
51 // NT/2000/XP, though, because they allow for Unicode file names.
53 // Moreover, there are bugs in unicows.dll, of course. We have to
54 // workaround them, too.
56 //------------------------------------------------------------------------
58 #include "wx/msw/private.h"
59 #include "wx/msw/mslu.h"
69 // Undef redirection macros defined in wx/msw/wrapwin.h:
71 #undef GetOpenFileNameW
72 #undef GetSaveFileNameW
74 //------------------------------------------------------------------------
75 // Wrongly implemented functions from unicows.dll
76 //------------------------------------------------------------------------
80 WXDLLEXPORT
int wxMSLU_DrawStateW(WXHDC dc
, WXHBRUSH br
, WXFARPROC outputFunc
,
81 WXLPARAM lData
, WXWPARAM wData
,
82 int x
, int y
, int cx
, int cy
,
85 // VS: There's yet another bug in MSLU: DrawStateW behaves like if it was
86 // expecting char*, not wchar_t* input. We have to use DrawStateA
89 if ( wxUsingUnicowsDll() )
91 return DrawStateA((HDC
)dc
, (HBRUSH
)br
, (DRAWSTATEPROC
)outputFunc
,
93 wxConvLocal
.cWX2MB((const wxChar
*)lData
),
94 wData
, x
, y
, cx
, cy
, flags
);
98 return DrawStateW((HDC
)dc
, (HBRUSH
)br
, (DRAWSTATEPROC
)outputFunc
,
99 lData
, wData
, x
, y
, cx
, cy
, flags
);
103 static void wxFixOPENFILENAME(LPOPENFILENAME ofn
)
106 // VS: there's a bug in unicows.dll - when multiple files are selected,
107 // of.nFileOffset doesn't point to the first filename but rather to
108 // the last component of directory name. This bug is known to MSLU
109 // developers, but they are not going to fix it: "this is a true
110 // limitation, that we have decided to live with" and "working
111 // harder on this case just did not seem worth the effort"...
113 // Our only option is to try to fix it ourselves:
115 if ( (ofn
->Flags
& OFN_ALLOWMULTISELECT
) &&
116 ofn
->lpstrFile
[ofn
->nFileOffset
-1] != wxT('\0') )
118 if ( wxDirExists(ofn
->lpstrFile
) )
120 // 1st component is dir => multiple files selected
121 ofn
->nFileOffset
= wxStrlen(ofn
->lpstrFile
)+1;
124 #endif // OFN_EXPLORER
127 WXDLLEXPORT
int wxMSLU_GetOpenFileNameW(void *ofn
)
129 int ret
= GetOpenFileName((LPOPENFILENAME
)ofn
);
130 if ( wxUsingUnicowsDll() && ret
!= 0 )
131 wxFixOPENFILENAME((LPOPENFILENAME
)ofn
);
135 WXDLLEXPORT
int wxMSLU_GetSaveFileNameW(void *ofn
)
137 int ret
= GetSaveFileName((LPOPENFILENAME
)ofn
);
138 if ( wxUsingUnicowsDll() && ret
!= 0 )
139 wxFixOPENFILENAME((LPOPENFILENAME
)ofn
);
145 //------------------------------------------------------------------------
146 // Missing libc file manipulation functions in Win9x
147 //------------------------------------------------------------------------
151 WXDLLIMPEXP_BASE
int wxMSLU__wrename(const wchar_t *oldname
,
152 const wchar_t *newname
)
154 if ( wxUsingUnicowsDll() )
155 return rename(wxConvFile
.cWX2MB(oldname
), wxConvFile
.cWX2MB(newname
));
157 return _wrename(oldname
, newname
);
160 WXDLLIMPEXP_BASE
int wxMSLU__wremove(const wchar_t *name
)
162 if ( wxUsingUnicowsDll() )
163 return remove(wxConvFile
.cWX2MB(name
));
165 return _wremove(name
);
168 WXDLLIMPEXP_BASE
FILE* wxMSLU__wfopen(const wchar_t *name
,const wchar_t* mode
)
170 if ( wxUsingUnicowsDll() )
171 return fopen(wxConvFile
.cWX2MB(name
),wxConvFile
.cWX2MB(mode
));
173 return _wfopen(name
,mode
);
176 WXDLLIMPEXP_BASE
FILE* wxMSLU__wfreopen(const wchar_t *name
,
180 if ( wxUsingUnicowsDll() )
181 return freopen(wxConvFile
.cWX2MB(name
), wxConvFile
.cWX2MB(mode
), stream
);
183 return _wfreopen(name
, mode
, stream
);
186 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wchar_t *name
, int flags
, int mode
)
188 if ( wxUsingUnicowsDll() )
189 return wxCRT_OpenA(wxConvFile
.cWX2MB(name
), flags
, mode
);
191 return wxCRT_OpenW(name
, flags
, mode
);
194 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wchar_t *name
, int mode
)
196 if ( wxUsingUnicowsDll() )
197 return wxCRT_AccessA(wxConvFile
.cWX2MB(name
), mode
);
199 return wxCRT_AccessW(name
, mode
);
202 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wchar_t *name
)
204 if ( wxUsingUnicowsDll() )
205 return wxCRT_MkDirA(wxConvFile
.cWX2MB(name
));
207 return wxCRT_MkDirW(name
);
210 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wchar_t *name
)
212 if ( wxUsingUnicowsDll() )
213 return wxCRT_RmDirA(wxConvFile
.cWX2MB(name
));
215 return wxCRT_RmDirW(name
);
218 WXDLLIMPEXP_BASE
int wxMSLU__wstat(const wchar_t *name
, wxStructStat
*buffer
)
220 if ( wxUsingUnicowsDll() )
221 return wxCRT_StatA((const char*)wxConvFile
.cWX2MB(name
), buffer
);
223 return wxCRT_StatW(name
, buffer
);
228 #endif // wxUSE_UNICODE_MSLU