X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/62f864c32c53356b7228591c85b14abc491c46f0..0fe9c32957672a7b5cc21f9b62b12861e19e51a5:/src/mac/classic/filedlg.cpp diff --git a/src/mac/classic/filedlg.cpp b/src/mac/classic/filedlg.cpp index 95f2fa0c81..27ec563fe1 100644 --- a/src/mac/classic/filedlg.cpp +++ b/src/mac/classic/filedlg.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: filedlg.cpp +// Name: src/mac/classic/filedlg.cpp // Purpose: wxFileDialog // Author: Stefan Csomor // Modified by: @@ -9,21 +9,26 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "filedlg.h" +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ + #pragma hdrstop #endif -#include "wx/defs.h" -#include "wx/app.h" -#include "wx/utils.h" -#include "wx/dialog.h" #include "wx/filedlg.h" -#include "wx/intl.h" + +#ifndef WX_PRECOMP + #include "wx/intl.h" + #include "wx/app.h" + #include "wx/utils.h" + #include "wx/dialog.h" +#endif + #include "wx/tokenzr.h" #include "wx/filename.h" #ifndef __DARWIN__ - #include "PLStringFuncs.h" + #include "PLStringFuncs.h" #endif IMPLEMENT_CLASS(wxFileDialog, wxFileDialogBase) @@ -93,7 +98,7 @@ NavEventProc( else if ( inSelector == kNavCBStart ) { #if TARGET_CARBON - if (data && !(data->defaultLocation).IsEmpty()) + if (data && !(data->defaultLocation).empty()) { // Set default location for the modern Navigation APIs // Apple Technical Q&A 1151 @@ -187,7 +192,7 @@ void MakeUserDataRec(OpenUserDataRec *myData , const wxString& filter ) // an explanatory text, in that case the first part is name and extension at the same time wxASSERT_MSG( filterIndex == 0 || !isName , wxT("incorrect format of format string") ) ; - if ( current.IsEmpty() ) + if ( current.empty() ) myData->extensions.Add( myData->name[filterIndex] ) ; else myData->extensions.Add( current.MakeUpper() ) ; @@ -204,21 +209,21 @@ void MakeUserDataRec(OpenUserDataRec *myData , const wxString& filter ) wxString extension = myData->extensions[i]; if (extension.GetChar(0) == '*') - extension = extension.Mid(1); // Remove leading * + extension = extension.Mid(1); // Remove leading * if (extension.GetChar(0) == '.') { - extension = extension.Mid(1); // Remove leading . + extension = extension.Mid(1); // Remove leading . } - + if (wxFileName::MacFindDefaultTypeAndCreator( extension, &fileType, &creator )) { myData->filtermactypes.Add( (OSType)fileType ); } else { - myData->filtermactypes.Add( '****' ) ; // We'll fail safe if it's not recognized - } + myData->filtermactypes.Add( '****' ) ; // We'll fail safe if it's not recognized + } } } } @@ -315,7 +320,7 @@ pascal Boolean CrossPlatformFilterCallback ( wxString file = wxMacMakeStringFromPascal( spec.name ) ; display = CheckFile( file , theInfo->fileAndFolder.fileInfo.finderInfo.fdType , data ) ; } - #if TARGET_CARBON +#if TARGET_CARBON else if ( theItem->descriptorType == typeFSRef ) { FSRef fsref ; @@ -323,16 +328,16 @@ pascal Boolean CrossPlatformFilterCallback ( - CFURLRef fullURLRef; + CFURLRef fullURLRef; fullURLRef = ::CFURLCreateFromFSRef(NULL, &fsref); #ifdef __UNIX__ - CFURLPathStyle pathstyle = kCFURLPOSIXPathStyle; + CFURLPathStyle pathstyle = kCFURLPOSIXPathStyle; #else - CFURLPathStyle pathstyle = kCFURLHFSPathStyle; + CFURLPathStyle pathstyle = kCFURLHFSPathStyle; #endif - CFStringRef cfString = CFURLCopyFileSystemPath(fullURLRef, pathstyle); - ::CFRelease( fullURLRef ) ; - wxString file = wxMacCFStringHolder(cfString).AsString(wxFont::GetDefaultEncoding()); + CFStringRef cfString = CFURLCopyFileSystemPath(fullURLRef, pathstyle); + ::CFRelease( fullURLRef ) ; + wxString file = wxMacCFStringHolder(cfString).AsString(wxFont::GetDefaultEncoding()); display = CheckFile( file , theInfo->fileAndFolder.fileInfo.finderInfo.fdType , data ) ; } @@ -619,7 +624,7 @@ int wxFileDialog::ShowModal() OSErr err = ::AEGetNthDesc( &mNavReply.selection , i , typeFSS, &keyWord , &specDesc); if ( err != noErr ) { - m_path = wxT("") ; + m_path = wxEmptyString ; return wxID_CANCEL ; } outFileSpec = **(FSSpec**) specDesc.dataHandle; @@ -642,4 +647,3 @@ int wxFileDialog::ShowModal() return wxID_CANCEL; #endif // TARGET_CARBON } -