summaryrefslogtreecommitdiff
path: root/sdext/source/presenter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-07 08:51:26 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-07 09:09:03 +0000
commit0c8dd8f50368dad6512d27a531af833217b7b861 (patch)
tree373fa3c6d1f745675c5eb05d26053d6de3860b32 /sdext/source/presenter
parenta625cd702700ae1773966a3133d27027d1c4d083 (diff)
loplugin:unusedmethods sdext
Change-Id: I9119e612a92d05f587a1f1e19ca21b2f95102891 Reviewed-on: https://gerrit.libreoffice.org/16809 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sdext/source/presenter')
-rw-r--r--sdext/source/presenter/PresenterAccessibility.hxx2
-rw-r--r--sdext/source/presenter/PresenterController.cxx1
-rw-r--r--sdext/source/presenter/PresenterController.hxx4
-rw-r--r--sdext/source/presenter/PresenterNotesView.hxx1
-rw-r--r--sdext/source/presenter/PresenterPaneContainer.hxx4
-rw-r--r--sdext/source/presenter/PresenterScrollBar.cxx6
-rw-r--r--sdext/source/presenter/PresenterScrollBar.hxx2
-rw-r--r--sdext/source/presenter/PresenterTextView.hxx1
-rw-r--r--sdext/source/presenter/PresenterToolBar.hxx3
-rw-r--r--sdext/source/presenter/PresenterWindowManager.cxx1
-rw-r--r--sdext/source/presenter/PresenterWindowManager.hxx4
11 files changed, 0 insertions, 29 deletions
diff --git a/sdext/source/presenter/PresenterAccessibility.hxx b/sdext/source/presenter/PresenterAccessibility.hxx
index c3c429ffb755..ad4f88bfac93 100644
--- a/sdext/source/presenter/PresenterAccessibility.hxx
+++ b/sdext/source/presenter/PresenterAccessibility.hxx
@@ -64,8 +64,6 @@ public:
const css::uno::Reference<css::drawing::framework::XPane>& rxMainPane);
virtual ~PresenterAccessible();
- void SetAccessibleParent (const css::uno::Reference<css::accessibility::XAccessible>& rxAccessibleParent);
-
void UpdateAccessibilityHierarchy();
void NotifyCurrentSlideChange (
diff --git a/sdext/source/presenter/PresenterController.cxx b/sdext/source/presenter/PresenterController.cxx
index 180e2fdfc043..726995306f8a 100644
--- a/sdext/source/presenter/PresenterController.cxx
+++ b/sdext/source/presenter/PresenterController.cxx
@@ -101,7 +101,6 @@ PresenterController::PresenterController (
mxCurrentSlide(),
mxNextSlide(),
mpWindowManager(new PresenterWindowManager(rxContext,mpPaneContainer,this)),
- mnWindowBackgroundColor(0x00ffffff),
mpTheme(),
mxMainWindow(),
mpPaneBorderPainter(),
diff --git a/sdext/source/presenter/PresenterController.hxx b/sdext/source/presenter/PresenterController.hxx
index 88d3d3ad1ca7..ad1356e62c33 100644
--- a/sdext/source/presenter/PresenterController.hxx
+++ b/sdext/source/presenter/PresenterController.hxx
@@ -106,7 +106,6 @@ public:
::boost::shared_ptr<PresenterCanvasHelper> GetCanvasHelper() const;
css::uno::Reference<css::drawing::XPresenterHelper> GetPresenterHelper() const;
::boost::shared_ptr<PresenterPaintManager> GetPaintManager() const;
- void HideSlideSorter();
double GetSlideAspectRatio() const;
void ShowView (const OUString& rsViewURL);
void HideView (const OUString& rsViewURL);
@@ -206,7 +205,6 @@ private:
css::uno::Reference<css::drawing::XDrawPage> mxNextSlide;
::rtl::Reference<PresenterWindowManager> mpWindowManager;
::boost::shared_ptr<PresenterPaneAnimator> mpCurrentPaneAnimation;
- sal_Int32 mnWindowBackgroundColor;
::boost::shared_ptr<PresenterTheme> mpTheme;
css::uno::Reference<css::awt::XWindow> mxMainWindow;
::rtl::Reference<PresenterPaneBorderPainter> mpPaneBorderPainter;
@@ -218,8 +216,6 @@ private:
::rtl::Reference<PresenterAccessible> mpAccessibleObject;
bool mbIsAccessibilityActive;
- void InitializePresenterScreen();
- void InitializeSlideShowView (const css::uno::Reference<css::uno::XInterface>& rxView);
void GetSlides (const sal_Int32 nOffset);
void UpdateViews();
void InitializeMainPane (const css::uno::Reference<css::drawing::framework::XPane>& rxPane);
diff --git a/sdext/source/presenter/PresenterNotesView.hxx b/sdext/source/presenter/PresenterNotesView.hxx
index ce1734bb8cb6..322dbfab1427 100644
--- a/sdext/source/presenter/PresenterNotesView.hxx
+++ b/sdext/source/presenter/PresenterNotesView.hxx
@@ -166,7 +166,6 @@ private:
void Scroll (const double nDistance);
void SetTop (const double nTop);
void UpdateScrollBar();
- void MoveCaret (const sal_Int32 nDistance);
/** This method throws a DisposedException when the object has already been
disposed.
diff --git a/sdext/source/presenter/PresenterPaneContainer.hxx b/sdext/source/presenter/PresenterPaneContainer.hxx
index d12913c042c9..c22eb278fc64 100644
--- a/sdext/source/presenter/PresenterPaneContainer.hxx
+++ b/sdext/source/presenter/PresenterPaneContainer.hxx
@@ -140,8 +140,6 @@ public:
SharedPaneDescriptor RemoveView (
const css::uno::Reference<css::drawing::framework::XView>& rxView);
- void CreateBorderWindow (PaneDescriptor& rDescriptor);
-
/** Find the pane whose border window is identical to the given border
window.
*/
@@ -177,8 +175,6 @@ public:
private:
css::uno::Reference<css::drawing::XPresenterHelper> mxPresenterHelper;
-
- PaneList::const_iterator FindIteratorForPaneURL (const OUString& rsPaneURL);
};
} } // end of namespace ::sdext::presenter
diff --git a/sdext/source/presenter/PresenterScrollBar.cxx b/sdext/source/presenter/PresenterScrollBar.cxx
index bfcccdc62607..fcf708e49f6f 100644
--- a/sdext/source/presenter/PresenterScrollBar.cxx
+++ b/sdext/source/presenter/PresenterScrollBar.cxx
@@ -674,12 +674,6 @@ sal_Int32 PresenterVerticalScrollBar::GetSize() const
return mnScrollBarWidth;
}
-geometry::RealPoint2D PresenterVerticalScrollBar::GetPoint (
- const double nMajor, const double nMinor) const
-{
- return geometry::RealPoint2D(nMinor, nMajor);
-}
-
double PresenterVerticalScrollBar::GetMinor (const double nX, const double nY) const
{
(void)nY;
diff --git a/sdext/source/presenter/PresenterScrollBar.hxx b/sdext/source/presenter/PresenterScrollBar.hxx
index e9b3992273ac..09413586869e 100644
--- a/sdext/source/presenter/PresenterScrollBar.hxx
+++ b/sdext/source/presenter/PresenterScrollBar.hxx
@@ -191,7 +191,6 @@ protected:
css::geometry::RealRectangle2D GetRectangle (const Area eArea) const;
virtual double GetDragDistance (const sal_Int32 nX, const sal_Int32 nY) const = 0;
virtual void UpdateDragAnchor (const double nDragDistance) = 0;
- virtual css::geometry::RealPoint2D GetPoint (const double nMajor, const double nMinor) const = 0;
virtual double GetMinor (const double nX, const double nY) const = 0;
virtual void UpdateBorders() = 0;
virtual void UpdateBitmaps() = 0;
@@ -258,7 +257,6 @@ public:
protected:
virtual double GetDragDistance (const sal_Int32 nX, const sal_Int32 nY) const SAL_OVERRIDE;
virtual void UpdateDragAnchor (const double nDragDistance) SAL_OVERRIDE;
- virtual css::geometry::RealPoint2D GetPoint (const double nMajor, const double nMinor) const SAL_OVERRIDE;
virtual double GetMinor (const double nX, const double nY) const SAL_OVERRIDE;
virtual void UpdateBorders() SAL_OVERRIDE;
virtual void UpdateBitmaps() SAL_OVERRIDE;
diff --git a/sdext/source/presenter/PresenterTextView.hxx b/sdext/source/presenter/PresenterTextView.hxx
index 0229d79fac1c..1a47da041d0d 100644
--- a/sdext/source/presenter/PresenterTextView.hxx
+++ b/sdext/source/presenter/PresenterTextView.hxx
@@ -271,7 +271,6 @@ private:
void RequestFormat();
void Format();
- SharedPresenterTextParagraph GetParagraphForCharacterIndex (const sal_Int32 nCharacterIndex) const;
css::awt::Rectangle GetCaretBounds (
const sal_Int32 nParagraphIndex,
const sal_Int32 nCharacterIndex) const;
diff --git a/sdext/source/presenter/PresenterToolBar.hxx b/sdext/source/presenter/PresenterToolBar.hxx
index 42c225c076a9..fabdbc587a8c 100644
--- a/sdext/source/presenter/PresenterToolBar.hxx
+++ b/sdext/source/presenter/PresenterToolBar.hxx
@@ -194,9 +194,6 @@ private:
const css::geometry::RealRectangle2D& rBoundingBox,
const css::geometry::RealSize2D& rPartSize,
const bool bIsHorizontal);
- void Clear (
- const css::awt::Rectangle& rUpdateBox,
- const css::rendering::ViewState& rViewState);
void Paint (
const css::awt::Rectangle& rUpdateBox,
const css::rendering::ViewState& rViewState);
diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx
index 0fce6117345b..9a2f2212b47f 100644
--- a/sdext/source/presenter/PresenterWindowManager.cxx
+++ b/sdext/source/presenter/PresenterWindowManager.cxx
@@ -79,7 +79,6 @@ PresenterWindowManager::PresenterWindowManager (
mpTheme(),
mpBackgroundBitmap(),
mxScaledBackgroundBitmap(),
- maPaneBackgroundColor(),
mxClipPolygon(),
meLayoutMode(LM_Generic),
mbIsSlideSorterActive(false),
diff --git a/sdext/source/presenter/PresenterWindowManager.hxx b/sdext/source/presenter/PresenterWindowManager.hxx
index c9355b5511cf..9f25fbbb9cc6 100644
--- a/sdext/source/presenter/PresenterWindowManager.hxx
+++ b/sdext/source/presenter/PresenterWindowManager.hxx
@@ -178,7 +178,6 @@ private:
::boost::shared_ptr<PresenterTheme> mpTheme;
SharedBitmapDescriptor mpBackgroundBitmap;
css::uno::Reference<css::rendering::XBitmap> mxScaledBackgroundBitmap;
- css::util::Color maPaneBackgroundColor;
css::uno::Reference<css::rendering::XPolyPolygon2D> mxClipPolygon;
LayoutMode meLayoutMode;
bool mbIsSlideSorterActive;
@@ -193,11 +192,8 @@ private:
void PaintBackground (const css::awt::Rectangle& rUpdateBox);
void ProvideBackgroundBitmap();
css::uno::Reference<css::rendering::XPolyPolygon2D> CreateClipPolyPolygon() const;
- void ToTop ();
static void UpdateWindowList();
- bool ChildNeedsRepaint (
- const css::uno::Reference<css::drawing::framework::XPane>& rxPane) const;
void Invalidate();