Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #ifndef EXTENSIONS_ABP_ABPFINALPAGE_HXX
30 : : #define EXTENSIONS_ABP_ABPFINALPAGE_HXX
31 : :
32 : : #include "abspage.hxx"
33 : : #include "abptypes.hxx"
34 : :
35 : : #include <svtools/urlcontrol.hxx>
36 : : #include <svx/databaselocationinput.hxx>
37 : : #include <vcl/edit.hxx>
38 : :
39 : : //.........................................................................
40 : : namespace abp
41 : : {
42 : : //.........................................................................
43 : :
44 : : //=====================================================================
45 : : //= FinalPage
46 : : //=====================================================================
47 : 0 : class FinalPage : public AddressBookSourcePage
48 : : {
49 : : protected:
50 : : FixedText m_aExplanation;
51 : : FixedText m_aLocationLabel;
52 : : ::svt::OFileURLControl m_aLocation;
53 : : PushButton m_aBrowse;
54 : : CheckBox m_aRegisterName;
55 : : FixedText m_aNameLabel;
56 : : Edit m_aName;
57 : : FixedText m_aDuplicateNameError;
58 : :
59 : : ::svx::DatabaseLocationInputController
60 : : m_aLocationController;
61 : :
62 : : StringBag m_aInvalidDataSourceNames;
63 : :
64 : : public:
65 : : FinalPage( OAddessBookSourcePilot* _pParent );
66 : :
67 : : protected:
68 : : // OWizardPage overridables
69 : : virtual void initializePage();
70 : : virtual sal_Bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason );
71 : :
72 : : // TabDialog overridables
73 : : virtual void ActivatePage();
74 : : virtual void DeactivatePage();
75 : :
76 : : // OImportPage overridables
77 : : virtual bool canAdvance() const;
78 : :
79 : : private:
80 : : DECL_LINK( OnNameModified, Edit* );
81 : : DECL_LINK(OnRegister, void *);
82 : :
83 : : sal_Bool isValidName() const;
84 : : void implCheckName();
85 : : void setFields();
86 : : };
87 : :
88 : : //.........................................................................
89 : : } // namespace abp
90 : : //.........................................................................
91 : :
92 : : #endif // EXTENSIONS_ABP_ABPFINALPAGE_HXX
93 : :
94 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|