fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / dbaccess / source / ui / dlg / UserAdmin.hxx
blobf08b43f4dfa294b3433e3ac56b8fecb57618f8dc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 {
33 namespace sdbc {
34 class XConnection;
36 }}}
38 namespace dbaui
41 class OUserAdmin : public OGenericAdministrationPage
43 friend class VclPtr<OUserAdmin>;
44 protected:
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;
55 OUString m_UserName;
57 // methods
58 DECL_LINK( ListDblClickHdl, ListBox * );
59 DECL_LINK( CloseHdl, PushButton * );
60 DECL_LINK( UserHdl, PushButton * );
62 void FillUserNames();
64 OUserAdmin( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs);
65 public:
66 static VclPtr<SfxTabPage> Create( vcl::Window* pParent, const SfxItemSet* _rAttrSet );
68 virtual ~OUserAdmin();
69 virtual void dispose() SAL_OVERRIDE;
70 OUString GetUser();
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: */