xref: /aoo42x/main/svx/source/dialog/passwd.cxx (revision f6e50924)
1*f6e50924SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*f6e50924SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*f6e50924SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*f6e50924SAndrew Rist  * distributed with this work for additional information
6*f6e50924SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*f6e50924SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*f6e50924SAndrew Rist  * "License"); you may not use this file except in compliance
9*f6e50924SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*f6e50924SAndrew Rist  *
11*f6e50924SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*f6e50924SAndrew Rist  *
13*f6e50924SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*f6e50924SAndrew Rist  * software distributed under the License is distributed on an
15*f6e50924SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*f6e50924SAndrew Rist  * KIND, either express or implied.  See the License for the
17*f6e50924SAndrew Rist  * specific language governing permissions and limitations
18*f6e50924SAndrew Rist  * under the License.
19*f6e50924SAndrew Rist  *
20*f6e50924SAndrew Rist  *************************************************************/
21*f6e50924SAndrew Rist 
22*f6e50924SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir // include ---------------------------------------------------------------
28cdf0e10cSrcweir #include <tools/shl.hxx>
29cdf0e10cSrcweir #ifndef _MSGBOX_HXX //autogen
30cdf0e10cSrcweir #include <vcl/msgbox.hxx>
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir 
33cdf0e10cSrcweir #define _SVX_PASSWD_CXX
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #include "svx/passwd.hxx"
36cdf0e10cSrcweir #include <svx/dialmgr.hxx>
37cdf0e10cSrcweir #include <svx/dialogs.hrc>
38cdf0e10cSrcweir #include "passwd.hrc"
39cdf0e10cSrcweir 
40cdf0e10cSrcweir // class SvxPasswordDialog -----------------------------------------------
41cdf0e10cSrcweir 
IMPL_LINK(SvxPasswordDialog,ButtonHdl,OKButton *,EMPTYARG)42cdf0e10cSrcweir IMPL_LINK( SvxPasswordDialog, ButtonHdl, OKButton *, EMPTYARG )
43cdf0e10cSrcweir {
44cdf0e10cSrcweir     sal_Bool bOK = sal_True;
45cdf0e10cSrcweir 	short nRet = RET_OK;
46cdf0e10cSrcweir 	String aEmpty;
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	if ( aNewPasswdED.GetText() != aRepeatPasswdED.GetText() )
49cdf0e10cSrcweir 	{
50cdf0e10cSrcweir 		ErrorBox( this, WB_OK, aRepeatPasswdErrStr ).Execute();
51cdf0e10cSrcweir         aNewPasswdED.SetText( aEmpty );
52cdf0e10cSrcweir 		aRepeatPasswdED.SetText( aEmpty );
53cdf0e10cSrcweir 		aNewPasswdED.GrabFocus();
54cdf0e10cSrcweir 		bOK = sal_False;
55cdf0e10cSrcweir     }
56cdf0e10cSrcweir 
57cdf0e10cSrcweir     if ( bOK && aCheckPasswordHdl.IsSet() && !aCheckPasswordHdl.Call( this ) )
58cdf0e10cSrcweir     {
59cdf0e10cSrcweir         ErrorBox( this, WB_OK, aOldPasswdErrStr ).Execute();
60cdf0e10cSrcweir         aOldPasswdED.SetText( aEmpty );
61cdf0e10cSrcweir 		aOldPasswdED.GrabFocus();
62cdf0e10cSrcweir 		bOK = sal_False;
63cdf0e10cSrcweir     }
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 	if ( bOK )
66cdf0e10cSrcweir 		EndDialog( nRet );
67cdf0e10cSrcweir 
68cdf0e10cSrcweir 	return 0;
69cdf0e10cSrcweir }
70cdf0e10cSrcweir 
71cdf0e10cSrcweir // -----------------------------------------------------------------------
72cdf0e10cSrcweir 
IMPL_LINK(SvxPasswordDialog,EditModifyHdl,Edit *,EMPTYARG)73cdf0e10cSrcweir IMPL_LINK( SvxPasswordDialog, EditModifyHdl, Edit *, EMPTYARG )
74cdf0e10cSrcweir {
75cdf0e10cSrcweir 	if ( !bEmpty )
76cdf0e10cSrcweir 	{
77cdf0e10cSrcweir         String aPasswd = aRepeatPasswdED.GetText();
78cdf0e10cSrcweir 		aPasswd.EraseLeadingChars().EraseTrailingChars();
79cdf0e10cSrcweir 
80cdf0e10cSrcweir 		if ( !aPasswd.Len() && aOKBtn.IsEnabled() )
81cdf0e10cSrcweir 			aOKBtn.Disable();
82cdf0e10cSrcweir         else if ( aPasswd.Len() && !aOKBtn.IsEnabled() )
83cdf0e10cSrcweir 			aOKBtn.Enable();
84cdf0e10cSrcweir 	}
85cdf0e10cSrcweir 	else if ( !aOKBtn.IsEnabled() )
86cdf0e10cSrcweir 		aOKBtn.Enable();
87cdf0e10cSrcweir 	return 0;
88cdf0e10cSrcweir }
89cdf0e10cSrcweir 
90cdf0e10cSrcweir // -----------------------------------------------------------------------
91cdf0e10cSrcweir 
SvxPasswordDialog(Window * pParent,sal_Bool bAllowEmptyPasswords,sal_Bool bDisableOldPassword)92cdf0e10cSrcweir SvxPasswordDialog::SvxPasswordDialog( Window* pParent, sal_Bool bAllowEmptyPasswords, sal_Bool bDisableOldPassword ) :
93cdf0e10cSrcweir 	SfxModalDialog( pParent, SVX_RES( RID_SVXDLG_PASSWORD ) ),
94cdf0e10cSrcweir     aOldFL          ( this, SVX_RES( FL_OLD_PASSWD ) ),
95cdf0e10cSrcweir     aOldPasswdFT    ( this, SVX_RES( FT_OLD_PASSWD ) ),
96cdf0e10cSrcweir 	aOldPasswdED	( this, SVX_RES( ED_OLD_PASSWD ) ),
97cdf0e10cSrcweir     aNewFL          ( this, SVX_RES( FL_NEW_PASSWD ) ),
98cdf0e10cSrcweir     aNewPasswdFT    ( this, SVX_RES( FT_NEW_PASSWD ) ),
99cdf0e10cSrcweir 	aNewPasswdED	( this, SVX_RES( ED_NEW_PASSWD ) ),
100cdf0e10cSrcweir 	aRepeatPasswdFT	( this, SVX_RES( FT_REPEAT_PASSWD ) ),
101cdf0e10cSrcweir 	aRepeatPasswdED	( this, SVX_RES( ED_REPEAT_PASSWD ) ),
102cdf0e10cSrcweir     aOKBtn          ( this, SVX_RES( BTN_PASSWD_OK ) ),
103cdf0e10cSrcweir 	aEscBtn			( this, SVX_RES( BTN_PASSWD_ESC ) ),
104cdf0e10cSrcweir 	aHelpBtn		( this, SVX_RES( BTN_PASSWD_HELP ) ),
105cdf0e10cSrcweir 	aOldPasswdErrStr	( SVX_RES( STR_ERR_OLD_PASSWD ) ),
106cdf0e10cSrcweir 	aRepeatPasswdErrStr	( SVX_RES( STR_ERR_REPEAT_PASSWD ) ),
107cdf0e10cSrcweir     bEmpty  ( bAllowEmptyPasswords )
108cdf0e10cSrcweir {
109cdf0e10cSrcweir 	FreeResource();
110cdf0e10cSrcweir 
111cdf0e10cSrcweir 	aOKBtn.SetClickHdl( LINK( this, SvxPasswordDialog, ButtonHdl ) );
112cdf0e10cSrcweir     aRepeatPasswdED.SetModifyHdl( LINK( this, SvxPasswordDialog, EditModifyHdl ) );
113cdf0e10cSrcweir 	EditModifyHdl( 0 );
114cdf0e10cSrcweir 
115cdf0e10cSrcweir     if ( bDisableOldPassword )
116cdf0e10cSrcweir     {
117cdf0e10cSrcweir         aOldFL.Disable();
118cdf0e10cSrcweir      	aOldPasswdFT.Disable();
119cdf0e10cSrcweir 		aOldPasswdED.Disable();
120cdf0e10cSrcweir 		aNewPasswdED.GrabFocus();
121cdf0e10cSrcweir     }
122cdf0e10cSrcweir }
123cdf0e10cSrcweir 
124cdf0e10cSrcweir // -----------------------------------------------------------------------
125cdf0e10cSrcweir 
~SvxPasswordDialog()126cdf0e10cSrcweir SvxPasswordDialog::~SvxPasswordDialog()
127cdf0e10cSrcweir {
128cdf0e10cSrcweir }
129cdf0e10cSrcweir 
130cdf0e10cSrcweir // -----------------------------------------------------------------------
131cdf0e10cSrcweir 
132cdf0e10cSrcweir 
133