1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
22 #include "adminpages.hxx"
23 #include <tabletree.hxx>
24 #include <com/sun/star/sdbc/XConnection.hpp>
29 // OTableSubscriptionPage
30 class OTableSubscriptionDialog
;
31 class OTableSubscriptionPage final
32 :public OGenericAdministrationPage
35 OUString m_sCatalogSeparator
;
36 bool m_bCatalogAtStart
: 1;
38 css::uno::Reference
< css::sdbc::XConnection
>
39 m_xCurrentConnection
; /// valid as long as the page is active
40 OTableSubscriptionDialog
* m_pTablesDlg
;
42 std::unique_ptr
<weld::Widget
> m_xTables
;
43 std::unique_ptr
<OTableTreeListBox
> m_xTablesList
;
46 virtual bool FillItemSet(SfxItemSet
* _rCoreAttrs
) override
;
47 virtual DeactivateRC
DeactivatePage(SfxItemSet
* _pSet
) override
;
49 OTableSubscriptionPage(weld::Container
* pPage
, OTableSubscriptionDialog
* pController
, const SfxItemSet
& _rCoreAttrs
);
50 virtual ~OTableSubscriptionPage() override
;
53 virtual void fillControls(std::vector
< std::unique_ptr
<ISaveValueWrapper
> >& _rControlList
) override
;
54 virtual void fillWindows(std::vector
< std::unique_ptr
<ISaveValueWrapper
> >& _rControlList
) override
;
56 DECL_LINK(OnTreeEntryChecked
, const weld::TreeView::iter_col
&, void);
58 /** check the tables in <member>m_aTablesList</member> according to <arg>_rTables</arg>
60 void implCheckTables(const css::uno::Sequence
< OUString
>& _rTables
);
62 /// returns the next sibling, if not available, the next sibling of the parent, a.s.o.
63 std::unique_ptr
<weld::TreeIter
> implNextSibling(const weld::TreeIter
* pEntry
) const;
65 /** return the current selection in <member>m_aTablesList</member>
67 css::uno::Sequence
< OUString
> collectDetailedSelection() const;
69 /// (un)check all entries
70 void CheckAll( bool bCheck
= true );
72 virtual void implInitControls(const SfxItemSet
& _rSet
, bool _bSaveValue
) override
;
74 // checks the tables according to the filter given
75 // in opposite to implCheckTables, this method handles the case of an empty sequence, too ...
76 void implCompleteTablesCheck( const css::uno::Sequence
< OUString
>& _rTableFilter
);
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */