summaryrefslogtreecommitdiff
path: root/include/canvas/base
diff options
context:
space:
mode:
Diffstat (limited to 'include/canvas/base')
-rw-r--r--include/canvas/base/bufferedgraphicdevicebase.hxx5
-rw-r--r--include/canvas/base/canvascustomspritehelper.hxx55
2 files changed, 0 insertions, 60 deletions
diff --git a/include/canvas/base/bufferedgraphicdevicebase.hxx b/include/canvas/base/bufferedgraphicdevicebase.hxx
index 3bd94f7862a8..235091f76798 100644
--- a/include/canvas/base/bufferedgraphicdevicebase.hxx
+++ b/include/canvas/base/bufferedgraphicdevicebase.hxx
@@ -155,11 +155,6 @@ namespace canvas
}
}
- const css::uno::Reference< css::awt::XWindow2 >& getWindow() const
- {
- return mxWindow;
- }
-
css::uno::Any getXWindow() const
{
return css::uno::makeAny(mxWindow);
diff --git a/include/canvas/base/canvascustomspritehelper.hxx b/include/canvas/base/canvascustomspritehelper.hxx
index f44f5213b1e7..3f55ef672d7c 100644
--- a/include/canvas/base/canvascustomspritehelper.hxx
+++ b/include/canvas/base/canvascustomspritehelper.hxx
@@ -115,23 +115,8 @@ namespace canvas
bool isContentFullyOpaque() const { return mbIsContentFullyOpaque; }
/// Returns true, if transformation has changed since last transformUpdated() call
- bool hasAlphaChanged() const { return mbAlphaDirty; }
-
- /// Returns true, if transformation has changed since last transformUpdated() call
- bool hasPositionChanged() const { return mbPositionDirty; }
-
- /// Returns true, if transformation has changed since last transformUpdated() call
bool hasTransformChanged() const { return mbTransformDirty; }
- /// Returns true, if transformation has changed since last transformUpdated() call
- bool hasClipChanged() const { return mbClipDirty; }
-
- /// Returns true, if transformation has changed since last transformUpdated() call
- bool hasPrioChanged() const { return mbPrioDirty; }
-
- /// Returns true, if transformation has changed since last transformUpdated() call
- bool hasVisibilityChanged() const { return mbVisibilityDirty; }
-
/// Retrieve current alpha value
double getAlpha() const { return mfAlpha; }
@@ -145,22 +130,6 @@ namespace canvas
bool isActive() const { return mbActive; }
protected:
- /** Notifies that caller is again in sync with current alpha
-
- const, but modifies state visible to derived
- classes. beware of passing this information to the
- outside!
- */
- void alphaUpdated() const { mbAlphaDirty=false; }
-
- /** Notifies that caller is again in sync with current position
-
- const, but modifies state visible to derived
- classes. beware of passing this information to the
- outside!
- */
- void positionUpdated() const { mbPositionDirty=false; }
-
/** Notifies that caller is again in sync with current transformation
const, but modifies state visible to derived
@@ -169,30 +138,6 @@ namespace canvas
*/
void transformUpdated() const { mbTransformDirty=false; }
- /** Notifies that caller is again in sync with current clip
-
- const, but modifies state visible to derived
- classes. beware of passing this information to the
- outside!
- */
- void clipUpdated() const { mbClipDirty=false; }
-
- /** Notifies that caller is again in sync with current priority
-
- const, but modifies state visible to derived
- classes. beware of passing this information to the
- outside!
- */
- void prioUpdated() const { mbPrioDirty=false; }
-
- /** Notifies that caller is again in sync with current visibility
-
- const, but modifies state visible to derived
- classes. beware of passing this information to the
- outside!
- */
- void visibilityUpdated() const { mbVisibilityDirty=false; }
-
private:
CanvasCustomSpriteHelper( const CanvasCustomSpriteHelper& ) = delete;
CanvasCustomSpriteHelper& operator=( const CanvasCustomSpriteHelper& ) = delete;