summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2024-10-16 08:14:26 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2024-10-16 09:37:41 +0200
commit71d69554b25a59a8c8a594b3dc4394dcd3b65acb (patch)
treeb54e74b26edefe210a008ad390ea620d4b6e14ad /vcl/inc
parentef36357ee9420956021560b5165708de19a62dc3 (diff)
gtk3 a11y: Drop unused DocumentFocusListener class
Code calling the ctor was dropped in commit 4aa2cc878dae3b34b16ccacd9358fda5e6d6a197 Date: Thu Jun 20 10:46:59 2024 +0200 loplugin:unusedmethods which dropped GtkSalData::GetDocumentFocusListener unused since commit c45c64aeb57dce91965d7be54601128946455c90 Author: Michael Weghorn <m.weghorn@posteo.de> Date: Mon May 6 14:44:36 2024 +0200 tdf#160806 tdf#160837 gtk3 a11y: Drop handling of some VclEventIds Change-Id: Iee8134371fce26cb21481695ab8379d4fc61065c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174988 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/unx/gtk/gtkdata.hxx59
1 files changed, 0 insertions, 59 deletions
diff --git a/vcl/inc/unx/gtk/gtkdata.hxx b/vcl/inc/unx/gtk/gtkdata.hxx
index 76fff77dc236..60b45bb14c56 100644
--- a/vcl/inc/unx/gtk/gtkdata.hxx
+++ b/vcl/inc/unx/gtk/gtkdata.hxx
@@ -41,12 +41,10 @@
#include <exception>
#include <string_view>
-#include <vector>
namespace com::sun::star::accessibility { class XAccessibleEventListener; }
class GtkSalDisplay;
-class DocumentFocusListener;
#if !GTK_CHECK_VERSION(4,0,0)
typedef GdkWindow GdkSurface;
@@ -218,63 +216,6 @@ public:
sal_uLong m_nTimeoutMS;
};
-class DocumentFocusListener final :
- public ::cppu::WeakImplHelper< css::accessibility::XAccessibleEventListener >
-{
-
- o3tl::sorted_vector< css::uno::Reference< css::uno::XInterface > > m_aRefList;
-
-public:
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- void attachRecursive(
- const css::uno::Reference< css::accessibility::XAccessible >& xAccessible
- );
-
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- void attachRecursive(
- const css::uno::Reference< css::accessibility::XAccessible >& xAccessible,
- const css::uno::Reference< css::accessibility::XAccessibleContext >& xContext
- );
-
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- void attachRecursive(
- const css::uno::Reference< css::accessibility::XAccessible >& xAccessible,
- const css::uno::Reference< css::accessibility::XAccessibleContext >& xContext,
- sal_Int64 nStateSet
- );
-
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- void detachRecursive(
- const css::uno::Reference< css::accessibility::XAccessible >& xAccessible
- );
-
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- void detachRecursive(
- const css::uno::Reference< css::accessibility::XAccessibleContext >& xContext
- );
-
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- void detachRecursive(
- const css::uno::Reference< css::accessibility::XAccessibleContext >& xContext,
- sal_Int64 nStateSet
- );
-
- /// @throws lang::IndexOutOfBoundsException
- /// @throws uno::RuntimeException
- static css::uno::Reference< css::accessibility::XAccessible > getAccessible(const css::lang::EventObject& aEvent );
-
- // XEventListener
- virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;
-
- // XAccessibleEventListener
- virtual void SAL_CALL notifyEvent( const css::accessibility::AccessibleEventObject& aEvent ) override;
-};
class GtkSalData final : public GenericUnixSalData
{