summaryrefslogtreecommitdiff
path: root/vcl/inc/headless
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-01 14:20:31 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-02 06:38:20 +0000
commit837f171810a95a1d87907dd08d67e969276f0559 (patch)
tree6891aa9774c63b759b29d365e0d141f5d7bf3a8c /vcl/inc/headless
parent01fd60b8fa614f5911d96bb34b40c62ebe1c20fb (diff)
loplugin:unusedmethods in vcl
Change-Id: Ib404310761fd555b033ab6594ba8636d37f23463 Reviewed-on: https://gerrit.libreoffice.org/19074 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/inc/headless')
-rw-r--r--vcl/inc/headless/svpdummies.hxx1
-rw-r--r--vcl/inc/headless/svpframe.hxx7
-rw-r--r--vcl/inc/headless/svpgdi.hxx3
-rw-r--r--vcl/inc/headless/svpinst.hxx2
-rw-r--r--vcl/inc/headless/svpvd.hxx2
5 files changed, 0 insertions, 15 deletions
diff --git a/vcl/inc/headless/svpdummies.hxx b/vcl/inc/headless/svpdummies.hxx
index bbe23e478624..7b13fa21760d 100644
--- a/vcl/inc/headless/svpdummies.hxx
+++ b/vcl/inc/headless/svpdummies.hxx
@@ -67,7 +67,6 @@ public:
// get info about the display
virtual unsigned int GetDisplayScreenCount() SAL_OVERRIDE;
virtual Rectangle GetDisplayScreenPosSizePixel( unsigned int nScreen ) SAL_OVERRIDE;
- virtual OUString GetDisplayScreenName( unsigned int nScreen ) SAL_OVERRIDE;
virtual int ShowNativeDialog( const OUString& rTitle,
const OUString& rMessage,
diff --git a/vcl/inc/headless/svpframe.hxx b/vcl/inc/headless/svpframe.hxx
index 23edc627e98d..5a82c07c992c 100644
--- a/vcl/inc/headless/svpframe.hxx
+++ b/vcl/inc/headless/svpframe.hxx
@@ -71,7 +71,6 @@ public:
void GetFocus();
void LoseFocus();
void PostPaint(bool bImmediate) const;
- void AllocateFrame();
#if defined ANDROID
const basebmp::BitmapDeviceSharedPtr& getDevice() const { return m_aFrame; }
@@ -126,15 +125,9 @@ public:
virtual void UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) SAL_OVERRIDE;
virtual void EndSetClipRegion() SAL_OVERRIDE;
-#ifndef IOS
- // If enabled we can get damage notifications for regions immediately rendered to ...
- void enableDamageTracker( bool bOn = true );
-#endif
-
/*TODO: functional implementation */
virtual void SetScreenNumber( unsigned int nScreen ) SAL_OVERRIDE { (void)nScreen; }
virtual void SetApplicationID(const OUString &rApplicationID) SAL_OVERRIDE { (void) rApplicationID; }
- bool IsVisible() { return m_bVisible; }
static SvpSalFrame* GetFocusFrame() { return s_pFocusFrame; }
diff --git a/vcl/inc/headless/svpgdi.hxx b/vcl/inc/headless/svpgdi.hxx
index 6e98ff3449d3..5a1f824a6a9c 100644
--- a/vcl/inc/headless/svpgdi.hxx
+++ b/vcl/inc/headless/svpgdi.hxx
@@ -52,9 +52,6 @@ class VCL_DLLPUBLIC SvpSalGraphics : public SalGraphics
basebmp::DrawMode m_aDrawMode;
-protected:
- basegfx::B2IVector GetSize() { return m_aOrigDevice->getSize(); }
-
public:
static GlyphCache& getPlatformGlyphCache();
void setDevice(basebmp::BitmapDeviceSharedPtr& rDevice);
diff --git a/vcl/inc/headless/svpinst.hxx b/vcl/inc/headless/svpinst.hxx
index 4a4e907f3063..8c76636d4ca6 100644
--- a/vcl/inc/headless/svpinst.hxx
+++ b/vcl/inc/headless/svpinst.hxx
@@ -99,8 +99,6 @@ public:
void PostEvent(const SalFrame* pFrame, ImplSVEvent* pData, sal_uInt16 nEvent);
- bool PostedEventsInQueue();
-
void StartTimer( sal_uLong nMS );
void StopTimer();
void Wakeup();
diff --git a/vcl/inc/headless/svpvd.hxx b/vcl/inc/headless/svpvd.hxx
index 255de3a67923..9b73ae54604d 100644
--- a/vcl/inc/headless/svpvd.hxx
+++ b/vcl/inc/headless/svpvd.hxx
@@ -46,8 +46,6 @@ public:
const bool bTopDown
) SAL_OVERRIDE;
- basebmp::BitmapDeviceSharedPtr getBitmapDevice() { return m_aDevice; }
-
// SalGeometryProvider
virtual long GetWidth() const SAL_OVERRIDE { return m_aDevice.get() ? m_aDevice->getSize().getX() : 0; }
virtual long GetHeight() const SAL_OVERRIDE { return m_aDevice.get() ? m_aDevice->getSize().getY() : 0; }