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

90 lines
2.7 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: mmdocselectpage.hxx,v $
*
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2005-09-09 06:59:22 $
*
* 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 _MAILMERGEDOCSELECTPAGE_HXX
#define _MAILMERGEDOCSELECTPAGE_HXX
#ifndef _SVTOOLS_WIZARDMACHINE_HXX_
#include <svtools/wizardmachine.hxx>
#endif
#ifndef _MAILMERGEHELPER_HXX
#include <mailmergehelper.hxx>
#endif
#ifndef _SV_LSTBOX_HXX
#include <vcl/lstbox.hxx>
#endif
#ifndef _SV_BUTTON_HXX
#include <vcl/button.hxx>
#endif
#ifndef _STDCTRL_HXX
#include <svtools/stdctrl.hxx>
#endif
class SwMailMergeWizard;
/*-- 02.04.2004 09:21:06---------------------------------------------------
-----------------------------------------------------------------------*/
class SwMailMergeDocSelectPage : public svt::OWizardPage
{
SwBoldFixedInfo m_aHeaderFI;
FixedInfo m_aHowToFT;
RadioButton m_aCurrentDocRB;
RadioButton m_aNewDocRB;
RadioButton m_aLoadDocRB;
RadioButton m_aLoadTemplateRB;
RadioButton m_aRecentDocRB;
PushButton m_aBrowseDocPB;
PushButton m_aBrowseTemplatePB;
ListBox m_aRecentDocLB;
String m_sLoadFileName;
SwMailMergeWizard* m_pWizard;
DECL_LINK(DocSelectHdl, RadioButton*);
DECL_LINK(FileSelectHdl, PushButton*);
virtual sal_Bool commitPage(COMMIT_REASON _eReason);
public:
SwMailMergeDocSelectPage( SwMailMergeWizard* _pParent);
~SwMailMergeDocSelectPage();
};
#endif