2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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-08-06 05:13:07 +00:00
|
|
|
|
|
|
|
#ifndef nsGfxButtonControlFrame_h___
|
|
|
|
#define nsGfxButtonControlFrame_h___
|
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-08-10 19:13:57 +00:00
|
|
|
#include "nsHTMLButtonControlFrame.h"
|
2000-02-21 05:55:25 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIAnonymousContentCreator.h"
|
1999-08-06 05:13:07 +00:00
|
|
|
|
1999-08-10 19:13:57 +00:00
|
|
|
// 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.
|
1999-08-06 05:13:07 +00:00
|
|
|
|
2000-02-21 05:55:25 +00:00
|
|
|
class nsGfxButtonControlFrame : public nsHTMLButtonControlFrame,
|
2002-03-31 10:14:01 +00:00
|
|
|
public nsIAnonymousContentCreator
|
2000-02-21 05:55:25 +00:00
|
|
|
{
|
1999-08-06 05:13:07 +00:00
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsGfxButtonControlFrame(nsStyleContext* aContext);
|
1999-08-06 05:13:07 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
2007-02-18 17:34:09 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 08:36:33 +00:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
|
|
|
nsEventStatus* aEventStatus) MOZ_OVERRIDE;
|
1999-08-06 05:13:07 +00:00
|
|
|
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2001-06-30 00:25:09 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
2000-02-21 05:55:25 +00:00
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
2007-02-18 17:34:09 +00:00
|
|
|
|
2000-02-21 05:55:25 +00:00
|
|
|
// nsIAnonymousContentCreator
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) MOZ_OVERRIDE;
|
2010-10-15 15:34:35 +00:00
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
2012-09-14 16:10:08 +00:00
|
|
|
uint32_t aFilter) MOZ_OVERRIDE;
|
|
|
|
virtual nsIFrame* CreateFrameFor(nsIContent* aContent) MOZ_OVERRIDE;
|
2007-02-18 17:34:09 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 08:36:33 +00:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
2000-02-21 05:55:25 +00:00
|
|
|
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual bool IsLeaf() const MOZ_OVERRIDE;
|
2005-12-12 23:53:06 +00:00
|
|
|
|
2014-05-24 22:20:39 +00:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() MOZ_OVERRIDE;
|
2007-02-17 14:14:08 +00:00
|
|
|
|
2002-09-16 06:23:52 +00:00
|
|
|
protected:
|
2012-09-11 10:26:29 +00:00
|
|
|
nsresult GetDefaultLabel(nsXPIDLString& aLabel) const;
|
1999-11-22 22:04:53 +00:00
|
|
|
|
2006-02-13 19:42:08 +00:00
|
|
|
nsresult GetLabel(nsXPIDLString& aLabel);
|
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual bool IsInput() MOZ_OVERRIDE { return true; }
|
1999-08-10 19:13:57 +00:00
|
|
|
private:
|
2006-07-19 04:36:36 +00:00
|
|
|
nsCOMPtr<nsIContent> mTextContent;
|
1999-08-06 05:13:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|