bump product version to 6.3.0.0.beta1
[LibreOffice.git] / extensions / source / abpilot / abpfinalpage.hxx
blob595806a77570bae2f9dd9210e810887600b54097
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_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>
32 namespace abp
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;
43 VclPtr<Edit> m_pName;
44 VclPtr<FixedText> m_pDuplicateNameError;
46 std::unique_ptr<svx::DatabaseLocationInputController>
47 m_pLocationController;
49 StringBag m_aInvalidDataSourceNames;
51 public:
52 explicit FinalPage(OAddressBookSourcePilot* _pParent);
53 virtual ~FinalPage() override;
54 virtual void dispose() override;
56 private:
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;
73 void implCheckName();
74 void setFields();
78 } // namespace abp
81 #endif // INCLUDED_EXTENSIONS_SOURCE_ABPILOT_ABPFINALPAGE_HXX
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */