summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes/nodetools.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-17 13:49:46 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-17 13:49:46 +0000
commit8c78b1bd751119576b89a03a9cb9b46f6f471f91 (patch)
tree1fded2c94d25bcdd33bb37671cda5c77e1ff4681 /slideshow/source/engine/animationnodes/nodetools.hxx
parent58ace2942697939e6fce30137011a9eeab20f778 (diff)
INTEGRATION: CWS presfixes12 (1.5.12); FILE MERGED
2007/01/29 14:02:02 thb 1.5.12.1: Issue number: #i37778# Larger slideshow refactoring. Wrote design and coding style manifest, and adapted the code to actually conform to this. In detail: - cleaned up ownership/disposable/weak_ptr story. removed hacks and explicit Disposable implementations, where workaround were available - removed object mutices, where superfluous - reworked EventMultiplexer (using templatized listener class now), added more events. EventMultiplexer now serves as a true blackboard - reworked directory structure: disjunct parts are now physically separated into directories, instantiation happens via factories & abstract interfaces - added CursorManager, to make setting mouse cursor less hackish - reworked DrawShape, to implement SeparateListener pattern - reworked IntrinsicAnimationActivity, to avoid cyclic references - modified hyperlink & shape cursor handling to communicate via EventMultiplexer - renamed & cleaned up files (presentation.cxx now named slideshowimpl.cxx, etc.) - added first version of the z-order fix to layer/layermanager - cleaned up include guards and include syntax
Diffstat (limited to 'slideshow/source/engine/animationnodes/nodetools.hxx')
-rw-r--r--slideshow/source/engine/animationnodes/nodetools.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/slideshow/source/engine/animationnodes/nodetools.hxx b/slideshow/source/engine/animationnodes/nodetools.hxx
index 4c9d9665a7bb..7727f4b44f29 100644
--- a/slideshow/source/engine/animationnodes/nodetools.hxx
+++ b/slideshow/source/engine/animationnodes/nodetools.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: nodetools.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: kz $ $Date: 2006-12-13 15:33:48 $
+ * last change: $Author: obo $ $Date: 2007-07-17 14:49:46 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -33,17 +33,17 @@
*
************************************************************************/
-#ifndef _SLIDESHOW_NODETOOLS_HXX
-#define _SLIDESHOW_NODETOOLS_HXX
+#ifndef INCLUDED_SLIDESHOW_NODETOOLS_HXX
+#define INCLUDED_SLIDESHOW_NODETOOLS_HXX
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/beans/NamedValue.hpp>
#include <com/sun/star/drawing/XShape.hpp>
-#include <layermanager.hxx>
-#include <basenode.hxx>
-#include <doctreenode.hxx>
-#include <attributableshape.hxx>
+#include "shapemanager.hxx"
+#include "basenode.hxx"
+#include "doctreenode.hxx"
+#include "attributableshape.hxx"
#if defined(VERBOSE) && defined(DBG_UTIL)
@@ -68,7 +68,7 @@ namespace slideshow
void debugNodesShowTreeWithin( const BaseNode* );
#endif
- /** Look up an AttributableShape from LayerManager.
+ /** Look up an AttributableShape from ShapeManager.
This method retrieves an AttributableShape pointer, given
an XShape and a LayerManager.
@@ -76,7 +76,7 @@ namespace slideshow
Throws a runtime exception if there's no such shape, or if
it does not implement the AttributableShape interface.
*/
- AttributableShapeSharedPtr lookupAttributableShape( const LayerManagerSharedPtr& rLayerManager,
+ AttributableShapeSharedPtr lookupAttributableShape( const ShapeManagerSharedPtr& rShapeManager,
const ::com::sun::star::uno::Reference<
::com::sun::star::drawing::XShape >& xShape );
@@ -93,4 +93,4 @@ namespace slideshow
}
}
-#endif /* _SLIDESHOW_NODETOOLS_HXX */
+#endif /* INCLUDED_SLIDESHOW_NODETOOLS_HXX */