1*b16fc349SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*b16fc349SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*b16fc349SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*b16fc349SAndrew Rist * distributed with this work for additional information 6*b16fc349SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*b16fc349SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*b16fc349SAndrew Rist * "License"); you may not use this file except in compliance 9*b16fc349SAndrew Rist * with the License. You may obtain a copy of the License at 10*b16fc349SAndrew Rist * 11*b16fc349SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*b16fc349SAndrew Rist * 13*b16fc349SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*b16fc349SAndrew Rist * software distributed under the License is distributed on an 15*b16fc349SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b16fc349SAndrew Rist * KIND, either express or implied. See the License for the 17*b16fc349SAndrew Rist * specific language governing permissions and limitations 18*b16fc349SAndrew Rist * under the License. 19*b16fc349SAndrew Rist * 20*b16fc349SAndrew Rist *************************************************************/ 21*b16fc349SAndrew Rist 22*b16fc349SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef PASSWORDDLG_HXX 25cdf0e10cSrcweir #define PASSWORDDLG_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <com/sun/star/task/PasswordRequestMode.hpp> 28cdf0e10cSrcweir #include <svtools/stdctrl.hxx> 29cdf0e10cSrcweir #include <vcl/button.hxx> 30cdf0e10cSrcweir #include <vcl/dialog.hxx> 31cdf0e10cSrcweir #include <vcl/edit.hxx> 32cdf0e10cSrcweir #include <vcl/group.hxx> 33cdf0e10cSrcweir #include <vcl/fixed.hxx> 34cdf0e10cSrcweir 35cdf0e10cSrcweir //============================================================================ 36cdf0e10cSrcweir 37cdf0e10cSrcweir class PasswordDialog : public ModalDialog 38cdf0e10cSrcweir { 39cdf0e10cSrcweir FixedText aFTPassword; 40cdf0e10cSrcweir Edit aEDPassword; 41cdf0e10cSrcweir FixedText aFTConfirmPassword; 42cdf0e10cSrcweir Edit aEDConfirmPassword; 43cdf0e10cSrcweir OKButton aOKBtn; 44cdf0e10cSrcweir CancelButton aCancelBtn; 45cdf0e10cSrcweir HelpButton aHelpBtn; 46cdf0e10cSrcweir FixedLine aFixedLine1; 47cdf0e10cSrcweir sal_uInt16 nMinLen; 48cdf0e10cSrcweir String aPasswdMismatch; 49cdf0e10cSrcweir 50cdf0e10cSrcweir 51cdf0e10cSrcweir DECL_LINK( OKHdl_Impl, OKButton * ); 52cdf0e10cSrcweir 53cdf0e10cSrcweir public: 54cdf0e10cSrcweir PasswordDialog( Window* pParent, ::com::sun::star::task::PasswordRequestMode nDlgMode, ResMgr * pResMgr, ::rtl::OUString& aDocURL, 55cdf0e10cSrcweir bool bOpenToModify = false, bool bIsSimplePasswordRequest = false ); 56cdf0e10cSrcweir SetMinLen(sal_uInt16 nMin)57cdf0e10cSrcweir void SetMinLen( sal_uInt16 nMin ) { nMinLen = nMin; } GetPassword() const58cdf0e10cSrcweir String GetPassword() const { return aEDPassword.GetText(); } 59cdf0e10cSrcweir 60cdf0e10cSrcweir private: 61cdf0e10cSrcweir ::com::sun::star::task::PasswordRequestMode nDialogMode; 62cdf0e10cSrcweir ResMgr* pResourceMgr; 63cdf0e10cSrcweir }; 64cdf0e10cSrcweir 65cdf0e10cSrcweir #endif // PASSWORDDLG_HXX 66cdf0e10cSrcweir 67