2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-08-06 09:13:07 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-08-06 09:13:07 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-08-06 09:13:07 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-08-06 09:13:07 +04:00
|
|
|
|
|
|
|
#ifndef nsGfxButtonControlFrame_h___
|
|
|
|
#define nsGfxButtonControlFrame_h___
|
|
|
|
|
1999-08-10 23:13:57 +04:00
|
|
|
#include "nsFormControlFrame.h"
|
|
|
|
#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
|
|
|
|
2001-08-17 07:13:07 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2001-05-18 03:52:32 +04:00
|
|
|
class nsIAccessible;
|
2001-08-17 07:13:07 +04:00
|
|
|
#endif
|
2001-05-18 03:52:32 +04:00
|
|
|
|
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
|
|
|
|
2000-02-21 08:55:25 +03:00
|
|
|
class nsGfxButtonControlFrame : public nsHTMLButtonControlFrame,
|
2002-03-31 14:14:01 +04:00
|
|
|
public nsIAnonymousContentCreator
|
2000-02-21 08:55:25 +03:00
|
|
|
{
|
1999-08-06 09:13:07 +04:00
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
nsGfxButtonControlFrame(nsStyleContext* aContext);
|
1999-08-06 09:13:07 +04:00
|
|
|
|
2009-12-24 08:21:15 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2007-02-18 20:34:09 +03:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1999-08-06 09:13:07 +04:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 09:03:41 +03:00
|
|
|
nsEventStatus* aEventStatus);
|
1999-08-06 09:13:07 +04:00
|
|
|
|
2003-10-31 23:19:18 +03:00
|
|
|
virtual nsIAtom* GetType() const;
|
2001-06-30 04:25:09 +04:00
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef DEBUG
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
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
|
2007-02-18 20:34:09 +03:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<nsIContent*>& aElements);
|
2010-02-21 03:52:50 +03:00
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements);
|
2007-02-18 20:34:09 +03:00
|
|
|
virtual nsIFrame* CreateFrameFor(nsIContent* aContent);
|
|
|
|
|
|
|
|
// nsIFormControlFrame
|
|
|
|
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const;
|
|
|
|
|
2000-02-21 08:55:25 +03:00
|
|
|
|
2005-09-07 20:49:21 +04:00
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
2000-02-21 08:55:25 +03:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-12 01:16:12 +04:00
|
|
|
PRInt32 aModType);
|
2000-02-21 08:55:25 +03:00
|
|
|
|
2005-08-17 02:52:48 +04:00
|
|
|
virtual PRBool IsLeaf() const;
|
2005-12-13 02:53:06 +03:00
|
|
|
|
2007-02-17 17:14:08 +03:00
|
|
|
virtual nsIFrame* GetContentInsertionFrame();
|
|
|
|
|
2002-09-16 10:23:52 +04:00
|
|
|
protected:
|
2005-01-19 02:46:59 +03:00
|
|
|
nsresult GetDefaultLabel(nsXPIDLString& aLabel);
|
1999-11-23 01:04:53 +03:00
|
|
|
|
2006-02-13 22:42:08 +03:00
|
|
|
nsresult GetLabel(nsXPIDLString& aLabel);
|
|
|
|
|
2002-09-16 10:23:52 +04:00
|
|
|
PRBool IsFileBrowseButton(PRInt32 type); // Browse button of file input
|
2001-02-06 04:31:18 +03:00
|
|
|
|
2009-07-23 05:31:45 +04:00
|
|
|
virtual PRBool IsInput() { return PR_TRUE; }
|
1999-08-10 23:13:57 +04:00
|
|
|
private:
|
2005-12-13 02:53:06 +03:00
|
|
|
nsSize mSuggestedSize;
|
2006-07-19 08:36:36 +04:00
|
|
|
nsCOMPtr<nsIContent> mTextContent;
|
1999-08-06 09:13:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|