summaryrefslogtreecommitdiff
path: root/slideshow/source/inc
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-08-31 07:35:52 -0700
committerJoseph Powers <jpowers27@cox.net>2011-08-31 07:37:32 -0700
commit41449a86c459746061931d609341c0db3ec276a0 (patch)
treef7972e87bf83c700d057395b1e14586723591b5f /slideshow/source/inc
parentfc2661c50bccc223175f04674a786191478d2ba1 (diff)
unusedcode.easy: slideshow::internal cleanup
Diffstat (limited to 'slideshow/source/inc')
-rw-r--r--slideshow/source/inc/animatedsprite.hxx13
-rw-r--r--slideshow/source/inc/eventmultiplexer.hxx10
-rw-r--r--slideshow/source/inc/expressionnodefactory.hxx3
-rw-r--r--slideshow/source/inc/hslcolor.hxx1
-rw-r--r--slideshow/source/inc/unoviewcontainer.hxx7
-rw-r--r--slideshow/source/inc/usereventqueue.hxx34
6 files changed, 0 insertions, 68 deletions
diff --git a/slideshow/source/inc/animatedsprite.hxx b/slideshow/source/inc/animatedsprite.hxx
index 578b78bcf309..af266c5b7eab 100644
--- a/slideshow/source/inc/animatedsprite.hxx
+++ b/slideshow/source/inc/animatedsprite.hxx
@@ -96,9 +96,6 @@ namespace slideshow
*/
void setPixelOffset( const ::basegfx::B2DSize& rPixelOffset );
- /// Retrieve current pixel offset for content output.
- ::basegfx::B2DSize getPixelOffset() const;
-
/// Show the sprite
void show();
@@ -153,16 +150,6 @@ namespace slideshow
*/
void transform( const ::basegfx::B2DHomMatrix& rTransform );
- /** Set the sprite priority.
-
- The sprite priority determines the ordering of the
- sprites on screen, i.e. which sprite lies before which.
-
- @param rPrio
- The new sprite prio. Must be in the range [0,1]
- */
- void setPriority( double rPrio );
-
private:
ViewLayerSharedPtr mpViewLayer;
diff --git a/slideshow/source/inc/eventmultiplexer.hxx b/slideshow/source/inc/eventmultiplexer.hxx
index 667ba145eee9..8a6b878a9715 100644
--- a/slideshow/source/inc/eventmultiplexer.hxx
+++ b/slideshow/source/inc/eventmultiplexer.hxx
@@ -169,22 +169,12 @@ public:
void removeShapeListenerHandler( const ShapeListenerEventHandlerSharedPtr& rHandler );
/** Register an event handler that will be called when
- XShapeListeners are changed.
-
- @param rHandler
- Handler to call when a shape listener changes
- */
- void addShapeCursorHandler( const ShapeCursorEventHandlerSharedPtr& rHandler );
- void removeShapeCursorHandler( const ShapeCursorEventHandlerSharedPtr& rHandler );
-
- /** Register an event handler that will be called when
user paint parameters change.
@param rHandler
Handler to call when a shape listener changes
*/
void addUserPaintHandler( const UserPaintEventHandlerSharedPtr& rHandler );
- void removeUserPaintHandler( const UserPaintEventHandlerSharedPtr& rHandler );
/** Register an event handler that will be called when the
user requests the next effect.
diff --git a/slideshow/source/inc/expressionnodefactory.hxx b/slideshow/source/inc/expressionnodefactory.hxx
index f064b68cb9f0..720a0462e374 100644
--- a/slideshow/source/inc/expressionnodefactory.hxx
+++ b/slideshow/source/inc/expressionnodefactory.hxx
@@ -68,9 +68,6 @@ namespace slideshow
The resulting expression will calculate
rOuterFunction( rInnerFunction(t) ).
*/
- static ExpressionNodeSharedPtr createComposedExpression ( const ExpressionNodeSharedPtr& rOuterFunction,
- const ExpressionNodeSharedPtr& rInnerFunction );
-
static ExpressionNodeSharedPtr createMinExpression ( const ExpressionNodeSharedPtr& rOuterFunction,
const ExpressionNodeSharedPtr& rInnerFunction );
diff --git a/slideshow/source/inc/hslcolor.hxx b/slideshow/source/inc/hslcolor.hxx
index 5858212c3cbe..66599232925f 100644
--- a/slideshow/source/inc/hslcolor.hxx
+++ b/slideshow/source/inc/hslcolor.hxx
@@ -46,7 +46,6 @@ namespace slideshow
{
public:
HSLColor();
- explicit HSLColor( ::cppcanvas::Color::IntSRGBA nRGBColor );
HSLColor( double nHue, double nSaturation, double nLuminance );
explicit HSLColor( const RGBColor& rColor );
diff --git a/slideshow/source/inc/unoviewcontainer.hxx b/slideshow/source/inc/unoviewcontainer.hxx
index 16016cde55aa..47436d26e00f 100644
--- a/slideshow/source/inc/unoviewcontainer.hxx
+++ b/slideshow/source/inc/unoviewcontainer.hxx
@@ -67,13 +67,6 @@ namespace slideshow
/** Remove a previously added a view from this container
- @return true, if this view was successfully removed, false
- otherwise (e.g. if this view wasn't added in the first place)
- */
- bool removeView( const UnoViewSharedPtr& rView );
-
- /** Remove a previously added a view from this container
-
@return the View object, if this view was successfully
removed, and an empty shared_ptr otherwise (e.g. if
this view wasn't added in the first place)
diff --git a/slideshow/source/inc/usereventqueue.hxx b/slideshow/source/inc/usereventqueue.hxx
index e49faf74811a..ae2e12cf5761 100644
--- a/slideshow/source/inc/usereventqueue.hxx
+++ b/slideshow/source/inc/usereventqueue.hxx
@@ -93,10 +93,6 @@ public:
CursorManager& rCursorManager );
~UserEventQueue();
- /** Query whether there are any events still pending.
- */
- bool isEmpty() const;
-
/** Clear all registered events.
This method clears all registered, but
@@ -116,24 +112,6 @@ public:
*/
void setAdvanceOnClick( bool bAdvanceOnClick );
- /** Register an event that will be fired when the slide is
- just shown.
-
- Note that <em>all</em> registered events will be fired
- when the slide start occurs. This is in contrast to
- the mouse events below.
- */
- void registerSlideStartEvent( const EventSharedPtr& rEvent );
-
- /** Register an event that will be fired when the slide is
- about to vanish.
-
- Note that <em>all</em> registered events will be fired
- when the slide end occurs. This is in contrast to
- the mouse events below.
- */
- void registerSlideEndEvent( const EventSharedPtr& rEvent );
-
/** Register an event that will be fired when the given
animation node starts.
@@ -233,18 +211,6 @@ public:
void registerShapeDoubleClickEvent( const EventSharedPtr& rEvent,
const ShapeSharedPtr& rShape );
- /** Register an event that is fired on a double mouse click
-
- For every mouse double click, only one of the events
- registered here is fired. The order of fired events is
- the order of registration, i.e. the first event
- registered will be the one fired for the first mouse
- double click. It is irrelevant where on the slide the
- mouse is clicked, i.e. the shape need not be hit by
- the mouse.
- */
- void registerDoubleClickEvent( const EventSharedPtr& rEvent );
-
/** Register an event that is fired when the mouse enters
the area of the given shape