#endif // native Win compiler
#ifdef __GNUWIN32__
+ #include <wchar.h>
#ifndef __TWIN32__
#include <sys/unistd.h>
#endif
// ----------------------------------------------------------------------------
// we need to translate Mac filenames before passing them to OS functions
-#ifdef __MAC__
- #define OS_FILENAME(s) (wxUnix2MacFilename(s))
-#else
#define OS_FILENAME(s) (s.fn_str())
-#endif
// ============================================================================
// implementation
bool
wxIsAbsolutePath (const wxString& filename)
{
+#ifdef __WXMAC__
+ if (filename != wxT(""))
+ {
+ if( filename.Find(':') != wxNOT_FOUND && filename[0] != ':' )
+ return TRUE ;
+ }
+ return FALSE ;
+#else
if (filename != wxT(""))
{
if (filename[0] == wxT('/')
return TRUE;
}
return FALSE;
+#endif
}
/*
}
else
#else
- while ((*d++ = *s) != NULL) {
+ while ((*d++ = *s) != 0) {
# ifndef __WXMSW__
if (*s == wxT('\\')) {
if ((*(d - 1) = *++s)) {
register wxChar *start = d;
register int braces = (*s == wxT('{') || *s == wxT('('));
register wxChar *value;
- while ((*d++ = *s) != NULL)
+ while ((*d++ = *s) != 0)
if (braces ? (*s == wxT('}') || *s == wxT(')')) : !(wxIsalnum(*s) || *s == wxT('_')) )
break;
else
*--d = 0;
value = wxGetenv(braces ? start + 1 : start);
if (value) {
- for ((d = start - 1); (*d++ = *value++) != NULL;);
+ for ((d = start - 1); (*d++ = *value++) != 0;);
d--;
if (braces && *s)
s++;
*(d - 1) = SEP;
}
s = nm;
- while ((*d++ = *s++) != NULL);
+ while ((*d++ = *s++) != 0);
delete[] nm_tmp; // clean up alloc
/* Now clean up the buffer */
return wxRealPath(buf);
tcp = path + wxStrlen (path);
while (--tcp >= path)
{
+#ifdef __WXMAC__
+ if (*tcp == wxT(':') )
+#else
if (*tcp == wxT('/') || *tcp == wxT('\\')
#ifdef __VMS__
|| *tcp == wxT(':') || *tcp == wxT(']'))
#else
)
+#endif
#endif
return tcp + 1;
} /* while */
tcp = path + wxStrlen (path);
while (--tcp >= path)
{
+#ifdef __WXMAC__
+ if (*tcp == wxT(':') )
+#else
if (*tcp == wxT('/') || *tcp == wxT('\\')
#ifdef __VMS__
|| *tcp == wxT(':') || *tcp == wxT(']'))
#else
)
+#endif
#endif
return wxString(tcp + 1);
} /* while */
while (!done && i > -1)
{
// ] is for VMS
+#ifdef __WXMAC__
+ if (path[i] == wxT(':') )
+#else
if (path[i] == wxT('/') || path[i] == wxT('\\') || path[i] == wxT(']'))
+#endif
{
done = TRUE;
#ifdef __VMS__
while (!done && i > -1)
{
// ] is for VMS
+#ifdef __WXMAC__
+ if (path[i] == wxT(':') )
+#else
if (path[i] == wxT('/') || path[i] == wxT('\\') || path[i] == wxT(']'))
+#endif
{
done = TRUE;
#ifdef __VMS__
// Also, convert to lower case, since case is significant in UNIX.
#if defined(__WXMAC__) && !defined(__UNIX__)
+wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
+{
+ Handle myPath ;
+ short length ;
+
+ FSpGetFullPath( spec , &length , &myPath ) ;
+ ::SetHandleSize( myPath , length + 1 ) ;
+ ::HLock( myPath ) ;
+ (*myPath)[length] = 0 ;
+ if ( length > 0 && (*myPath)[length-1] ==':' )
+ (*myPath)[length-1] = 0 ;
+
+ wxString result( (char*) *myPath ) ;
+ ::HUnlock( myPath ) ;
+ ::DisposeHandle( myPath ) ;
+ return result ;
+}
+
+void wxMacFilename2FSSpec( const char *path , FSSpec *spec )
+{
+ FSpLocationFromFullPath( strlen(path ) , path , spec ) ;
+}
static char sMacFileNameConversion[ 1000 ] ;
return wxString (sMacFileNameConversion) ;
}
-wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
-{
- Handle myPath ;
- short length ;
-
- FSpGetFullPath( spec , &length , &myPath ) ;
- ::SetHandleSize( myPath , length + 1 ) ;
- ::HLock( myPath ) ;
- (*myPath)[length] = 0 ;
- if ( length > 0 && (*myPath)[length-1] ==':' )
- (*myPath)[length-1] = 0 ;
-
- wxString result( (char*) *myPath ) ;
- ::HUnlock( myPath ) ;
- ::DisposeHandle( myPath ) ;
- return result ;
-}
-
wxString wxMacFSSpec2UnixFilename( const FSSpec *spec )
{
return wxMac2UnixFilename( wxMacFSSpec2MacFilename( spec) ) ;
}
-void wxMacFilename2FSSpec( const char *path , FSSpec *spec )
-{
- FSpLocationFromFullPath( strlen(path ) , path , spec ) ;
-}
-
void wxUnixFilename2FSSpec( const char *path , FSSpec *spec )
{
wxString var = wxUnix2MacFilename( path ) ;
FILE *fp2 = (FILE *) NULL;
FILE *fp3 = (FILE *) NULL;
// Open the inputs and outputs
- if ((fp1 = fopen (OS_FILENAME( file1 ), "rb")) == NULL ||
- (fp2 = fopen (OS_FILENAME( file2 ), "rb")) == NULL ||
- (fp3 = fopen (OS_FILENAME( outfile ), "wb")) == NULL)
+ if ((fp1 = wxFopen (OS_FILENAME( file1 ), wxT("rb"))) == NULL ||
+ (fp2 = wxFopen (OS_FILENAME( file2 ), wxT("rb"))) == NULL ||
+ (fp3 = wxFopen (OS_FILENAME( outfile ), wxT("wb"))) == NULL)
{
if (fp1)
fclose (fp1);
bool wxRemoveFile(const wxString& file)
{
-#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__WATCOMC__)
+#if defined(__VISUALC__) \
+ || defined(__BORLANDC__) \
+ || defined(__WATCOMC__) \
+ || defined(__GNUWIN32__)
int res = wxRemove(file);
#else
int res = unlink(OS_FILENAME(file));
bool wxMkdir(const wxString& dir, int perm)
{
#if defined(__WXMAC__) && !defined(__UNIX__)
- return (mkdir(wxUnix2MacFilename( dir ) , 0 ) == 0);
+ return (mkdir( dir , 0 ) == 0);
#else // !Mac
const wxChar *dirname = dir.c_str();
FSSpec fsspec ;
- wxUnixFilename2FSSpec( result , &fsspec ) ;
+ wxMacFilename2FSSpec( result , &fsspec ) ;
g_iter.m_CPB.hFileInfo.ioVRefNum = fsspec.vRefNum ;
g_iter.m_CPB.hFileInfo.ioNamePtr = g_iter.m_name ;
g_iter.m_index = 0 ;
g_iter.m_name,
&spec) ;
- return wxMacFSSpec2UnixFilename( &spec ) ;
+ return wxMacFSSpec2MacFilename( &spec ) ;
}
#elif defined(__WXMSW__)
cwdSpec.vRefNum = pb.ioFCBVRefNum;
cwdSpec.parID = pb.ioFCBParID;
cwdSpec.name[0] = 0 ;
- wxString res = wxMacFSSpec2UnixFilename( &cwdSpec ) ;
+ wxString res = wxMacFSSpec2MacFilename( &cwdSpec ) ;
strcpy( buf , res ) ;
buf[res.length()-1]=0 ;