Update ooo320-m1
[ooovba.git] / svx / source / cui / webconninfo.hxx
blob3ee7e504583a5f05290e619d8885c0dedb650e17
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: webconninfo.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _SVX_WEBCONNINFO_HXX
31 #define _SVX_WEBCONNINFO_HXX
33 #include <vcl/button.hxx>
34 #include <vcl/dialog.hxx>
35 #include <vcl/fixed.hxx>
36 #include <svtools/stdctrl.hxx>
37 #include <svx/simptabl.hxx>
39 //........................................................................
40 namespace svx
42 //........................................................................
44 class PasswordTable : public SvxSimpleTable
46 public:
47 PasswordTable( Window* pParent, const ResId& rResId );
49 void InsertHeaderItem( USHORT nColumn, const String& rText, HeaderBarItemBits nBits );
50 void ResetTabs();
51 void Resort( bool bForced );
54 //====================================================================
55 //= class WebConnectionIfoDialog
56 //====================================================================
57 class WebConnectionInfoDialog : public ModalDialog
59 private:
60 FixedInfo m_aNeverShownFI;
61 PasswordTable m_aPasswordsLB;
62 PushButton m_aRemoveBtn;
63 PushButton m_aRemoveAllBtn;
64 PushButton m_aChangeBtn;
65 FixedLine m_aButtonsFL;
66 CancelButton m_aCloseBtn;
67 HelpButton m_aHelpBtn;
68 sal_Int32 m_nPos;
70 DECL_LINK( HeaderBarClickedHdl, SvxSimpleTable* );
71 DECL_LINK( RemovePasswordHdl, PushButton* );
72 DECL_LINK( RemoveAllPasswordsHdl, PushButton* );
73 DECL_LINK( ChangePasswordHdl, PushButton* );
74 DECL_LINK( EntrySelectedHdl, void* );
76 void FillPasswordList();
78 public:
79 WebConnectionInfoDialog( Window* pParent );
80 ~WebConnectionInfoDialog();
83 //........................................................................
84 } // namespace svx
85 //........................................................................
87 #endif // #ifndef _SVX_WEBCONNINFO_HXX