Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / cppcanvas / source / inc / action.hxx
blob3beaa8ce2b05c1186b80596dd56ff229a312dd0f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef _CPPCANVAS_ACTION_HXX
21 #define _CPPCANVAS_ACTION_HXX
23 #include <sal/types.h>
25 #include <boost/shared_ptr.hpp>
27 namespace basegfx
29 class B2DHomMatrix;
30 class B2DRange;
34 /* Definition of Action interface */
36 namespace cppcanvas
38 namespace internal
40 /** Interface for internal render actions
42 This interface is implemented by all objects generated
43 from the metafile renderer, and corresponds roughly to the
44 VCL meta action.
46 class Action
48 public:
49 /** Used for rendering action subsets
51 There are several cases where an Action might have
52 subsettable content, e.g. text, or referenced
53 metafiles, like the transparent action.
55 Generally, at the metafile renderer, all actions are
56 'flattened' out, i.e. a meta action rendering the
57 string "Hello" counts five indices, and a transparent
58 action containing a metafile with 100 actions counts
59 at least 100 indices (contained transparency or text
60 actions recursively add to this value). From the
61 outside, the subset to render is referenced via this
62 flat index range
64 struct Subset
66 /** Denotes start of the subset.
68 The index given here specifies the first subaction
69 to render.
71 sal_Int32 mnSubsetBegin;
73 /** Denotes end of the subset
75 The index given here specifies the first subaction
76 <em>not<em> to render, i.e. one action behind the
77 subset to be rendered
79 sal_Int32 mnSubsetEnd;
82 virtual ~Action() {}
84 /** Render this action to the associated canvas
86 @param rTransformation
87 Transformation matrix to apply before rendering
89 @return true, if rendering was successful. If
90 rendering failed, false is returned.
92 virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const = 0;
94 /** Render the given part of the action to the associated
95 canvas.
97 @param rTransformation
98 Transformation matrix to apply before rendering
100 @param rSubset
101 Subset of the action to render. See Subset description
102 for index semantics.
104 @return true, if rendering was successful. If the
105 specified subset is invalid for this action, or if
106 rendering failed for other reasons, false is returned.
108 virtual bool renderSubset( const ::basegfx::B2DHomMatrix& rTransformation,
109 const Subset& rSubset ) const = 0;
111 /** Query bounds of this action on the associated canvas
113 @param rTransformation
114 Transformation matrix to apply
116 @return the bounds for this action in device
117 coordinate space.
119 virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const = 0;
121 /** Query bounds for the given part of the action on the
122 associated canvas.
124 @param rTransformation
125 Transformation matrix to apply.
127 @param rSubset
128 Subset of the action to query. See Subset description
129 for index semantics.
131 @return the bounds for the given subset in device
132 coordinate space.
134 virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation,
135 const Subset& rSubset ) const = 0;
137 /** Query action count.
139 This method returns the number of subset actions
140 contained in this action. The render( Subset ) method
141 must accept subset ranges up to the value returned
142 here.
144 @return the number of subset actions
146 virtual sal_Int32 getActionCount() const = 0;
149 typedef ::boost::shared_ptr< Action > ActionSharedPtr;
154 #endif /* _CPPCANVAS_ACTION_HXX */
156 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */