15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2008 Apple Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     its contributors may be used to endorse or promote products derived
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     from this software without specific prior written permission.
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
29bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)#ifndef AXListBoxOption_h
30bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)#define AXListBoxOption_h
315c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
32197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch#include "core/accessibility/AXRenderObject.h"
3353e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)#include "core/html/HTMLElement.h"
34e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch#include "wtf/Forward.h"
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
36c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
375c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
38bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)class AXListBox;
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)class Element;
405c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)class HTMLElement;
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)class HTMLSelectElement;
425267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)
43197021e6b966cfb06891637935ef33fff06433d1Ben Murdochclass AXListBoxOption FINAL : public AXRenderObject {
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
455c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
46197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    AXListBoxOption(RenderObject*);
475c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
48197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    static PassRefPtr<AXListBoxOption> create(RenderObject*);
49bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)    virtual ~AXListBoxOption();
505267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)
515267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual AccessibilityRole roleValue() const OVERRIDE { return ListBoxOptionRole; }
525267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual bool isSelected() const OVERRIDE;
535267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual bool isEnabled() const OVERRIDE;
545267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual bool isSelectedOptionActive() const OVERRIDE;
555267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual void setSelected(bool) OVERRIDE;
565267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual bool canSetSelectedAttribute() const OVERRIDE;
57197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    virtual String stringValue() const OVERRIDE;
58197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    virtual String title() const OVERRIDE { return String(); }
595267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)
605c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
611e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)    virtual bool isListBoxOption() const OVERRIDE { return true; }
625267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual bool canHaveChildren() const OVERRIDE { return false; }
635267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
645267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)
655c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    HTMLSelectElement* listBoxOptionParentNode() const;
665c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    int listBoxOptionIndex() const;
67bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)    AXObject* listBoxOptionAXObject(HTMLElement*) const;
685c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
695267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)
70bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)DEFINE_AX_OBJECT_TYPE_CASTS(AXListBoxOption, isListBoxOption());
711e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)
72c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
735c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
74bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)#endif // AXListBoxOption_h
75