Lines Matching refs:wstring

67     const std::wstring HTM_OPENWITHLIST = L".htm\\OpenWithList";
68 const std::wstring APPLICATIONS = L"Applications";
69 const std::wstring SHELL_EDIT_COMMAND = L"shell\\edit\\command";
70 const std::wstring HTML_EDIT = L"HTML Edit";
71 const std::wstring HTML_EDIT_DISPLAY_NAME = L"Edit Display Name";
72 const std::wstring SHELL_EDIT_COMMAND_BACKUP = L"Shell Edit Cmd";
73 const std::wstring DEFAULT_HTML_EDITOR = L"Default HTML Editor";
74 …const std::wstring MS_IE_DEF_HTML_EDITOR = L"Software\\Microsoft\\Internet Explorer\\Default HTML …
75 …const std::wstring MS_IE_DEF_HTML_EDITOR_SHL_EDIT_CMD = L"Software\\Microsoft\\Internet Explorer\\…
155 bool Registrar::QueryPreselectForMsApplication(const std::wstring& file_extension) const in QueryPreselectForMsApplication()
343 std::wstring OOFriendlyAppName = m_ContextInformation.GetOpenOfficeFriendlyAppName(); in RegisterAsHtmlEditorForInternetExplorer()
345 std::wstring RegKeyName = HTM_OPENWITHLIST + std::wstring(L"\\") + OOFriendlyAppName; in RegisterAsHtmlEditorForInternetExplorer()
358 RegKeyName = APPLICATIONS + std::wstring(L"\\") + OOFriendlyAppName; in RegisterAsHtmlEditorForInternetExplorer()
381 std::wstring OOFriendlyAppName = m_ContextInformation.GetOpenOfficeFriendlyAppName(); in UnregisterAsHtmlEditorForInternetExplorer()
411 std::wstring CmdLine = RegVal->GetDataAsUniString(); in RegisterAsDefaultHtmlEditorForInternetExplorer()
413 if (std::wstring::npos == CmdLine.find(m_ContextInformation.GetOpenOfficeExecutableName())) in RegisterAsDefaultHtmlEditorForInternetExplorer()
452 std::wstring CmdLine = RegVal->GetDataAsUniString(); in UnregisterAsDefaultHtmlEditorForInternetExplorer()
454 if (std::wstring::npos != CmdLine.find(m_ContextInformation.GetOpenOfficeExecutableName())) in UnregisterAsDefaultHtmlEditorForInternetExplorer()
498 std::wstring HtmFwdKey = RegVal->GetDataAsUniString(); in RegisterAsDefaultShellHtmlEditor()
508 std::wstring CmdLine = RegVal->GetDataAsUniString(); in RegisterAsDefaultShellHtmlEditor()
511 if (std::wstring::npos == CmdLine.find(m_ContextInformation.GetOpenOfficeExecutableName())) in RegisterAsDefaultShellHtmlEditor()
541 std::wstring HtmFwdKey = RegVal->GetDataAsUniString(); in UnregisterAsDefaultShellHtmlEditor()
550 std::wstring CmdLine = RegVal->GetDataAsUniString(); in UnregisterAsDefaultShellHtmlEditor()
552 if (std::wstring::npos != CmdLine.find(m_ContextInformation.GetOpenOfficeExecutableName())) in UnregisterAsDefaultShellHtmlEditor()
682 const std::wstring& FileExtension, in RegisterForMsOfficeApplication()
683 const std::wstring& DocumentDisplayName, in RegisterForMsOfficeApplication()
684 const std::wstring& DefaultIconEntry, in RegisterForMsOfficeApplication()
685 const std::wstring& DefaultShellCommand, in RegisterForMsOfficeApplication()
686 const std::wstring& ShellNewCommandDisplayName, in RegisterForMsOfficeApplication()
691 std::wstring ForwardKeyName = FORWARD_KEY_PREFIX + FileExtension; in RegisterForMsOfficeApplication()
694 RegistryValue RegVal(new RegistryValueImpl(std::wstring(DEFAULT_VALUE_NAME), DocumentDisplayName)); in RegisterForMsOfficeApplication()
734 std::wstring str = RegVal->GetDataAsUniString(); in RegisterForMsOfficeApplication()
744 void Registrar::UnregisterForMsOfficeApplication(const std::wstring& FileExtension) const in UnregisterForMsOfficeApplication()
746 std::wstring FwdRegKeyName = FORWARD_KEY_PREFIX + FileExtension; in UnregisterForMsOfficeApplication()
777 bool Registrar::IsOpenOfficeRegisteredForMsApplication(const std::wstring& DocumentExtensionDefValu… in IsOpenOfficeRegisteredForMsApplication()
779 return (std::wstring::npos != DocumentExtensionDefValue.find(FORWARD_KEY_PREFIX)); in IsOpenOfficeRegisteredForMsApplication()