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 : FixedText* m_pDescriptionFI;
50 :
51 : SwAddrSourceLB* m_pListLB;
52 :
53 : PushButton* m_pLoadListPB;
54 : PushButton* m_pCreateListPB;
55 : PushButton* m_pFilterPB;
56 : PushButton* m_pEditPB;
57 : PushButton* m_pTablePB;
58 :
59 : OKButton* m_pOK;
60 :
61 : OUString m_sName;
62 : OUString m_sTable;
63 : OUString m_sConnecting;
64 :
65 : OUString m_sCreatedURL;
66 : SvTreeListEntry* m_pCreatedDataSource;
67 :
68 : bool m_bInSelectHdl;
69 :
70 : SwMailMergeAddressBlockPage* m_pAddressPage;
71 :
72 : ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XDatabaseContext> m_xDBContext;
73 :
74 : SwDBData m_aDBData;
75 :
76 : void DetectTablesAndQueries(SvTreeListEntry* pSelect, bool bWidthDialog);
77 :
78 : DECL_LINK(FilterHdl_Impl, void *);
79 : DECL_LINK(LoadHdl_Impl, void *);
80 : DECL_LINK(CreateHdl_Impl, PushButton*);
81 : DECL_LINK(ListBoxSelectHdl_Impl, void *);
82 : DECL_LINK(EditHdl_Impl, PushButton*);
83 : DECL_LINK(TableSelectHdl_Impl, PushButton*);
84 : DECL_LINK(OKHdl_Impl, void *);
85 :
86 : DECL_STATIC_LINK(SwAddressListDialog, StaticListBoxSelectHdl_Impl, SvTreeListEntry*);
87 :
88 : public:
89 : SwAddressListDialog(SwMailMergeAddressBlockPage* pParent);
90 : virtual ~SwAddressListDialog();
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: */
|