office-gobmx/sd/source/ui/inc/prntopts.hxx

126 lines
3.3 KiB
C++
Raw Normal View History

2000-09-18 11:07:07 -05:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:07:07 -05:00
*
* $RCSfile: prntopts.hxx,v $
2000-09-18 11:07:07 -05:00
*
* $Revision: 1.9 $
2000-09-18 11:07:07 -05:00
*
* last change: $Author: kz $ $Date: 2006-12-12 17:47:31 $
2000-09-18 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05:00
*
************************************************************************/
#ifndef _SD_PRNTOPTS_HXX
#define _SD_PRNTOPTS_HXX
#ifndef _SV_GROUP_HXX //autogen
#include <vcl/group.hxx>
#endif
#ifndef _SV_BUTTON_HXX //autogen
#include <vcl/button.hxx>
#endif
#ifndef _SFXTABDLG_HXX //autogen
#include <sfx2/tabdlg.hxx>
#endif
#ifndef _SV_FIXED_HXX
#include <vcl/fixed.hxx>
#endif
2000-09-18 11:07:07 -05:00
/*
enum PrintType
{
PT_DRAWING,
PT_NOTES,
PT_HANDOUT,
PT_OUTLINE
};
*/
class SdModule;
class SdPrintOptions : public SfxTabPage
{
friend class SdOptionsDlg;
friend class SdModule;
private:
2001-03-22 07:15:58 -06:00
FixedLine aGrpPrint;
2000-09-18 11:07:07 -05:00
CheckBox aCbxDraw;
CheckBox aCbxNotes;
CheckBox aCbxHandout;
CheckBox aCbxOutline;
2001-05-04 03:19:36 -05:00
FixedLine aSeparator1FL;
2001-06-25 07:34:16 -05:00
FixedLine aGrpOutput;
RadioButton aRbtColor;
RadioButton aRbtGrayscale;
RadioButton aRbtBlackWhite;
2001-05-04 03:19:36 -05:00
2001-03-22 07:15:58 -06:00
FixedLine aGrpPrintExt;
2000-09-18 11:07:07 -05:00
CheckBox aCbxPagename;
CheckBox aCbxDate;
CheckBox aCbxTime;
CheckBox aCbxHiddenPages;
2001-03-22 07:15:58 -06:00
2001-05-04 03:19:36 -05:00
FixedLine aSeparator2FL;
2001-03-22 07:15:58 -06:00
FixedLine aGrpPageoptions;
2000-09-18 11:07:07 -05:00
RadioButton aRbtDefault;
RadioButton aRbtPagesize;
RadioButton aRbtPagetile;
RadioButton aRbtBooklet;
CheckBox aCbxFront;
CheckBox aCbxBack;
CheckBox aCbxPaperbin;
const SfxItemSet& rOutAttrs;
DECL_LINK( ClickCheckboxHdl, CheckBox * );
DECL_LINK( ClickBookletHdl, CheckBox * );
void updateControls();
using OutputDevice::SetDrawMode;
2000-09-18 11:07:07 -05:00
public:
2001-05-04 03:19:36 -05:00
SdPrintOptions( Window* pParent, const SfxItemSet& rInAttrs);
2000-09-18 11:07:07 -05:00
~SdPrintOptions();
static SfxTabPage* Create( Window*, const SfxItemSet& );
static USHORT* GetRanges();
virtual BOOL FillItemSet( SfxItemSet& );
virtual void Reset( const SfxItemSet & );
2001-05-04 03:19:36 -05:00
void SetDrawMode();
virtual void PageCreated (SfxAllItemSet aSet);
2000-09-18 11:07:07 -05:00
};
#endif // _SD_PRNTOPTS_HXX