Kaydet (Commit) 76168bcd authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS oj14 (1.1.2); FILE ADDED

2007/04/27 10:55:28 oj 1.1.2.1: #i76758# new report api
üst 91daa009
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: KeepTogether.idl,v $
*
* $Revision: 1.2 $
*
* last change: $Author: rt $ $Date: 2007-07-06 07:18:46 $
*
* 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 __com_sun_star_report_KeepTogether_idl__
#define __com_sun_star_report_KeepTogether_idl__
//=============================================================================
module com { module sun { module star { module report {
//=============================================================================
/** Specifies that a group header, detail, and footer section is printed on the same page.
@see XGroup
*/
constants KeepTogether
{
//-------------------------------------------------------------------------
/** Prints the group without keeping the header, detail, and footer together on the same page.
*/
const short NO = 0;
/** Prints the group header, detail, and footer together on the same page.
*/
const short WHOLE_GROUP = 1;
/** Prints the group header on a page when the first detail record can fit on the same page.
*/
const short WITH_FIRST_DETAIL = 2;
};
//=============================================================================
}; }; }; };
/*=============================================================================
=============================================================================*/
#endif
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ReportPrintOption.idl,v $
*
* $Revision: 1.2 $
*
* last change: $Author: rt $ $Date: 2007-07-06 07:18:58 $
*
* 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 __com_sun_star_report_ReportPrintOption_idl__
#define __com_sun_star_report_ReportPrintOption_idl__
//=============================================================================
module com { module sun { module star { module report {
//=============================================================================
/** Specifies wether a page header or footer is printed on the same page as the report header or report footer.
*/
constants ReportPrintOption
{
//-------------------------------------------------------------------------
/** The page header/footer is printed on all pages.
*/
const short ALL_PAGES = 0;
/** The page header/footer is not printed on the same page as the report header.
*/
const short NOT_WITH_REPORT_HEADER = 1;
/** The page header/footer is not printed on the same page as the report footer.
*/
const short NOT_WITH_REPORT_FOOTER = 2;
/** The page header/footer is not printed on the same page as the report header or footer.
*/
const short NOT_WITH_REPORT_HEADER_FOOTER = 3;
};
//=============================================================================
}; }; }; };
/*=============================================================================
=============================================================================*/
#endif
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: SectionPageBreak.idl,v $
*
* $Revision: 1.2 $
*
* last change: $Author: rt $ $Date: 2007-07-06 07:19:18 $
*
* 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 __com_sun_star_report_SectionPageBreak_idl__
#define __com_sun_star_report_SectionPageBreak_idl__
//=============================================================================
module com { module sun { module star { module report {
//=============================================================================
/** Specifies that page breaks are allowed inside this section.
@see XSection
*/
constants SectionPageBreak
{
//-------------------------------------------------------------------------
/** Page breaks will never be inserted. If the section doesn't fit on a page than the content will be cut.
*/
const short NONE = 0;
/** If the section doesn't fit on page than a page break will be inserted as long as the section fits. Inner sections will doesn't contain further page breaks.
*/
const short SECTION = 1;
/** If the section doesn't fit on page than a page break will be inserted as long as the section fits.
*/
const short AUTO = 2;
};
//=============================================================================
}; }; }; };
/*=============================================================================
=============================================================================*/
#endif
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: XFixedLine.idl,v $
*
* $Revision: 1.2 $
*
* last change: $Author: rt $ $Date: 2007-07-06 07:19:38 $
*
* 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 __com_sun_star_report_XFixedLine_idl__
#define __com_sun_star_report_XFixedLine_idl__
#ifndef __com_sun_star_report_XReportControlModel_idl__
#include <com/sun/star/report/XReportControlModel.idl>
#endif
#ifndef __com_sun_star_drawing_CircleKind_idl__
#include <com/sun/star/drawing/CircleKind.idl>
#endif
#ifndef __com_sun_star_drawing_LineStyle_idl__
#include <com/sun/star/drawing/LineStyle.idl>
#endif
#ifndef __com_sun_star_util_Color_idl__
#include <com/sun/star/util/Color.idl>
#endif
#ifndef __com_sun_star_drawing_LineDash_idl__
#include <com/sun/star/drawing/LineDash.idl>
#endif
//=============================================================================
module com { module sun { module star { module report {
//=============================================================================
interface XFixedLine
{
interface XReportControlModel;
/** specifies the orientation of the control.
<pre>
0: horizontal
1: vertical </default>
</pre>
*/
[attribute,bound] long Orientation
{
set raises ( com::sun::star::beans::UnknownPropertyException );
get raises ( com::sun::star::beans::UnknownPropertyException );
};
/** This property contains the type of the line.
*/
[attribute,bound] com::sun::star::drawing::LineStyle LineStyle;
//-------------------------------------------------------------------------
/** This property contains the dash of the line.
*/
[attribute,bound] com::sun::star::drawing::LineDash LineDash;
//-------------------------------------------------------------------------
/** This property contains the line color.
*/
[attribute,bound] com::sun::star::util::Color LineColor;
//-------------------------------------------------------------------------
/** This property contains the extent of transparency.
*/
[attribute,bound] short LineTransparence;
//-------------------------------------------------------------------------
/** This property contains the width of the line in 1/100th mm.
*/
[attribute,bound] long LineWidth;
//-------------------------------------------------------------------------
};
service FixedLine : XFixedLine;
//=============================================================================
}; }; }; };
/*=============================================================================
=============================================================================*/
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment