summaryrefslogtreecommitdiffstats
path: root/accessible/xul/XULComboboxAccessible.h
blob: 92f909690ecfa81144d7f303fc461e0497ce6395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

#ifndef mozilla_a11y_XULComboboxAccessible_h__
#define mozilla_a11y_XULComboboxAccessible_h__

#include "XULMenuAccessible.h"

namespace mozilla {
namespace a11y {

/**
 * Used for XUL comboboxes like xul:menulist and autocomplete textbox.
 */
class XULComboboxAccessible : public AccessibleWrap {
 public:
  enum { eAction_Click = 0 };

  XULComboboxAccessible(nsIContent* aContent, DocAccessible* aDoc);

  // LocalAccessible
  void Description(nsString& aDescription) const override;
  void Value(nsString& aValue) const override;
  a11y::role NativeRole() const override;
  uint64_t NativeState() const override;
  bool IsAcceptableChild(nsIContent*) const override;

  // ActionAccessible
  bool HasPrimaryAction() const override;
  void ActionNameAt(uint8_t aIndex, nsAString& aName) override;
  bool DoAction(uint8_t aIndex) const override;

  // Widgets
  bool IsActiveWidget() const override;
  MOZ_CAN_RUN_SCRIPT_BOUNDARY bool AreItemsOperable() const override;
};

}  // namespace a11y
}  // namespace mozilla

#endif