2003-04-02 02:18:29 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2003-04-02 02:18:29 +04:00
|
|
|
|
2012-04-05 18:27:37 +04:00
|
|
|
#ifndef MOZILLA_A11Y_OUTERDOCACCESSIBLE_H_
|
|
|
|
#define MOZILLA_A11Y_OUTERDOCACCESSIBLE_H_
|
2003-04-02 02:18:29 +04:00
|
|
|
|
2012-05-29 05:18:45 +04:00
|
|
|
#include "AccessibleWrap.h"
|
2003-04-02 02:18:29 +04:00
|
|
|
|
2012-04-05 18:27:37 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace a11y {
|
|
|
|
|
2009-12-10 22:12:19 +03:00
|
|
|
/**
|
|
|
|
* Used for <browser>, <frame>, <iframe>, <page> or editor> elements.
|
|
|
|
*
|
2012-04-05 18:27:37 +04:00
|
|
|
* In these variable names, "outer" relates to the OuterDocAccessible as
|
2012-05-27 13:01:40 +04:00
|
|
|
* opposed to the DocAccessibleWrap which is "inner". The outer node is
|
2009-12-10 22:12:19 +03:00
|
|
|
* a something like tags listed above, whereas the inner node corresponds to
|
|
|
|
* the inner document root.
|
|
|
|
*/
|
2010-06-08 20:39:58 +04:00
|
|
|
|
2014-08-05 21:33:55 +04:00
|
|
|
class OuterDocAccessible MOZ_FINAL : public AccessibleWrap
|
2003-04-02 02:18:29 +04:00
|
|
|
{
|
2008-11-04 06:37:46 +03:00
|
|
|
public:
|
2012-05-27 13:01:40 +04:00
|
|
|
OuterDocAccessible(nsIContent* aContent, DocAccessible* aDoc);
|
2003-04-02 02:18:29 +04:00
|
|
|
|
2010-06-08 20:39:58 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2012-05-29 05:18:45 +04:00
|
|
|
// Accessible
|
2013-10-29 07:30:55 +04:00
|
|
|
virtual void Shutdown();
|
2014-09-16 21:30:23 +04:00
|
|
|
virtual mozilla::a11y::role NativeRole() MOZ_OVERRIDE;
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual Accessible* ChildAtPoint(int32_t aX, int32_t aY,
|
2012-05-29 05:18:45 +04:00
|
|
|
EWhichChildAtPoint aWhichChild);
|
2008-11-04 06:37:46 +03:00
|
|
|
|
2010-06-08 20:39:58 +04:00
|
|
|
virtual void InvalidateChildren();
|
2013-03-14 08:53:28 +04:00
|
|
|
virtual bool InsertChildAt(uint32_t aIdx, Accessible* aChild) MOZ_OVERRIDE;
|
2012-05-29 05:18:45 +04:00
|
|
|
virtual bool RemoveChild(Accessible* aAccessible);
|
2010-06-08 20:39:58 +04:00
|
|
|
|
2008-11-04 06:37:46 +03:00
|
|
|
protected:
|
2014-07-09 01:23:18 +04:00
|
|
|
virtual ~OuterDocAccessible();
|
|
|
|
|
2012-05-29 05:18:45 +04:00
|
|
|
// Accessible
|
2009-12-10 22:12:19 +03:00
|
|
|
virtual void CacheChildren();
|
2003-04-02 02:18:29 +04:00
|
|
|
};
|
|
|
|
|
2012-04-05 18:27:37 +04:00
|
|
|
} // namespace a11y
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2003-04-02 02:18:29 +04:00
|
|
|
#endif
|