/************************************************************** * * 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 #endif #ifndef __com_sun_star_util_Color_idl__ #include #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.

A hatch is a texture made of straight lines.

*/ published struct Hatch { // DocMerge from xml: field com::sun::star::drawing::Hatch::Style /** The HatchStyle 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