summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-17 13:47:16 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-17 13:47:16 +0000
commitb7fa9409dbbfa30c260b7777549c3e877016b5d3 (patch)
treeba078e2d3aa97aebb459433ba2d2030ac757e19c /slideshow/source/engine/animationnodes
parent8d35150a6aa3c298adb35188851b5de786bd4faa (diff)
INTEGRATION: CWS presfixes12 (1.7.12); FILE MERGED
2007/01/29 14:02:00 thb 1.7.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')
-rw-r--r--slideshow/source/engine/animationnodes/animationcommandnode.cxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/slideshow/source/engine/animationnodes/animationcommandnode.cxx b/slideshow/source/engine/animationnodes/animationcommandnode.cxx
index b2c9ddf222f0..59992ed3f8be 100644
--- a/slideshow/source/engine/animationnodes/animationcommandnode.cxx
+++ b/slideshow/source/engine/animationnodes/animationcommandnode.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: animationcommandnode.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: kz $ $Date: 2006-12-13 15:29:27 $
+ * last change: $Author: obo $ $Date: 2007-07-17 14:47:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -37,14 +37,17 @@
#include "precompiled_slideshow.hxx"
// must be first
-#include "canvas/debug.hxx"
-#include "canvas/verbosetrace.hxx"
-#include "com/sun/star/presentation/EffectCommands.hpp"
+#include <canvas/debug.hxx>
+#include <canvas/verbosetrace.hxx>
+#include <com/sun/star/presentation/EffectCommands.hpp>
+
#include "animationcommandnode.hxx"
#include "delayevent.hxx"
#include "tools.hxx"
#include "nodetools.hxx"
+#include <boost/bind.hpp>
+
namespace slideshow {
namespace internal {