Lines Matching refs:UString
68 extern UString HResultToMessage(HRESULT errorCode);
77 UString s = HResultToMessage(errorCode); in MessageBox_HResError()
98 UString _topDirPrefix; // we don't open parent of that folder
99 UString DirPrefix;
111 bool GetParentPath(const UString &path, UString &parentPrefix, UString &name);
113 HRESULT Reload(const UString &pathPrefix, const UString &selectedName);
132 UString Title;
133 UString FilePath; // input/ result path
136 UString FilterDescription;
139 void SetFilter(const UString &s);
144 void CBrowseDialog::SetFilter(const UString &s) in SetFilter()
147 UString mask; in SetFilter()
166 const UString &f = Filters[i]; in SetFilter()
202 UString s; in OnInit()
231 const UString s = LangString(IDS_PROP_SIZE); in OnInit()
270 UString name; in OnInit()
276 UString baseFolder = DirPrefix; in OnInit()
282 UString parent, name2; in OnInit()
454 bool CBrowseDialog::GetParentPath(const UString &path, UString &parentPrefix, UString &name) in GetParentPath()
462 UString s = path; in GetParentPath()
520 HRESULT CBrowseDialog::Reload(const UString &pathPrefix, const UString &selectedName) in Reload()
591 const UString itemName = L".."; in Reload()
613 const UString name = fs2us(fi.Name); in Reload()
622 const UString fullPath = DirPrefix + name; in Reload()
670 UString selected; in Reload()
678 UString dirPathTemp = DirPrefix; in Reload()
684 UString parent, selected; in OpenParentFolder()
721 UString name; in OnCreateDir()
723 UString enteredName; in OnCreateDir()
745 UString tempPath = DirPrefix; in OnCreateDir()
775 UString s = DirPrefix + fs2us(file.Name) + WCHAR_PATH_SEPARATOR; in OnItemEnter()
785 UString s; in FinishOnOK()
801 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath) in MyBrowseForFolder()
831 LPCWSTR filterDescription, LPCWSTR filter, UString &resultPath) in MyBrowseForFile()
858 UString s = errorMessage; in MyBrowseForFile()
890 static void RemoveDotsAndSpaces(UString &path) in RemoveDotsAndSpaces()
902 bool CorrectFsPath(const UString &relBase, const UString &path2, UString &result) in CorrectFsPath()
906 UString path = path2; in CorrectFsPath()
909 UString base; in CorrectFsPath()
956 UString cur; in CorrectFsPath()
990 bool CorrectFsPath(const UString & /* relBase */, const UString &path, UString &result) in CorrectFsPath() argument
997 bool Dlg_CreateFolder(HWND wnd, UString &destName) in Dlg_CreateFolder()