2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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-08-06 09:13:07 +04:00
|
|
|
|
|
|
|
#ifndef nsGfxButtonControlFrame_h___
|
|
|
|
#define nsGfxButtonControlFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-08-10 23:13:57 +04:00
|
|
|
#include "nsHTMLButtonControlFrame.h"
|
2000-02-21 08:55:25 +03:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIAnonymousContentCreator.h"
|
1999-08-06 09:13:07 +04:00
|
|
|
|
2018-03-29 01:01:46 +03:00
|
|
|
class nsTextNode;
|
|
|
|
|
1999-08-10 23:13:57 +04: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 09:13:07 +04:00
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
class nsGfxButtonControlFrame final : public nsHTMLButtonControlFrame,
|
|
|
|
public nsIAnonymousContentCreator {
|
1999-08-06 09:13:07 +04:00
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsGfxButtonControlFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2019-02-05 19:45:54 +03:00
|
|
|
explicit nsGfxButtonControlFrame(ComputedStyle* aStyle,
|
|
|
|
nsPresContext* aPresContext);
|
1999-08-06 09:13:07 +04:00
|
|
|
|
2017-11-07 03:20:33 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot,
|
|
|
|
PostDestroyData& aPostDestroyData) override;
|
2007-02-18 20:34:09 +03:00
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 12:36:33 +04:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsEventStatus* aEventStatus) override;
|
1999-08-06 09:13:07 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
2000-02-21 08:55:25 +03:00
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2007-02-18 20:34:09 +03:00
|
|
|
|
2000-02-21 08:55:25 +03:00
|
|
|
// nsIAnonymousContentCreator
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult CreateAnonymousContent(
|
|
|
|
nsTArray<ContentInfo>& aElements) override;
|
2014-07-16 22:41:57 +04:00
|
|
|
virtual void AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFilter) override;
|
2007-02-18 20:34:09 +03:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID, nsAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2000-02-21 08:55:25 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() override;
|
2007-02-17 17:14:08 +03:00
|
|
|
|
2002-09-16 10:23:52 +04:00
|
|
|
protected:
|
2017-08-11 11:31:22 +03:00
|
|
|
nsresult GetDefaultLabel(nsAString& aLabel) const;
|
1999-11-23 01:04:53 +03:00
|
|
|
|
2017-08-11 11:31:22 +03:00
|
|
|
nsresult GetLabel(nsString& aLabel);
|
2006-02-13 22:42:08 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsInput() override { return true; }
|
2018-11-30 13:46:48 +03:00
|
|
|
|
1999-08-10 23:13:57 +04:00
|
|
|
private:
|
2018-03-29 01:01:46 +03:00
|
|
|
RefPtr<nsTextNode> mTextContent;
|
1999-08-06 09:13:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|