+bool wxFileName::Normalize( const wxString &cwd, const wxString &home )
+{
+ wxFileName tmp( *this );
+ m_dirs.Clear();
+ const wxArrayString &dirs = tmp.GetDirs();
+
+ if (dirs.GetCount() == 0) return FALSE;
+
+ size_t start = 0;
+
+ if (dirs[0] == wxT("."))
+ {
+ if (cwd == wxEmptyString)
+ Assign( wxFileName::GetCwd(), TRUE );
+ else
+ Assign( cwd );
+ start = 1;
+ }
+ else
+ if (dirs[0] == wxT(".."))
+ {
+ if (cwd == wxEmptyString)
+ Assign( wxFileName::GetCwd(), TRUE );
+ else
+ Assign( cwd );
+ m_dirs.Remove( m_dirs.GetCount()-1 );
+ start = 1;
+ }
+ else
+ if (dirs[0] == wxT("~"))
+ {
+ if (home == wxEmptyString)
+ Assign( wxFileName::GetHomeDir(), TRUE );
+ else
+ Assign( home );
+ start = 1;
+ }
+
+ for (size_t i = start; i < dirs.GetCount(); i++)
+ {
+ if (dirs[i] == wxT(".")) continue;
+
+ if (dirs[i] == wxT(".."))
+ {
+ m_dirs.Remove( m_dirs.GetCount()-1 );
+ continue;
+ }
+
+ // expand env vars here ?
+
+ m_dirs.Add( dirs[i] );
+ }
+
+ m_name = tmp.GetName();
+ m_ext = tmp.GetExt();
+
+ return TRUE;
+}
+
+bool wxFileName::SameAs( const wxFileName &filepath, bool upper_case )