Line data Source code
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 : #ifndef INCLUDED_DBACCESS_SOURCE_EXT_MACROMIGRATION_MACROMIGRATIONDIALOG_HXX
21 : #define INCLUDED_DBACCESS_SOURCE_EXT_MACROMIGRATION_MACROMIGRATIONDIALOG_HXX
22 :
23 : #include <com/sun/star/sdb/XOfficeDatabaseDocument.hpp>
24 :
25 : #include <svtools/roadmapwizard.hxx>
26 :
27 : #include <memory>
28 :
29 : namespace dbmm
30 : {
31 :
32 : // MacroMigrationDialog
33 : struct MacroMigrationDialog_Data;
34 : typedef ::svt::RoadmapWizard MacroMigrationDialog_Base;
35 0 : class MacroMigrationDialog : public MacroMigrationDialog_Base
36 : {
37 : public:
38 : MacroMigrationDialog(
39 : vcl::Window* _pParent,
40 : const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rContext,
41 : const ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XOfficeDatabaseDocument >& _rxDocument
42 : );
43 :
44 : const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >&
45 : getComponentContext() const;
46 : const ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XOfficeDatabaseDocument >&
47 : getDocument() const;
48 :
49 : protected:
50 : // OWizardMachine overridables
51 : virtual void enterState( WizardState _nState ) SAL_OVERRIDE;
52 : virtual bool prepareLeaveCurrentState( CommitPageReason _eReason ) SAL_OVERRIDE;
53 : virtual bool leaveState( WizardState _nState ) SAL_OVERRIDE;
54 : virtual WizardState determineNextState( WizardState _nCurrentState ) const SAL_OVERRIDE;
55 : virtual bool onFinish() SAL_OVERRIDE;
56 :
57 : // Dialog overridables
58 : virtual bool Close() SAL_OVERRIDE;
59 : virtual short Execute() SAL_OVERRIDE;
60 :
61 : private:
62 : void impl_showCloseDocsError( bool _bShow );
63 : bool impl_closeSubDocs_nothrow();
64 : bool impl_backupDocument_nothrow() const;
65 : void impl_reloadDocument_nothrow( bool _bMigrationSuccess );
66 :
67 : private:
68 : DECL_LINK( OnStartMigration, void* );
69 :
70 : private:
71 : ::std::unique_ptr< MacroMigrationDialog_Data > m_pData;
72 : };
73 :
74 : } // namespace dbmm
75 :
76 : #endif // INCLUDED_DBACCESS_SOURCE_EXT_MACROMIGRATION_MACROMIGRATIONDIALOG_HXX
77 :
78 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|