1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef DBACCESS_DBDOCRECOVERY_HXX
21 #define DBACCESS_DBDOCRECOVERY_HXX
23 #include "dbaccessdllapi.h"
25 #include <com/sun/star/embed/XStorage.hpp>
26 #include <com/sun/star/frame/XController.hpp>
33 class ComponentContext
;
39 //====================================================================
40 //= DatabaseDocumentRecovery
41 //====================================================================
42 struct DatabaseDocumentRecovery_Data
;
43 class DBACCESS_DLLPRIVATE DatabaseDocumentRecovery
46 DatabaseDocumentRecovery(
47 const ::comphelper::ComponentContext
& i_rContext
49 ~DatabaseDocumentRecovery();
51 /** saves the modified sub components of the given controller(s) to the "recovery" sub storage of the document
54 @throws ::com::sun::star::uno::Exception
57 void saveModifiedSubComponents(
58 const ::com::sun::star::uno::Reference
< ::com::sun::star::embed::XStorage
>& i_rTargetStorage
,
59 const ::std::vector
< ::com::sun::star::uno::Reference
< ::com::sun::star::frame::XController
> >& i_rControllers
62 /** recovery sub components from the given document storage, if applicable
64 If the given document storage does not contain a recovery folder, the method silently returns.
66 @throws ::com::sun::star::uno::Exception
69 void recoverSubDocuments(
70 const ::com::sun::star::uno::Reference
< ::com::sun::star::embed::XStorage
>& i_rDocumentStorage
,
71 const ::com::sun::star::uno::Reference
< ::com::sun::star::frame::XController
>& i_rTargetController
75 const ::std::auto_ptr
< DatabaseDocumentRecovery_Data
> m_pData
;
78 } // namespace dbaccess
80 #endif // DBACCESS_DBDOCRECOVERY_HXX
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */