gecko-dev/layout/forms/nsHTMLButtonControlFrame.h

121 строка
4.0 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 15:12:37 +04:00
/* 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/. */
1999-04-22 02:46:15 +04:00
#ifndef nsHTMLButtonControlFrame_h___
#define nsHTMLButtonControlFrame_h___
#include "mozilla/Attributes.h"
1999-04-22 02:46:15 +04:00
#include "nsCOMPtr.h"
#include "nsContainerFrame.h"
1999-04-22 02:46:15 +04:00
#include "nsIFormControlFrame.h"
#include "nsHTMLParts.h"
#include "nsStyleContext.h"
1999-04-22 02:46:15 +04:00
#include "nsLeafFrame.h"
#include "nsCSSRendering.h"
#include "nsISupports.h"
#include "nsStyleConsts.h"
#include "nsIComponentManager.h"
#include "nsButtonFrameRenderer.h"
class nsRenderingContext;
class nsPresContext;
class nsHTMLButtonControlFrame : public nsContainerFrame,
1999-04-22 02:46:15 +04:00
public nsIFormControlFrame
{
public:
nsHTMLButtonControlFrame(nsStyleContext* aContext);
~nsHTMLButtonControlFrame();
1999-04-22 02:46:15 +04:00
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
NS_DECL_QUERYFRAME
NS_DECL_FRAMEARENA_HELPERS
1999-04-22 02:46:15 +04:00
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
const nsRect& aDirtyRect,
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
NS_IMETHOD Reflow(nsPresContext* aPresContext,
1999-04-22 02:46:15 +04:00
nsHTMLReflowMetrics& aDesiredSize,
const nsHTMLReflowState& aReflowState,
nsReflowStatus& aStatus) MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
1999-04-22 02:46:15 +04:00
nsGUIEvent* aEvent,
nsEventStatus* aEventStatus) MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
NS_IMETHOD Init(nsIContent* aContent,
1999-04-22 02:46:15 +04:00
nsIFrame* aParent,
nsIFrame* asPrevInFlow) MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
virtual nsStyleContext* GetAdditionalStyleContext(int32_t aIndex) const;
virtual void SetAdditionalStyleContext(int32_t aIndex,
nsStyleContext* aStyleContext) MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
NS_IMETHOD AppendFrames(ChildListID aListID,
nsFrameList& aFrameList) MOZ_OVERRIDE;
NS_IMETHOD InsertFrames(ChildListID aListID,
nsIFrame* aPrevFrame,
nsFrameList& aFrameList) MOZ_OVERRIDE;
NS_IMETHOD RemoveFrame(ChildListID aListID,
nsIFrame* aOldFrame) MOZ_OVERRIDE;
2001-08-17 07:13:07 +04:00
#ifdef ACCESSIBILITY
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
2001-08-17 07:13:07 +04:00
#endif
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
#ifdef DEBUG
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE {
return MakeFrameName(NS_LITERAL_STRING("HTMLButtonControl"), aResult);
1999-04-22 02:46:15 +04:00
}
#endif
1999-04-22 02:46:15 +04:00
virtual bool HonorPrintBackgroundSettings() { return false; }
// nsIFormControlFrame
void SetFocus(bool aOn, bool aRepaint);
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue) MOZ_OVERRIDE;
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const MOZ_OVERRIDE;
1999-04-22 02:46:15 +04:00
// Inserted child content gets its frames parented by our child block
virtual nsIFrame* GetContentInsertionFrame() {
return GetFirstPrincipalChild()->GetContentInsertionFrame();
}
virtual bool IsFrameOfType(uint32_t aFlags) const
{
return nsContainerFrame::IsFrameOfType(aFlags &
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
}
1999-04-22 02:46:15 +04:00
protected:
virtual bool IsInput() { return false; }
void ReflowButtonContents(nsPresContext* aPresContext,
nsHTMLReflowMetrics& aDesiredSize,
const nsHTMLReflowState& aReflowState,
nsIFrame* aFirstKid,
nsMargin aFocusPadding,
nsReflowStatus& aStatus);
int GetSkipSides() const;
1999-04-22 02:46:15 +04:00
nsButtonFrameRenderer mRenderer;
};
#endif