Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / uui / source / masterpassworddlg.cxx
blobddfe0762ccce08e2ce99a09f7163b12ac1249167
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include <vcl/msgbox.hxx>
31 #include <ids.hrc>
32 #include <masterpassworddlg.hrc>
33 #include <masterpassworddlg.hxx>
35 // MasterPasswordDialog---------------------------------------------------
37 // -----------------------------------------------------------------------
39 IMPL_LINK_NOARG(MasterPasswordDialog, OKHdl_Impl)
41 EndDialog( RET_OK );
42 return 1;
45 // -----------------------------------------------------------------------
47 MasterPasswordDialog::MasterPasswordDialog
49 Window* pParent,
50 ::com::sun::star::task::PasswordRequestMode aDialogMode,
51 ResMgr* pResMgr
52 ) :
54 ModalDialog( pParent, ResId( DLG_UUI_MASTERPASSWORD, *pResMgr ) ),
56 aFTMasterPassword ( this, ResId( FT_MASTERPASSWORD, *pResMgr ) ),
57 aEDMasterPassword ( this, ResId( ED_MASTERPASSWORD, *pResMgr ) ),
58 aFL ( this, ResId( FL_FIXED_LINE, *pResMgr ) ),
59 aOKBtn ( this, ResId( BTN_MASTERPASSWORD_OK, *pResMgr ) ),
60 aCancelBtn ( this, ResId( BTN_MASTERPASSWORD_CANCEL, *pResMgr ) ),
61 aHelpBtn ( this, ResId( BTN_MASTERPASSWORD_HELP, *pResMgr ) ),
62 nDialogMode ( aDialogMode ),
63 pResourceMgr ( pResMgr )
65 if( nDialogMode == ::com::sun::star::task::PasswordRequestMode_PASSWORD_REENTER )
67 String aErrorMsg( ResId( STR_ERROR_MASTERPASSWORD_WRONG, *pResourceMgr ));
68 ErrorBox aErrorBox( pParent, WB_OK, aErrorMsg );
69 aErrorBox.Execute();
72 FreeResource();
74 aOKBtn.SetClickHdl( LINK( this, MasterPasswordDialog, OKHdl_Impl ) );
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */