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 _DBAUI_TABLESSINGLEDLG_HXX_
21 : #define _DBAUI_TABLESSINGLEDLG_HXX_
22 :
23 : #include <sfx2/basedlgs.hxx>
24 : #include "IItemSetHelper.hxx"
25 : #include <comphelper/uno3.hxx>
26 : #include <com/sun/star/beans/PropertyValue.hpp>
27 :
28 : #include <memory>
29 :
30 : namespace com { namespace sun { namespace star {
31 : namespace beans {
32 : class XPropertySet;
33 : }
34 : namespace lang {
35 : class XMultiServiceFactory;
36 : }
37 : }}}
38 :
39 : //.........................................................................
40 : namespace dbaui
41 : {
42 : //.........................................................................
43 : class ODbDataSourceAdministrationHelper;
44 : //========================================================================
45 : //= OTableSubscriptionDialog
46 : //========================================================================
47 : class OTableSubscriptionDialog : public SfxSingleTabDialog, public IItemSetHelper
48 : {
49 : ::std::auto_ptr<ODbDataSourceAdministrationHelper> m_pImpl;
50 : sal_Bool m_bStopExecution; // set when the dialog should not be executed
51 :
52 : DECL_LINK( OKClickHdl, OKButton* );
53 : SfxItemSet* m_pOutSet;
54 : public:
55 :
56 : OTableSubscriptionDialog(Window* pParent
57 : ,SfxItemSet* _pItems
58 : ,const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB
59 : ,const ::com::sun::star::uno::Any& _aDataSourceName
60 : );
61 : virtual ~OTableSubscriptionDialog();
62 :
63 : // forwards from ODbDataSourceAdministrationHelper
64 : void successfullyConnected();
65 : sal_Bool getCurrentSettings(::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rDriverParams);
66 : void clearPassword();
67 : String getConnectionURL() const;
68 : ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > getCurrentDataSource();
69 0 : inline void endExecution() { m_bStopExecution = sal_True; }
70 :
71 : virtual const SfxItemSet* getOutputSet() const;
72 : virtual SfxItemSet* getWriteOutputSet();
73 :
74 : virtual short Execute();
75 : };
76 :
77 : //.........................................................................
78 : } // namespace dbaui
79 : //.........................................................................
80 :
81 : #endif // _DBAUI_TABLESSINGLEDLG_HXX_
82 :
83 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|