bump product version to 5.0.4.1
[LibreOffice.git] / extensions / source / abpilot / abpfinalpage.hxx
blobd601e8d3e48d24fc13afa5d7d0b486acf2e75027
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<FixedText> m_pNameLabel;
42 VclPtr<Edit> m_pName;
43 VclPtr<FixedText> m_pDuplicateNameError;
45 svx::DatabaseLocationInputController*
46 m_pLocationController;
48 StringBag m_aInvalidDataSourceNames;
50 public:
51 FinalPage( OAddessBookSourcePilot* _pParent );
52 virtual ~FinalPage();
53 virtual void dispose() SAL_OVERRIDE;
55 protected:
56 // OWizardPage overridables
57 virtual void initializePage() SAL_OVERRIDE;
58 virtual bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason ) SAL_OVERRIDE;
60 // TabDialog overridables
61 virtual void ActivatePage() SAL_OVERRIDE;
62 virtual void DeactivatePage() SAL_OVERRIDE;
64 // OImportPage overridables
65 virtual bool canAdvance() const SAL_OVERRIDE;
67 private:
68 DECL_LINK( OnNameModified, Edit* );
69 DECL_LINK(OnRegister, void *);
71 bool isValidName() const;
72 void implCheckName();
73 void setFields();
77 } // namespace abp
80 #endif // INCLUDED_EXTENSIONS_SOURCE_ABPILOT_ABPFINALPAGE_HXX
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */