LibreOffice Module dbaccess (master) 1
subcomponentrecovery.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include "subcomponents.hxx"
23
24#include <com/sun/star/sdb/application/XDatabaseDocumentUI.hpp>
25#include <com/sun/star/embed/XStorage.hpp>
26#include <com/sun/star/uno/XComponentContext.hpp>
27#include <utility>
28
29namespace dbaccess
30{
31
32 // SubComponentRecovery
34 {
35 public:
37 const css::uno::Reference< css::uno::XComponentContext >& i_rContext,
38 const css::uno::Reference< css::sdb::application::XDatabaseDocumentUI >& i_rController,
39 css::uno::Reference< css::lang::XComponent > i_xComponent )
40 :m_rContext( i_rContext )
41 ,m_xDocumentUI( i_rController, css::uno::UNO_SET_THROW )
42 ,m_xComponent(std::move( i_xComponent ))
45 {
47 }
48
50 const css::uno::Reference< css::uno::XComponentContext >& i_rContext,
51 const css::uno::Reference< css::sdb::application::XDatabaseDocumentUI >& i_rController,
52 const SubComponentType i_eType )
53 :m_rContext( i_rContext )
54 ,m_xDocumentUI( i_rController, css::uno::UNO_SET_THROW )
56 ,m_eType( i_eType )
58 {
59 }
60
61 // only to be used after being constructed with a component
63 const css::uno::Reference< css::embed::XStorage >& i_rRecoveryStorage,
64 MapCompTypeToCompDescs& io_mapCompDescs
65 );
66
67 // only to be used after being constructed with a type
68 css::uno::Reference< css::lang::XComponent >
70 const css::uno::Reference< css::embed::XStorage >& i_rRecoveryStorage,
71 const OUString& i_rComponentName,
72 const bool i_bForEditing
73 );
74
75 static OUString getComponentsStorageName( const SubComponentType i_eType );
76
77 private:
79 const css::uno::Reference< css::embed::XStorage >& i_rObjectStorage
80 );
81
83 const css::uno::Reference< css::embed::XStorage >& i_rObjectStorage
84 );
85
86 css::uno::Reference< css::lang::XComponent >
88 const css::uno::Reference< css::embed::XStorage >& i_rRecoveryStorage,
89 const OUString& i_rComponentName,
90 const bool i_bForEditing
91 );
92
93 css::uno::Reference< css::lang::XComponent >
95 const css::uno::Reference< css::embed::XStorage >& i_rRecoveryStorage,
96 const OUString& i_rComponentName,
97 const bool i_bForEditing
98 );
99
101
102 private:
103 const css::uno::Reference< css::uno::XComponentContext >&
105 css::uno::Reference< css::sdb::application::XDatabaseDocumentUI >
107 const css::uno::Reference< css::lang::XComponent >
111 };
112
113} // namespace dbaccess
114
115/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void impl_saveSubDocument_throw(const css::uno::Reference< css::embed::XStorage > &i_rObjectStorage)
css::uno::Reference< css::lang::XComponent > impl_recoverQueryDesign_throw(const css::uno::Reference< css::embed::XStorage > &i_rRecoveryStorage, const OUString &i_rComponentName, const bool i_bForEditing)
const css::uno::Reference< css::uno::XComponentContext > & m_rContext
css::uno::Reference< css::lang::XComponent > recoverFromStorage(const css::uno::Reference< css::embed::XStorage > &i_rRecoveryStorage, const OUString &i_rComponentName, const bool i_bForEditing)
SubComponentRecovery(const css::uno::Reference< css::uno::XComponentContext > &i_rContext, const css::uno::Reference< css::sdb::application::XDatabaseDocumentUI > &i_rController, css::uno::Reference< css::lang::XComponent > i_xComponent)
css::uno::Reference< css::lang::XComponent > impl_recoverSubDocument_throw(const css::uno::Reference< css::embed::XStorage > &i_rRecoveryStorage, const OUString &i_rComponentName, const bool i_bForEditing)
const css::uno::Reference< css::lang::XComponent > m_xComponent
static OUString getComponentsStorageName(const SubComponentType i_eType)
void saveToRecoveryStorage(const css::uno::Reference< css::embed::XStorage > &i_rRecoveryStorage, MapCompTypeToCompDescs &io_mapCompDescs)
SubComponentRecovery(const css::uno::Reference< css::uno::XComponentContext > &i_rContext, const css::uno::Reference< css::sdb::application::XDatabaseDocumentUI > &i_rController, const SubComponentType i_eType)
css::uno::Reference< css::sdb::application::XDatabaseDocumentUI > m_xDocumentUI
void impl_saveQueryDesign_throw(const css::uno::Reference< css::embed::XStorage > &i_rObjectStorage)
std::map< SubComponentType, MapStringToCompDesc > MapCompTypeToCompDescs