summaryrefslogtreecommitdiff
path: root/filter/source/flash/swfwriter.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-05-20 13:10:23 +0000
committerKurt Zenker <kz@openoffice.org>2008-05-20 13:10:23 +0000
commit1f10976d3931749ff549d18451fa633285e98b01 (patch)
tree3f0d835fcbb04818c1ffe4f7c38226b8240b32c3 /filter/source/flash/swfwriter.hxx
parentc1ea5f6c6ca3193779cf3dc1f61b4eac1497b098 (diff)
INTEGRATION: CWS mba30patches01 (1.12.78); FILE MERGED
2008/04/23 10:57:36 mba 1.12.78.2: RESYNC: (1.12-1.13); FILE MERGED 2008/03/18 15:48:38 mba 1.12.78.1: #i86359#: remove unused code
Diffstat (limited to 'filter/source/flash/swfwriter.hxx')
-rw-r--r--filter/source/flash/swfwriter.hxx19
1 files changed, 3 insertions, 16 deletions
diff --git a/filter/source/flash/swfwriter.hxx b/filter/source/flash/swfwriter.hxx
index 223d39e2283e..d91410c36b98 100644
--- a/filter/source/flash/swfwriter.hxx
+++ b/filter/source/flash/swfwriter.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: swfwriter.hxx,v $
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
* This file is part of OpenOffice.org.
*
@@ -197,9 +197,9 @@ public:
void write( SvStream& out );
void addUI32( sal_uInt32 nValue );
- void addI32( sal_Int32 nValue );
+ //unused as of yet void addI32( sal_Int32 nValue );
void addUI16( sal_uInt16 nValue );
- void addI16( sal_Int16 nValue );
+ //unused as of yet void addI16( sal_Int16 nValue );
void addUI8( sal_uInt8 nValue );
void addBits( BitStream& rIn );
@@ -295,10 +295,6 @@ public:
The coordinates must be in twips */
sal_uInt16 defineShape( const Polygon& rPoly, const FillStyle& rFillStyle );
- /** defines a flash shape from a outlined polygon.
- The coordinates must be in twips */
- sal_uInt16 defineShape( const Polygon& rPoly, sal_uInt16 nLineWidth, const Color& rLineColor );
-
/** defines a flash shape from a filled polypolygon.
The coordinates must be in twips */
sal_uInt16 defineShape( const PolyPolygon& rPolyPoly, const FillStyle& rFillStyle );
@@ -332,9 +328,6 @@ public:
/** inserts a show frame tag into the movie stream or the current sprite */
void showFrame();
- /** sets the background color in the movie stream */
- void setBackgroundColor( Color& rColor );
-
/** creates a new sprite and sets it as the current sprite for editing.
Only one sprite can be edited at one time */
sal_uInt16 startSprite();
@@ -345,9 +338,6 @@ public:
/** inserts a doaction tag with an ActionStop */
void stop();
- /** inserts a doaction tag with an ActionPlay */
- void play();
-
/** inserts a doaction tag with an ActionStop, place a button on depth nDepth that
continues playback on click */
void waitOnClick( sal_uInt16 nDepth );
@@ -355,9 +345,6 @@ public:
/** inserts a doaction tag with an ActionGotoFrame */
void gotoFrame( sal_uInt16 nFrame );
- /** returns the character of a white rectangle with the dimensions of the document */
- sal_uInt16 getWhiteBackgroundShapeId();
-
#ifdef AUGUSTUS
/** stream out a sound. Should make it more intelligent so it interleaves with other items.*/
sal_Bool streamSound( const char * filename );