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 #ifndef _SFX_DINFEDT_HXX 28 #define _SFX_DINFEDT_HXX 29 30 // include --------------------------------------------------------------- 31 32 #ifndef _SV_BUTTON_HXX 33 #include <vcl/button.hxx> 34 #endif 35 #include <vcl/dialog.hxx> 36 #include <vcl/edit.hxx> 37 #include <vcl/fixed.hxx> 38 39 // class InfoEdit_Impl --------------------------------------------------- 40 41 class InfoEdit_Impl : public Edit 42 { 43 public: 44 InfoEdit_Impl( Window* pParent, const ResId& rResId ) : 45 Edit( pParent, rResId ) {} 46 47 virtual void KeyInput( const KeyEvent& rKEvent ); 48 }; 49 50 // class SfxDocInfoEditDlg ----------------------------------------------- 51 52 class SfxDocInfoEditDlg : public ModalDialog 53 { 54 private: 55 FixedLine aInfoFL; 56 InfoEdit_Impl aInfo1ED; 57 InfoEdit_Impl aInfo2ED; 58 InfoEdit_Impl aInfo3ED; 59 InfoEdit_Impl aInfo4ED; 60 OKButton aOkBT; 61 CancelButton aCancelBT; 62 HelpButton aHelpBtn; 63 64 public: 65 SfxDocInfoEditDlg( Window* pParent ); 66 67 void SetText1( const String &rStr) { aInfo1ED.SetText( rStr ); } 68 void SetText2( const String &rStr) { aInfo2ED.SetText( rStr ); } 69 void SetText3( const String &rStr) { aInfo3ED.SetText( rStr ); } 70 void SetText4( const String &rStr) { aInfo4ED.SetText( rStr ); } 71 72 String GetText1() const { return aInfo1ED.GetText(); } 73 String GetText2() const { return aInfo2ED.GetText(); } 74 String GetText3() const { return aInfo3ED.GetText(); } 75 String GetText4() const { return aInfo4ED.GetText(); } 76 }; 77 78 #endif 79 80