Lines Matching refs:UString
72 extern UString HResultToMessage(HRESULT errorCode);
81 UString s = HResultToMessage(errorCode); in MessageBox_HResError()
102 UString _topDirPrefix; // we don't open parent of that folder
103 UString DirPrefix;
115 bool GetParentPath(const UString &path, UString &parentPrefix, UString &name);
117 HRESULT Reload(const UString &pathPrefix, const UString &selectedName);
136 UString Title;
137 UString FilePath; // input/ result path
140 UString FilterDescription;
143 void SetFilter(const UString &s);
148 void CBrowseDialog::SetFilter(const UString &s) in SetFilter()
151 UString mask; in SetFilter()
170 const UString &f = Filters[i]; in SetFilter()
208 UString s; in OnInit()
237 const UString s = LangString(IDS_PROP_SIZE); in OnInit()
278 UString name; in OnInit()
284 UString baseFolder = DirPrefix; in OnInit()
290 UString parent, name2; in OnInit()
462 bool CBrowseDialog::GetParentPath(const UString &path, UString &parentPrefix, UString &name) in GetParentPath()
470 UString s = path; in GetParentPath()
528 HRESULT CBrowseDialog::Reload(const UString &pathPrefix, const UString &selectedName) in Reload()
600 const UString itemName (".."); in Reload()
622 const UString name = fs2us(fi.Name); in Reload()
631 const UString fullPath = DirPrefix + name; in Reload()
677 UString selected; in Reload()
685 UString dirPathTemp = DirPrefix; in Reload()
691 UString parent, selected; in OpenParentFolder()
728 UString name; in OnCreateDir()
730 UString enteredName; in OnCreateDir()
752 UString tempPath = DirPrefix; in OnCreateDir()
782 UString s = DirPrefix; in OnItemEnter()
785 HRESULT res = Reload(s, UString()); in OnItemEnter()
794 UString s; in FinishOnOK()
810 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath) in MyBrowseForFolder()
840 LPCWSTR filterDescription, LPCWSTR filter, UString &resultPath) in MyBrowseForFile()
867 UString s (errorMessage); in MyBrowseForFile()
899 static void RemoveDotsAndSpaces(UString &path) in RemoveDotsAndSpaces()
911 bool CorrectFsPath(const UString &relBase, const UString &path2, UString &result) in CorrectFsPath()
915 UString path = path2; in CorrectFsPath()
918 UString base; in CorrectFsPath()
970 UString cur; in CorrectFsPath()
1006 bool CorrectFsPath(const UString & /* relBase */, const UString &path, UString &result) in CorrectFsPath() argument
1014 bool Dlg_CreateFolder(HWND wnd, UString &destName) in Dlg_CreateFolder()