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 .
19 #ifndef INCLUDED_DBACCESS_SOURCE_UI_DLG_USERADMIN_HXX
20 #define INCLUDED_DBACCESS_SOURCE_UI_DLG_USERADMIN_HXX
22 #include <vcl/fixed.hxx>
23 #include <vcl/field.hxx>
24 #include <vcl/lstbox.hxx>
25 #include <vcl/button.hxx>
26 #include <vcl/dialog.hxx>
27 #include <vcl/group.hxx>
28 #include "TableGrantCtrl.hxx"
29 #include "adminpages.hxx"
30 #include <comphelper/uno3.hxx>
32 namespace com
{ namespace sun
{ namespace star
{
41 class OUserAdmin
: public OGenericAdministrationPage
43 friend class VclPtr
<OUserAdmin
>;
45 VclPtr
<ListBox
> m_pUSER
;
46 VclPtr
<PushButton
> m_pNEWUSER
;
47 VclPtr
<PushButton
> m_pCHANGEPWD
;
48 VclPtr
<PushButton
> m_pDELETEUSER
;
49 VclPtr
<OTableGrantControl
> m_TableCtrl
; // show the grant rights of one user
51 ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XConnection
> m_xConnection
;
52 ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameAccess
> m_xUsers
;
53 ::com::sun::star::uno::Sequence
< OUString
> m_aUserNames
;
58 DECL_LINK( ListDblClickHdl
, ListBox
* );
59 DECL_LINK( CloseHdl
, PushButton
* );
60 DECL_LINK( UserHdl
, PushButton
* );
64 OUserAdmin( vcl::Window
* pParent
, const SfxItemSet
& _rCoreAttrs
);
66 static VclPtr
<SfxTabPage
> Create( vcl::Window
* pParent
, const SfxItemSet
* _rAttrSet
);
68 virtual ~OUserAdmin();
69 virtual void dispose() SAL_OVERRIDE
;
72 // subclasses must override this, but it isn't pure virtual
73 virtual void implInitControls(const SfxItemSet
& _rSet
, bool _bSaveValue
) SAL_OVERRIDE
;
75 // <method>OGenericAdministrationPage::fillControls</method>
76 virtual void fillControls(::std::vector
< ISaveValueWrapper
* >& _rControlList
) SAL_OVERRIDE
;
78 // <method>OGenericAdministrationPage::fillWindows</method>
79 virtual void fillWindows(::std::vector
< ISaveValueWrapper
* >& _rControlList
) SAL_OVERRIDE
;
82 #endif // INCLUDED_DBACCESS_SOURCE_UI_DLG_USERADMIN_HXX
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */