mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; 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 nsGfxButtonControlFrame_h___
|
|
#define nsGfxButtonControlFrame_h___
|
|
|
|
#include "nsFormControlFrame.h"
|
|
#include "nsHTMLButtonControlFrame.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIAnonymousContentCreator.h"
|
|
|
|
#ifdef ACCESSIBILITY
|
|
class nsIAccessible;
|
|
#endif
|
|
|
|
// Class which implements the input[type=button, reset, submit] and
|
|
// browse button for input[type=file].
|
|
// The label for button is specified through generated content
|
|
// in the ua.css file.
|
|
|
|
class nsGfxButtonControlFrame : public nsHTMLButtonControlFrame,
|
|
public nsIAnonymousContentCreator
|
|
{
|
|
public:
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
nsGfxButtonControlFrame(nsStyleContext* aContext);
|
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
|
nsGUIEvent* aEvent,
|
|
nsEventStatus* aEventStatus);
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
#ifdef DEBUG
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
#endif
|
|
|
|
NS_DECL_QUERYFRAME
|
|
|
|
// nsIAnonymousContentCreator
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements);
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
PRUint32 aFilter);
|
|
virtual nsIFrame* CreateFrameFor(nsIContent* aContent);
|
|
|
|
// nsIFormControlFrame
|
|
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const;
|
|
|
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
|
nsIAtom* aAttribute,
|
|
PRInt32 aModType);
|
|
|
|
virtual bool IsLeaf() const;
|
|
|
|
virtual nsIFrame* GetContentInsertionFrame();
|
|
|
|
protected:
|
|
nsresult GetDefaultLabel(nsXPIDLString& aLabel);
|
|
|
|
nsresult GetLabel(nsXPIDLString& aLabel);
|
|
|
|
bool IsFileBrowseButton(PRInt32 type); // Browse button of file input
|
|
|
|
virtual bool IsInput() { return true; }
|
|
private:
|
|
nsCOMPtr<nsIContent> mTextContent;
|
|
};
|
|
|
|
|
|
#endif
|
|
|