xref: /aoo42x/main/offapi/com/sun/star/drawing/LineCap.idl (revision 5aaf853b)
1*5aaf853bSArmin Le Grand/**************************************************************
2*5aaf853bSArmin Le Grand *
3*5aaf853bSArmin Le Grand * Licensed to the Apache Software Foundation (ASF) under one
4*5aaf853bSArmin Le Grand * or more contributor license agreements.  See the NOTICE file
5*5aaf853bSArmin Le Grand * distributed with this work for additional information
6*5aaf853bSArmin Le Grand * regarding copyright ownership.  The ASF licenses this file
7*5aaf853bSArmin Le Grand * to you under the Apache License, Version 2.0 (the
8*5aaf853bSArmin Le Grand * "License"); you may not use this file except in compliance
9*5aaf853bSArmin Le Grand * with the License.  You may obtain a copy of the License at
10*5aaf853bSArmin Le Grand *
11*5aaf853bSArmin Le Grand *   http://www.apache.org/licenses/LICENSE-2.0
12*5aaf853bSArmin Le Grand *
13*5aaf853bSArmin Le Grand * Unless required by applicable law or agreed to in writing,
14*5aaf853bSArmin Le Grand * software distributed under the License is distributed on an
15*5aaf853bSArmin Le Grand * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5aaf853bSArmin Le Grand * KIND, either express or implied.  See the License for the
17*5aaf853bSArmin Le Grand * specific language governing permissions and limitations
18*5aaf853bSArmin Le Grand * under the License.
19*5aaf853bSArmin Le Grand *
20*5aaf853bSArmin Le Grand *************************************************************/
21*5aaf853bSArmin Le Grand
22*5aaf853bSArmin Le Grand#ifndef __com_sun_star_drawing_LineCap_idl__
23*5aaf853bSArmin Le Grand#define __com_sun_star_drawing_LineCap_idl__
24*5aaf853bSArmin Le Grand
25*5aaf853bSArmin Le Grand//=============================================================================
26*5aaf853bSArmin Le Grand
27*5aaf853bSArmin Le Grand module com {  module sun {  module star {  module drawing {
28*5aaf853bSArmin Le Grand
29*5aaf853bSArmin Le Grand//=============================================================================
30*5aaf853bSArmin Le Grand
31*5aaf853bSArmin Le Grand// DocMerge from xml: enum com::sun::star::drawing::LineCap
32*5aaf853bSArmin Le Grand/** The <type>LineCap</type> defines rendering of ends of thick lines
33*5aaf853bSArmin Le Grand */
34*5aaf853bSArmin Le Grandpublished enum LineCap
35*5aaf853bSArmin Le Grand{
36*5aaf853bSArmin Le Grand
37*5aaf853bSArmin Le Grand    // DocMerge from xml: value com::sun::star::drawing::LineCap::BUTT
38*5aaf853bSArmin Le Grand    /** the line will end without any additional shape
39*5aaf853bSArmin Le Grand     */
40*5aaf853bSArmin Le Grand    BUTT,
41*5aaf853bSArmin Le Grand
42*5aaf853bSArmin Le Grand    // DocMerge from xml: value com::sun::star::drawing::LineCap::ROUND
43*5aaf853bSArmin Le Grand    /** the line will get a half cirle as additional cap
44*5aaf853bSArmin Le Grand     */
45*5aaf853bSArmin Le Grand    ROUND,
46*5aaf853bSArmin Le Grand
47*5aaf853bSArmin Le Grand    // DocMerge from xml: value com::sun::star::drawing::LineCap::SQUARE
48*5aaf853bSArmin Le Grand    /** the line will get a half square as additional cap
49*5aaf853bSArmin Le Grand     */
50*5aaf853bSArmin Le Grand    SQUARE
51*5aaf853bSArmin Le Grand};
52*5aaf853bSArmin Le Grand
53*5aaf853bSArmin Le Grand//=============================================================================
54*5aaf853bSArmin Le Grand
55*5aaf853bSArmin Le Grand}; }; }; };
56*5aaf853bSArmin Le Grand
57*5aaf853bSArmin Le Grand#endif
58*5aaf853bSArmin Le Grand
59