Files
libreoffice/sw/source/ui/dbui/mmpreparemergepage.hxx
Rüdiger Timm c48d009feb INTEGRATION: CWS ooo19126 (1.2.580); FILE MERGED
2005/09/05 13:43:50 rt 1.2.580.1: #i54170# Change license header: remove SISSL
2005-09-09 06:06:48 +00:00

96 lines
2.8 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: mmpreparemergepage.hxx,v $
*
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2005-09-09 07:06:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
************************************************************************/
#ifndef _MAILMERGEPREPAREMERGEPAGE_HXX
#define _MAILMERGEPREPAREMERGEPAGE_HXX
#ifndef _SVTOOLS_WIZARDMACHINE_HXX_
#include <svtools/wizardmachine.hxx>
#endif
#ifndef _SV_BUTTON_HXX
#include <vcl/button.hxx>
#endif
#ifndef _SV_FIELD_HXX
#include <vcl/field.hxx>
#endif
#ifndef _STDCTRL_HXX
#include <svtools/stdctrl.hxx>
#endif
#ifndef _MAILMERGEHELPER_HXX
#include <mailmergehelper.hxx>
#endif
#ifndef _ACTCTRL_HXX
#include "actctrl.hxx"
#endif
class SwMailMergeWizard;
/*-- 02.04.2004 09:21:06---------------------------------------------------
-----------------------------------------------------------------------*/
class SwMailMergePrepareMergePage : public svt::OWizardPage
{
SwBoldFixedInfo m_aHeaderFI;
FixedInfo m_aPreviewFI;
FixedText m_aRecipientFT;
PushButton m_aFirstPB;
PushButton m_aPrevPB;
NumEditAction m_aRecordED;
PushButton m_aNextPB;
PushButton m_aLastPB;
CheckBox m_ExcludeCB;
FixedLine m_aNoteHeaderFL;
FixedInfo m_aEditFI;
PushButton m_aEditPB;
SwMailMergeWizard* m_pWizard;
DECL_LINK(EditDocumentHdl_Impl, PushButton*);
DECL_LINK(ExcludeHdl_Impl, CheckBox*);
DECL_LINK(MoveHdl_Impl, void*);
virtual void ActivatePage();
virtual sal_Bool commitPage(COMMIT_REASON _eReason);
public:
SwMailMergePrepareMergePage( SwMailMergeWizard* _pParent);
~SwMailMergePrepareMergePage();
};
#endif