forked from mirrors/gecko-dev
		
	 9bdcffc985
			
		
	
	
		9bdcffc985
		
	
	
	
	
		
			
			The change to RootAccessible.cpp fixes an obvious bug introduced in bug 741707. The visibility changes in gfx/thebes are because NS_DECL_ISUPPORTS has a trailing "public:" that those classes were relying on to have public constructors. MozReview-Commit-ID: IeB8KIJCGhU
		
			
				
	
	
		
			80 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | |
| /* 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/. */
 | |
| 
 | |
| /**
 | |
|  * Declaration of HTML <label> elements.
 | |
|  */
 | |
| #ifndef HTMLLabelElement_h
 | |
| #define HTMLLabelElement_h
 | |
| 
 | |
| #include "mozilla/Attributes.h"
 | |
| #include "nsGenericHTMLElement.h"
 | |
| 
 | |
| namespace mozilla {
 | |
| class EventChainPostVisitor;
 | |
| namespace dom {
 | |
| 
 | |
| class HTMLLabelElement final : public nsGenericHTMLElement
 | |
| {
 | |
| public:
 | |
|   explicit HTMLLabelElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
 | |
|     : nsGenericHTMLElement(aNodeInfo),
 | |
|       mHandlingEvent(false)
 | |
|   {
 | |
|   }
 | |
| 
 | |
|   NS_IMPL_FROMCONTENT_HTML_WITH_TAG(HTMLLabelElement, label)
 | |
| 
 | |
|   // nsISupports
 | |
|   NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLLabelElement, nsGenericHTMLElement)
 | |
| 
 | |
|   // Element
 | |
|   virtual bool IsInteractiveHTMLContent(bool aIgnoreTabindex) const override
 | |
|   {
 | |
|     return true;
 | |
|   }
 | |
| 
 | |
|   HTMLFormElement* GetForm() const;
 | |
|   void GetHtmlFor(nsString& aHtmlFor)
 | |
|   {
 | |
|     GetHTMLAttr(nsGkAtoms::_for, aHtmlFor);
 | |
|   }
 | |
|   void SetHtmlFor(const nsAString& aHtmlFor)
 | |
|   {
 | |
|     SetHTMLAttr(nsGkAtoms::_for, aHtmlFor);
 | |
|   }
 | |
|   nsGenericHTMLElement* GetControl() const
 | |
|   {
 | |
|     return GetLabeledElement();
 | |
|   }
 | |
| 
 | |
|   using nsGenericHTMLElement::Focus;
 | |
|   virtual void Focus(mozilla::ErrorResult& aError) override;
 | |
| 
 | |
|   // nsIContent
 | |
|   virtual nsresult PostHandleEvent(
 | |
|                      EventChainPostVisitor& aVisitor) override;
 | |
|   virtual bool PerformAccesskey(bool aKeyCausesActivation,
 | |
|                                 bool aIsTrustedEvent) override;
 | |
|   virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
 | |
|                          bool aPreallocateChildren) const override;
 | |
| 
 | |
|   nsGenericHTMLElement* GetLabeledElement() const;
 | |
| protected:
 | |
|   virtual ~HTMLLabelElement();
 | |
| 
 | |
|   virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
 | |
| 
 | |
|   nsGenericHTMLElement* GetFirstLabelableDescendant() const;
 | |
| 
 | |
|   // XXX It would be nice if we could use an event flag instead.
 | |
|   bool mHandlingEvent;
 | |
| };
 | |
| 
 | |
| } // namespace dom
 | |
| } // namespace mozilla
 | |
| 
 | |
| #endif /* HTMLLabelElement_h */
 |