blob: 76540d29df23c281010a9c48e29cf44d9f4dc5ce [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef __com_sun_star_drawing_Hatch_idl__
#define __com_sun_star_drawing_Hatch_idl__
#ifndef __com_sun_star_drawing_HatchStyle_idl__
#include <com/sun/star/drawing/HatchStyle.idl>
#endif
#ifndef __com_sun_star_util_Color_idl__
#include <com/sun/star/util/Color.idl>
#endif
//=============================================================================
module com { module sun { module star { module drawing {
//=============================================================================
// DocMerge from xml: struct com::sun::star::drawing::Hatch
/** This struct defines the appearence of a hatch.
<p>A hatch is a texture made of straight lines.</p>
*/
published struct Hatch
{
// DocMerge from xml: field com::sun::star::drawing::Hatch::Style
/** The <type>HatchStyle</type> defines the kind of lines used to draw
this hatch.
*/
com::sun::star::drawing::HatchStyle Style;
//-------------------------------------------------------------------------
// DocMerge from xml: field com::sun::star::drawing::Hatch::Color
/** This is the color of the hatch lines.
*/
com::sun::star::util::Color Color;
//-------------------------------------------------------------------------
// DocMerge from xml: field com::sun::star::drawing::Hatch::Distance
/** This is the distance between the lines in the hatch.
*/
long Distance;
//-------------------------------------------------------------------------
// DocMerge from xml: field com::sun::star::drawing::Hatch::Angle
/** You can rotate the lines of the hatch with this angle.
*/
long Angle;
};
//=============================================================================
}; }; }; };
#endif