Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef EXTENSIONS_ABP_ABPFINALPAGE_HXX
21 : #define EXTENSIONS_ABP_ABPFINALPAGE_HXX
22 :
23 : #include "abspage.hxx"
24 : #include "abptypes.hxx"
25 :
26 : #include <svtools/urlcontrol.hxx>
27 : #include <svx/databaselocationinput.hxx>
28 : #include <vcl/edit.hxx>
29 :
30 :
31 : namespace abp
32 : {
33 :
34 :
35 :
36 : //= FinalPage
37 :
38 0 : class FinalPage : public AddressBookSourcePage
39 : {
40 : protected:
41 : FixedText m_aExplanation;
42 : FixedText m_aLocationLabel;
43 : ::svt::OFileURLControl m_aLocation;
44 : PushButton m_aBrowse;
45 : CheckBox m_aRegisterName;
46 : FixedText m_aNameLabel;
47 : Edit m_aName;
48 : FixedText m_aDuplicateNameError;
49 :
50 : ::svx::DatabaseLocationInputController
51 : m_aLocationController;
52 :
53 : StringBag m_aInvalidDataSourceNames;
54 :
55 : public:
56 : FinalPage( OAddessBookSourcePilot* _pParent );
57 :
58 : protected:
59 : // OWizardPage overridables
60 : virtual void initializePage() SAL_OVERRIDE;
61 : virtual bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason ) SAL_OVERRIDE;
62 :
63 : // TabDialog overridables
64 : virtual void ActivatePage() SAL_OVERRIDE;
65 : virtual void DeactivatePage() SAL_OVERRIDE;
66 :
67 : // OImportPage overridables
68 : virtual bool canAdvance() const SAL_OVERRIDE;
69 :
70 : private:
71 : DECL_LINK( OnNameModified, Edit* );
72 : DECL_LINK(OnRegister, void *);
73 :
74 : sal_Bool isValidName() const;
75 : void implCheckName();
76 : void setFields();
77 : };
78 :
79 :
80 : } // namespace abp
81 :
82 :
83 : #endif // EXTENSIONS_ABP_ABPFINALPAGE_HXX
84 :
85 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|