summaryrefslogtreecommitdiff
path: root/Accessibility.mdwn
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico.mena@gmail.com>2022-09-28 12:26:00 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-09-28 19:29:10 +0200
commitf1530ac0d3a4da57e69a75c71f2d052e30eca1f6 (patch)
treea50ac6dbfd9dd1ef0967386c2d84834a84d5cf6d /Accessibility.mdwn
parentff19a8ba666cc038da929c1384dfa7baffeacb96 (diff)
Patch for the freedesktop wiki
Thanks for applying this by hand - I don't have access to the old cgit :) Federico From 00afc2e5f4cb708c09303361f97c6b9a8049bf22 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero <federico@gnome.org> Date: Wed, 28 Sep 2022 11:19:15 -0500 Subject: [PATCH] Fix links that went to git.gnome.org / developer.gnome.org git.gnome.org -> gitlab.gnome.org/GNOME developer.gnome.org -> API references for the relevant modules are now generated as GitLab pages. Message-Id: <7118ff51a13024cf252fab896f5adb4a58cf3c0d.camel@gmail.com>
Diffstat (limited to 'Accessibility.mdwn')
-rw-r--r--Accessibility.mdwn6
1 files changed, 3 insertions, 3 deletions
diff --git a/Accessibility.mdwn b/Accessibility.mdwn
index e178f282..28123bdb 100644
--- a/Accessibility.mdwn
+++ b/Accessibility.mdwn
@@ -68,8 +68,8 @@ A [[Accessibility/Walkthrough/]] documents the RPC and function calls details.
[[Accessibility/MakingWidgetAccessible]] documents a brief summary how to add accessibility support
-* GTK2/GTK3: good support, through [[atk|https://git.gnome.org/atk]] ([[documentation|https://developer.gnome.org/atk/]]), and atk-bridge from [[at-spi2-atk|https://git.gnome.org/at-spi2-atk/]]
-* GTK4: drops the use of atk, to directly talk at-spi, see [[Accessibility/Gtk4atspi]] for an instance
+* GTK2/GTK3: good support, through [[atk|https://gitlab.gnome.org/GNOME/at-spi2-core/-/tree/main/atk]] ([[documentation|https://gnome.pages.gitlab.gnome.org/at-spi2-core/atk/]]), and [[atk-bridge|https://gitlab.gnome.org/GNOME/at-spi2-core/-/tree/main/atk-adaptor]].
+* GTK4: drops the use of atk, to directly talk at-spi, see [[Accessibility/Gtk4atspi]] for an instance, or the [[GTK4 documentation on accessibility|https://docs.gtk.org/gtk4/section-accessibility.html]].
* Qt5: improving, [[integrated in Qt5|http://doc.qt.io/qt-5/accessible.html]]
* Qt4: only preliminary support, through [[qt-at-spi|https://community.kde.org/Accessibility/qt-atspi]]
* wxWidgets: gtk-based widgets inherit gtk accessibility, wxWidgets-specific widgets have accessibility support on Windows, but missing a bridge on Linux, see [[https://www.wxwidgets.org/docs/tutorials/accessibility/]]
@@ -83,7 +83,7 @@ Gnome provides an [[Accessibility development guide|https://developer.gnome.org/
For ATK, there is [[a best ATK practices guide|https://wiki.gnome.org/Accessibility/ATK/BestPractices]] , and a minimal example of extending a base atk implementation is the GtkScaleAccessible class, based on GtkRangeAccessible, see gtk/gtk/a11y/gtkscaleaccessible.[ch]
-For adding accessibility support to a custom-made widget, the [[evince implementation|https://git.gnome.org/browse/evince/tree/libview/ev-view-accessible.c#n71]] can be used as an example.
+For adding accessibility support to a custom-made widget, the [[evince implementation|https://gitlab.gnome.org/GNOME/evince/-/blob/main/libview/ev-view-accessible.c#n71]] can be used as an example.
For Qt5, there is [[a guide for QWidget|http://doc.qt.io/qt-5/accessible-qwidget.html]] and [[a guide for Qt Quick|http://doc.qt.io/qt-5/accessible-qtquick.html]]