Bump version to 5.0-14
[LibreOffice.git] / dbaccess / source / ext / macromigration / macromigrationdialog.hxx
blob689327e854b427ed1a21bfdb1da09f32bb0b9759
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 INCLUDED_DBACCESS_SOURCE_EXT_MACROMIGRATION_MACROMIGRATIONDIALOG_HXX
21 #define INCLUDED_DBACCESS_SOURCE_EXT_MACROMIGRATION_MACROMIGRATIONDIALOG_HXX
23 #include <com/sun/star/sdb/XOfficeDatabaseDocument.hpp>
25 #include <svtools/roadmapwizard.hxx>
27 #include <memory>
29 namespace dbmm
32 // MacroMigrationDialog
33 struct MacroMigrationDialog_Data;
34 typedef ::svt::RoadmapWizard MacroMigrationDialog_Base;
35 class MacroMigrationDialog : public MacroMigrationDialog_Base
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
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;
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;
57 // Dialog overridables
58 virtual bool Close() SAL_OVERRIDE;
59 virtual short Execute() SAL_OVERRIDE;
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 );
67 private:
68 DECL_LINK( OnStartMigration, void* );
70 private:
71 ::std::unique_ptr< MacroMigrationDialog_Data > m_pData;
74 } // namespace dbmm
76 #endif // INCLUDED_DBACCESS_SOURCE_EXT_MACROMIGRATION_MACROMIGRATIONDIALOG_HXX
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */