1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #include <svtools/filedlg.hxx> 29 #include <vcl/msgbox.hxx> 30 31 #ifndef UUI_IDS_HRC 32 #include <ids.hrc> 33 #endif 34 #ifndef UUI_MASTERPASSWORDDLG_HRC 35 #include <masterpassworddlg.hrc> 36 #endif 37 #include <masterpassworddlg.hxx> 38 39 // MasterPasswordDialog--------------------------------------------------- 40 41 // ----------------------------------------------------------------------- 42 43 IMPL_LINK( MasterPasswordDialog, OKHdl_Impl, OKButton *, EMPTYARG ) 44 { 45 EndDialog( RET_OK ); 46 return 1; 47 } 48 49 // ----------------------------------------------------------------------- 50 51 MasterPasswordDialog::MasterPasswordDialog 52 ( 53 Window* pParent, 54 ::com::sun::star::task::PasswordRequestMode aDialogMode, 55 ResMgr* pResMgr 56 ) : 57 58 ModalDialog( pParent, ResId( DLG_UUI_MASTERPASSWORD, *pResMgr ) ), 59 60 aFTMasterPassword ( this, ResId( FT_MASTERPASSWORD, *pResMgr ) ), 61 aEDMasterPassword ( this, ResId( ED_MASTERPASSWORD, *pResMgr ) ), 62 aFL ( this, ResId( FL_FIXED_LINE, *pResMgr ) ), 63 aOKBtn ( this, ResId( BTN_MASTERPASSWORD_OK, *pResMgr ) ), 64 aCancelBtn ( this, ResId( BTN_MASTERPASSWORD_CANCEL, *pResMgr ) ), 65 aHelpBtn ( this, ResId( BTN_MASTERPASSWORD_HELP, *pResMgr ) ), 66 nDialogMode ( aDialogMode ), 67 pResourceMgr ( pResMgr ) 68 { 69 if( nDialogMode == ::com::sun::star::task::PasswordRequestMode_PASSWORD_REENTER ) 70 { 71 String aErrorMsg( ResId( STR_ERROR_MASTERPASSWORD_WRONG, *pResourceMgr )); 72 ErrorBox aErrorBox( pParent, WB_OK, aErrorMsg ); 73 aErrorBox.Execute(); 74 } 75 76 FreeResource(); 77 78 aOKBtn.SetClickHdl( LINK( this, MasterPasswordDialog, OKHdl_Impl ) ); 79 }; 80 81