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 : #ifndef INCLUDED_SW_SOURCE_UI_DBUI_ADDRESSLISTDIALOG_HXX
20 : #define INCLUDED_SW_SOURCE_UI_DBUI_ADDRESSLISTDIALOG_HXX
21 :
22 : #include <sfx2/basedlgs.hxx>
23 : #include <svtools/stdctrl.hxx>
24 : #include <vcl/button.hxx>
25 : #include <svtools/svtabbx.hxx>
26 : #include <svtools/headbar.hxx>
27 : #include <swdbdata.hxx>
28 : #include "sharedconnection.hxx"
29 :
30 : namespace com{namespace sun{namespace star{
31 : namespace container{
32 : class XNameAccess;
33 : }
34 : namespace sdb{
35 : class XDatabaseContext;
36 : }
37 : namespace sdbc{
38 : class XDataSource;
39 : }
40 : namespace sdbcx{
41 : class XColumnsSupplier;
42 : }
43 : }}}
44 : class SwMailMergeAddressBlockPage;
45 : class SwAddrSourceLB;
46 :
47 : class SwAddressListDialog : public SfxModalDialog
48 : {
49 : VclPtr<FixedText> m_pDescriptionFI;
50 :
51 : VclPtr<SwAddrSourceLB> m_pListLB;
52 :
53 : VclPtr<PushButton> m_pLoadListPB;
54 : VclPtr<PushButton> m_pCreateListPB;
55 : VclPtr<PushButton> m_pFilterPB;
56 : VclPtr<PushButton> m_pEditPB;
57 : VclPtr<PushButton> m_pTablePB;
58 :
59 : VclPtr<OKButton> m_pOK;
60 :
61 : OUString m_sName;
62 : OUString m_sTable;
63 : OUString m_sConnecting;
64 :
65 : SvTreeListEntry* m_pCreatedDataSource;
66 :
67 : bool m_bInSelectHdl;
68 :
69 : VclPtr<SwMailMergeAddressBlockPage> m_pAddressPage;
70 :
71 : ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XDatabaseContext> m_xDBContext;
72 :
73 : SwDBData m_aDBData;
74 :
75 : void DetectTablesAndQueries(SvTreeListEntry* pSelect, bool bWidthDialog);
76 :
77 : DECL_LINK(FilterHdl_Impl, void *);
78 : DECL_LINK(LoadHdl_Impl, void *);
79 : DECL_LINK(CreateHdl_Impl, PushButton*);
80 : DECL_LINK(ListBoxSelectHdl_Impl, void *);
81 : DECL_LINK(EditHdl_Impl, PushButton*);
82 : DECL_LINK(TableSelectHdl_Impl, PushButton*);
83 : DECL_LINK(OKHdl_Impl, void *);
84 :
85 : DECL_LINK(StaticListBoxSelectHdl_Impl, SvTreeListEntry*);
86 :
87 : public:
88 : SwAddressListDialog(SwMailMergeAddressBlockPage* pParent);
89 : virtual ~SwAddressListDialog();
90 : virtual void dispose() SAL_OVERRIDE;
91 :
92 : ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDataSource>
93 : GetSource();
94 :
95 : SharedConnection GetConnection();
96 :
97 : ::com::sun::star::uno::Reference< ::com::sun::star::sdbcx::XColumnsSupplier>
98 : GetColumnsSupplier();
99 :
100 0 : const SwDBData& GetDBData() const {return m_aDBData;}
101 : OUString GetFilter();
102 : };
103 : #endif
104 :
105 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|