Lines Matching refs:RecoveryUI

59 RecoveryUI::RecoveryUI(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR)  in RecoveryUI()  function in svx::RecoveryUI
62 , m_eJob (RecoveryUI::E_JOB_UNKNOWN) in RecoveryUI()
67 RecoveryUI::~RecoveryUI() in ~RecoveryUI()
72 ::rtl::OUString SAL_CALL RecoveryUI::getImplementationName() in getImplementationName()
75 return RecoveryUI::st_getImplementationName(); in getImplementationName()
79 sal_Bool SAL_CALL RecoveryUI::supportsService(const ::rtl::OUString& sServiceName) in supportsService()
82 … const css::uno::Sequence< ::rtl::OUString > lServices = RecoveryUI::st_getSupportedServiceNames(); in supportsService()
95 css::uno::Sequence< ::rtl::OUString > SAL_CALL RecoveryUI::getSupportedServiceNames() in getSupportedServiceNames()
98 return RecoveryUI::st_getSupportedServiceNames(); in getSupportedServiceNames()
102 css::uno::Any SAL_CALL RecoveryUI::dispatchWithReturnValue(const css::util::URL& aURL, in dispatchWithReturnValue()
111 RecoveryUI::EJob eJob = impl_classifyJob(aURL); in dispatchWithReturnValue()
116 case RecoveryUI::E_DO_EMERGENCY_SAVE : in dispatchWithReturnValue()
123 case RecoveryUI::E_DO_RECOVERY : in dispatchWithReturnValue()
127 case RecoveryUI::E_DO_CRASHREPORT : in dispatchWithReturnValue()
139 void SAL_CALL RecoveryUI::dispatch(const css::util::URL& aURL … in dispatch()
148 void SAL_CALL RecoveryUI::addStatusListener(const css::uno::Reference< css::frame::XStatusListener … in addStatusListener()
155 void SAL_CALL RecoveryUI::removeStatusListener(const css::uno::Reference< css::frame::XStatusListen… in removeStatusListener()
163 ::rtl::OUString RecoveryUI::st_getImplementationName() in st_getImplementationName()
170 css::uno::Sequence< ::rtl::OUString > RecoveryUI::st_getSupportedServiceNames() in st_getSupportedServiceNames()
177 css::uno::Reference< css::uno::XInterface > SAL_CALL RecoveryUI::st_createInstance(const css::uno::… in st_createInstance()
179 RecoveryUI* pNew = new RecoveryUI(xSMGR); in st_createInstance()
245 RecoveryUI::EJob RecoveryUI::impl_classifyJob(const css::util::URL& aURL) in impl_classifyJob()
247 m_eJob = RecoveryUI::E_JOB_UNKNOWN; in impl_classifyJob()
251 m_eJob = RecoveryUI::E_DO_EMERGENCY_SAVE; in impl_classifyJob()
254 m_eJob = RecoveryUI::E_DO_RECOVERY; in impl_classifyJob()
257 m_eJob = RecoveryUI::E_DO_CRASHREPORT; in impl_classifyJob()
264 sal_Bool RecoveryUI::impl_doEmergencySave() in impl_doEmergencySave()
286 void RecoveryUI::impl_doRecovery() in impl_doRecovery()
339 void RecoveryUI::impl_doCrashReport() in impl_doCrashReport()
361 void RecoveryUI::impl_showAllRecoveredDocs() in impl_showAllRecoveredDocs()