Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / extensions / source / abpilot / abpfinalpage.hxx
blob4766006cdf97702b5ea9d5dcfda844016733ed66
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 : public AddressBookSourcePage
37 protected:
38 VclPtr< ::svt::OFileURLControl> m_pLocation;
39 VclPtr<PushButton> m_pBrowse;
40 VclPtr<CheckBox> m_pRegisterName;
41 VclPtr<CheckBox> m_pEmbed;
42 VclPtr<FixedText> m_pNameLabel;
43 VclPtr<FixedText> m_pLocationLabel;
44 VclPtr<Edit> m_pName;
45 VclPtr<FixedText> m_pDuplicateNameError;
47 svx::DatabaseLocationInputController*
48 m_pLocationController;
50 StringBag m_aInvalidDataSourceNames;
52 public:
53 explicit FinalPage(OAddressBookSourcePilot* _pParent);
54 virtual ~FinalPage() override;
55 virtual void dispose() override;
57 protected:
58 // OWizardPage overridables
59 virtual void initializePage() override;
60 virtual bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason ) override;
62 // TabDialog overridables
63 virtual void ActivatePage() override;
64 virtual void DeactivatePage() override;
66 // OImportPage overridables
67 virtual bool canAdvance() const override;
69 private:
70 DECL_LINK( OnNameModified, Edit&, void );
71 DECL_LINK(OnRegister, Button*, void);
72 DECL_LINK(OnEmbed, Button*, void);
74 bool isValidName() const;
75 void implCheckName();
76 void setFields();
80 } // namespace abp
83 #endif // INCLUDED_EXTENSIONS_SOURCE_ABPILOT_ABPFINALPAGE_HXX
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */