accessible/src/atk/RootAccessibleWrap.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/accessible/src/atk/RootAccessibleWrap.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* vim: set ts=2 et sw=2 tw=80: */
     1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.9 +
    1.10 +#ifndef mozilla_a11y_RootAccessibleWrap_h__
    1.11 +#define mozilla_a11y_RootAccessibleWrap_h__
    1.12 +
    1.13 +#include "BaseAccessibles.h"
    1.14 +#include "RootAccessible.h"
    1.15 +
    1.16 +namespace mozilla {
    1.17 +namespace a11y {
    1.18 +
    1.19 +typedef RootAccessible RootAccessibleWrap;
    1.20 +
    1.21 +/* GtkWindowAccessible is the accessible class for gtk+ native window.
    1.22 + * The instance of GtkWindowAccessible is a child of MaiAppRoot instance.
    1.23 + * It is added into root when the toplevel window is created, and removed
    1.24 + * from root when the toplevel window is destroyed.
    1.25 + */
    1.26 +class GtkWindowAccessible MOZ_FINAL : public DummyAccessible
    1.27 +{
    1.28 +public:
    1.29 +  GtkWindowAccessible(AtkObject* aAccessible);
    1.30 +  virtual ~GtkWindowAccessible();
    1.31 +};
    1.32 +
    1.33 +} // namespace a11y
    1.34 +} // namespace mozilla
    1.35 +
    1.36 +#endif   /* mozilla_a11y_Root_Accessible_Wrap_h__ */
    1.37 +

mercurial