-int KItemListAccessibleCell::navigate(RelationFlag relation, int index, QAccessibleInterface* *iface) const
-{
- if (relation == Ancestor && index == 1) {
- *iface = new KItemListViewAccessible(m_view);
- return 0;
- }
-
- *iface = 0;
- if (!m_view) {
- return -1;
- }
-
- switch (relation) {
-
- case Child: {
- return -1;
- }
- default:
- break;
- }
-
- return -1;
-}
-
-QAccessible::Relation KItemListAccessibleCell::relationTo(int child, const QAccessibleInterface* , int otherChild) const
-{
- Q_ASSERT(child == 0);
- Q_ASSERT(otherChild == 0);
- return QAccessible::Unrelated;
-}
-
-#ifndef QT_NO_ACTION
-
-int KItemListAccessibleCell::userActionCount(int) const
-{
- return 0;
-}
-
-QString KItemListAccessibleCell::actionText(int, Text, int) const
-{
- return QString();
-}
-
-bool KItemListAccessibleCell::doAction(int, int, const QVariantList &)