2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* $RCSfile: dlgfield.hxx,v $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* $Revision: 1.4 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2005-09-09 05:26:19 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2005-09-09 04:26:19 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _SD_DLGFIELD_HXX
|
|
|
|
#define _SD_DLGFIELD_HXX
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _LSTBOX_HXX //autogen
|
|
|
|
#include <vcl/lstbox.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _GROUP_HXX //autogen
|
|
|
|
#include <vcl/group.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _FIXED_HXX //autogen
|
|
|
|
#include <vcl/fixed.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _BUTTON_HXX //autogen
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _DIALOG_HXX //autogen
|
|
|
|
#include <vcl/dialog.hxx>
|
|
|
|
#endif
|
2002-10-21 14:30:08 +00:00
|
|
|
#ifndef _SVX_LANGBOX_HXX
|
|
|
|
#include <svx/langbox.hxx>
|
|
|
|
#endif
|
2000-09-18 16:07:07 +00:00
|
|
|
class SvxFieldData;
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Dialog zum Bearbeiten von Feldbefehlen
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
class SdModifyFieldDlg : public ModalDialog
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
RadioButton aRbtFix;
|
|
|
|
RadioButton aRbtVar;
|
2001-06-15 17:16:52 +00:00
|
|
|
FixedLine aGrpType;
|
2002-10-21 14:30:08 +00:00
|
|
|
FixedText maFtLanguage;
|
|
|
|
SvxLanguageBox maLbLanguage;
|
2000-09-18 16:07:07 +00:00
|
|
|
FixedText aFtFormat;
|
|
|
|
ListBox aLbFormat;
|
|
|
|
OKButton aBtnOK;
|
|
|
|
CancelButton aBtnCancel;
|
|
|
|
HelpButton aBtnHelp;
|
2002-10-21 14:30:08 +00:00
|
|
|
SfxItemSet maInputSet;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
const SvxFieldData* pField;
|
|
|
|
|
2002-10-21 14:30:08 +00:00
|
|
|
void FillFormatList();
|
2000-09-18 16:07:07 +00:00
|
|
|
void FillControls();
|
|
|
|
|
2002-10-21 14:30:08 +00:00
|
|
|
DECL_LINK( LanguageChangeHdl, void * );
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
public:
|
2002-10-21 14:30:08 +00:00
|
|
|
SdModifyFieldDlg( Window* pWindow, const SvxFieldData* pInField, const SfxItemSet& rSet );
|
2000-09-18 16:07:07 +00:00
|
|
|
~SdModifyFieldDlg() {}
|
|
|
|
|
|
|
|
SvxFieldData* GetField();
|
2002-10-21 14:30:08 +00:00
|
|
|
SfxItemSet GetItemSet();
|
2000-09-18 16:07:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _SD_DLGFIELD_HXX
|