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 INCLUDED_EXTENSIONS_SOURCE_ABPILOT_ABPFINALPAGE_HXX
21 #define INCLUDED_EXTENSIONS_SOURCE_ABPILOT_ABPFINALPAGE_HXX
23 #include "abspage.hxx"
24 #include "abptypes.hxx"
26 #include <svtools/urlcontrol.hxx>
27 #include <svx/databaselocationinput.hxx>
28 #include <vcl/edit.hxx>
29 #include <vcl/vclptr.hxx>
35 class FinalPage final
: public AddressBookSourcePage
37 VclPtr
< ::svt::OFileURLControl
> m_pLocation
;
38 VclPtr
<PushButton
> m_pBrowse
;
39 VclPtr
<CheckBox
> m_pRegisterName
;
40 VclPtr
<CheckBox
> m_pEmbed
;
41 VclPtr
<FixedText
> m_pNameLabel
;
42 VclPtr
<FixedText
> m_pLocationLabel
;
44 VclPtr
<FixedText
> m_pDuplicateNameError
;
46 std::unique_ptr
<svx::DatabaseLocationInputController
>
47 m_pLocationController
;
49 StringBag m_aInvalidDataSourceNames
;
52 explicit FinalPage(OAddressBookSourcePilot
* _pParent
);
53 virtual ~FinalPage() override
;
54 virtual void dispose() override
;
57 // OWizardPage overridables
58 virtual void initializePage() override
;
59 virtual bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason
) override
;
61 // TabDialog overridables
62 virtual void ActivatePage() override
;
63 virtual void DeactivatePage() override
;
65 // OImportPage overridables
66 virtual bool canAdvance() const override
;
68 DECL_LINK( OnNameModified
, Edit
&, void );
69 DECL_LINK(OnRegister
, Button
*, void);
70 DECL_LINK(OnEmbed
, Button
*, void);
72 bool isValidName() const;
81 #endif // INCLUDED_EXTENSIONS_SOURCE_ABPILOT_ABPFINALPAGE_HXX
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */