LibreOffice
LibreOffice 24.2 SDK API Reference
XSimpleCanvas.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 
21 module com { module sun { module star { module rendering {
22 
23 interface XCanvas;
24 interface XCanvasFont;
25 interface XBitmap;
26 interface XGraphicDevice;
27 interface XPolyPolygon2D;
28 
42 {
62  void selectFont( [in] string sFontName, [in]double size, [in] boolean bold, [in] boolean italic );
63 
64 
73  void setPenColor( [in] com::sun::star::util::Color nsRgbaColor );
74 
75 
84  void setFillColor( [in] com::sun::star::util::Color nsRgbaColor );
85 
86 
89  void setRectClip( [in] ::com::sun::star::geometry::RealRectangle2D aRect );
90 
91 
94  void setTransformation( [in] ::com::sun::star::geometry::AffineMatrix2D aTransform );
95 
96 
99  void drawPixel( [in] ::com::sun::star::geometry::RealPoint2D aPoint );
100 
101 
104  void drawLine( [in] ::com::sun::star::geometry::RealPoint2D aStartPoint,
105  [in] ::com::sun::star::geometry::RealPoint2D aEndPoint );
106 
107 
110  void drawRect( [in] ::com::sun::star::geometry::RealRectangle2D aRect );
111 
112 
115  void drawPolyPolygon( [in] XPolyPolygon2D xPolyPolygon );
116 
117 
135  void drawText( [in] StringContext aText,
137  [in] byte nTextDirection );
138 
139 
148  void drawBitmap( [in] XBitmap xBitmap,
149  [in] ::com::sun::star::geometry::RealPoint2D aLeftTop );
150 
151 
161  XGraphicDevice getDevice();
162 
163 
169  XCanvas getCanvas();
170 
171 
176  FontMetrics getFontMetrics();
177 
178 
184  XCanvasFont getCurrentFont();
185 
186 
189  com::sun::star::util::Color getCurrentPenColor();
190 
191 
194  com::sun::star::util::Color getCurrentFillColor();
195 
196 
199  com::sun::star::geometry::RealRectangle2D getCurrentClipRect();
200 
201 
204  com::sun::star::geometry::AffineMatrix2D getCurrentTransformation();
205 
206 
212  ViewState getCurrentViewState();
213 
214 
225  RenderState getCurrentRenderState( [in] boolean bUseFillColor );
226 
227 
228 };
229 
230 
231 }; }; }; };
232 
233 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This structure defines a 2 by 3 affine matrix.
Definition: AffineMatrix2D.idl:60
This structure contains information passed to each XCanvas render operation.
Definition: RenderState.idl:33
Central interface for rendering.
Definition: XCanvas.idl:95
This interface provides access to a specific, XCanvas-dependent font incarnation. ...
Definition: XCanvasFont.idl:31
This structure contains information considered the view state.
Definition: ViewState.idl:32
Definition: Ambiguous.idl:20
This is a generic interface to a bitmap.
Definition: XBitmap.idl:32
This structure defines a two-dimensional point.
Definition: RealPoint2D.idl:29
Provides the basic graphical output operations for a canvas.
Definition: XSimpleCanvas.idl:41
Metrics global to the font, i.e.
Definition: FontMetrics.idl:44
Collection of string-related arguments used on all canvas text interfaces.
Definition: StringContext.idl:31
This structure contains the necessary information for a two-dimensional rectangle.
Definition: RealRectangle2D.idl:40
Generic interface for poly-polygons in 2D.
Definition: XPolyPolygon2D.idl:26
long Color
describes an RGB color value with an optional alpha channel.
Definition: Color.idl:34
This interface provides access to a graphic device, such as a printer, or a screen device...
Definition: XGraphicDevice.idl:46
base interface of all UNO interfaces
Definition: XInterface.idl:45