xref: /AOO41X/main/slideshow/source/inc/subsettableshapemanager.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef INCLUDED_SLIDESHOW_SUBSETTABLESHAPEMANAGER_HXX
29*cdf0e10cSrcweir #define INCLUDED_SLIDESHOW_SUBSETTABLESHAPEMANAGER_HXX
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include "shapemanager.hxx"
32*cdf0e10cSrcweir #include "intrinsicanimationeventhandler.hxx"
33*cdf0e10cSrcweir #include <boost/shared_ptr.hpp>
34*cdf0e10cSrcweir 
35*cdf0e10cSrcweir /* Definition of SubsettableShapeManager interface */
36*cdf0e10cSrcweir 
37*cdf0e10cSrcweir namespace slideshow
38*cdf0e10cSrcweir {
39*cdf0e10cSrcweir     namespace internal
40*cdf0e10cSrcweir     {
41*cdf0e10cSrcweir         class DocTreeNode;
42*cdf0e10cSrcweir         class AttributableShape;
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir         /** SubsettableShapeManager interface
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir             Implementers of this interface manage creation and
47*cdf0e10cSrcweir             revocation of shape subsets. Shape subsets are shapes that
48*cdf0e10cSrcweir             represent (and animate) only parts of an original's shape
49*cdf0e10cSrcweir             content.
50*cdf0e10cSrcweir          */
51*cdf0e10cSrcweir         class SubsettableShapeManager : public ShapeManager
52*cdf0e10cSrcweir         {
53*cdf0e10cSrcweir         public:
54*cdf0e10cSrcweir             /** Query a subset of the given original shape
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir 				This method queries a new (but not necessarily unique)
57*cdf0e10cSrcweir 				shape, which displays only the given subset of the
58*cdf0e10cSrcweir 				original one. Calling this method multiple times with
59*cdf0e10cSrcweir 				the same original shape and DocTreeNode content always
60*cdf0e10cSrcweir 				returns the same shape.
61*cdf0e10cSrcweir 
62*cdf0e10cSrcweir                 Requesting a subset from an original shape leads to
63*cdf0e10cSrcweir                 the original shape ceasing to display the subsetted
64*cdf0e10cSrcweir                 content. In other words, shape content is always
65*cdf0e10cSrcweir                 displayed in exactly one shape.
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir                 @param rOrigShape
68*cdf0e10cSrcweir                 The shape the subset is to be created for
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir                 @param rSubsetShape
71*cdf0e10cSrcweir                 The subset to display in the generated shape.
72*cdf0e10cSrcweir              */
73*cdf0e10cSrcweir             virtual boost::shared_ptr<AttributableShape> getSubsetShape(
74*cdf0e10cSrcweir                 const boost::shared_ptr<AttributableShape>& rOrigShape,
75*cdf0e10cSrcweir                 const DocTreeNode&                          rTreeNode ) = 0;
76*cdf0e10cSrcweir 
77*cdf0e10cSrcweir             /** Revoke a previously queried subset shape.
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir             	With this method, a previously requested subset shape
80*cdf0e10cSrcweir             	is revoked again. If the last client revokes a given
81*cdf0e10cSrcweir             	subset, it will cease to be displayed, and the
82*cdf0e10cSrcweir             	original shape will again show the subset data.
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir                 @param rOrigShape
85*cdf0e10cSrcweir                 The shape the subset was created from
86*cdf0e10cSrcweir 
87*cdf0e10cSrcweir                 @param rSubsetShape
88*cdf0e10cSrcweir                 The subset created from rOrigShape
89*cdf0e10cSrcweir              */
90*cdf0e10cSrcweir             virtual void revokeSubset(
91*cdf0e10cSrcweir                 const boost::shared_ptr<AttributableShape>& rOrigShape,
92*cdf0e10cSrcweir                 const boost::shared_ptr<AttributableShape>& rSubsetShape ) = 0;
93*cdf0e10cSrcweir 
94*cdf0e10cSrcweir             // Evil hackish way of getting intrinsic animation slide-wise
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir             /** Register an event handler that will be called when
97*cdf0e10cSrcweir                 user paint parameters change.
98*cdf0e10cSrcweir 
99*cdf0e10cSrcweir                 @param rHandler
100*cdf0e10cSrcweir                 Handler to call when a shape listener changes
101*cdf0e10cSrcweir             */
102*cdf0e10cSrcweir             virtual void addIntrinsicAnimationHandler( const IntrinsicAnimationEventHandlerSharedPtr& rHandler ) = 0;
103*cdf0e10cSrcweir             virtual void removeIntrinsicAnimationHandler( const IntrinsicAnimationEventHandlerSharedPtr& rHandler ) = 0;
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir             /** Notify that shape-intrinsic animations are now enabled.
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir                 @return true, if this event was processed by
108*cdf0e10cSrcweir                 anybody. If false is returned, no handler processed
109*cdf0e10cSrcweir                 this event (and probably, nothing will happen at all)
110*cdf0e10cSrcweir             */
111*cdf0e10cSrcweir             virtual bool notifyIntrinsicAnimationsEnabled() = 0;
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir             /** Notify that shape-intrinsic animations are now disabled.
114*cdf0e10cSrcweir 
115*cdf0e10cSrcweir                 @return true, if this event was processed by
116*cdf0e10cSrcweir                 anybody. If false is returned, no handler processed
117*cdf0e10cSrcweir                 this event (and probably, nothing will happen at all)
118*cdf0e10cSrcweir             */
119*cdf0e10cSrcweir             virtual bool notifyIntrinsicAnimationsDisabled() = 0;
120*cdf0e10cSrcweir         };
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir         typedef ::boost::shared_ptr< SubsettableShapeManager > SubsettableShapeManagerSharedPtr;
123*cdf0e10cSrcweir     }
124*cdf0e10cSrcweir }
125*cdf0e10cSrcweir 
126*cdf0e10cSrcweir #endif /* INCLUDED_SLIDESHOW_SUBSETTABLESHAPEMANAGER_HXX */
127