2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-08-06 05:13:07 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00: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 05:13:07 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00: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 05:13:07 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00: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-28 20:14:13 +00: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 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00: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 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-08-06 05:13:07 +00:00
|
|
|
|
|
|
|
#ifndef nsGfxButtonControlFrame_h___
|
|
|
|
#define nsGfxButtonControlFrame_h___
|
|
|
|
|
1999-08-10 19:13:57 +00:00
|
|
|
#include "nsFormControlFrame.h"
|
|
|
|
#include "nsHTMLButtonControlFrame.h"
|
2000-02-21 05:55:25 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIAnonymousContentCreator.h"
|
2000-02-21 06:26:55 +00:00
|
|
|
#include "nsITextContent.h"
|
1999-08-06 05:13:07 +00:00
|
|
|
|
2001-08-17 03:13:07 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2001-05-17 23:52:32 +00:00
|
|
|
class nsIAccessible;
|
2001-08-17 03:13:07 +00:00
|
|
|
#endif
|
2001-05-17 23:52:32 +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:
|
|
|
|
nsGfxButtonControlFrame();
|
|
|
|
|
1999-08-10 19:13:57 +00:00
|
|
|
//nsIFrame
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aCX,
|
1999-08-06 05:13:07 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1999-08-06 05:13:07 +00:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
1999-08-06 05:13:07 +00:00
|
|
|
|
1999-08-10 19:13:57 +00:00
|
|
|
|
2001-08-17 03:13:07 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2001-05-17 23:52:32 +00:00
|
|
|
NS_IMETHOD GetAccessible(nsIAccessible** aAccessible);
|
2001-08-17 03:13:07 +00:00
|
|
|
#endif
|
2001-05-17 23:52:32 +00:00
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2001-06-30 00:25:09 +00:00
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
2000-02-21 05:55:25 +00:00
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
1999-09-13 20:40:59 +00:00
|
|
|
|
2000-02-21 05:55:25 +00:00
|
|
|
// nsIAnonymousContentCreator
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD CreateAnonymousContent(nsPresContext* aPresContext,
|
2000-02-21 05:55:25 +00:00
|
|
|
nsISupportsArray& aChildList);
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD CreateFrameFor(nsPresContext* aPresContext,
|
2000-04-19 13:55:17 +00:00
|
|
|
nsIContent * aContent,
|
2000-08-23 10:38:42 +00:00
|
|
|
nsIFrame** aFrame);
|
2000-02-21 05:55:25 +00:00
|
|
|
|
2005-09-07 16:49:21 +00:00
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
2000-02-21 05:55:25 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType);
|
2000-02-21 05:55:25 +00:00
|
|
|
|
2005-08-16 22:52:48 +00:00
|
|
|
virtual PRBool IsLeaf() const;
|
2005-12-12 23:53:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the suggested size of the button.
|
|
|
|
* @note This is NOT a virtual function, it will be called
|
|
|
|
* directly on an instance of this class.
|
|
|
|
* @param aSize The suggested size.
|
|
|
|
*/
|
|
|
|
void SetSuggestedSize(const nsSize& aSize);
|
2005-08-16 22:52:48 +00:00
|
|
|
|
2002-09-16 06:23:52 +00:00
|
|
|
protected:
|
2005-01-18 23:46:59 +00:00
|
|
|
nsresult GetDefaultLabel(nsXPIDLString& aLabel);
|
1999-11-22 22:04:53 +00:00
|
|
|
|
2002-09-16 06:23:52 +00:00
|
|
|
PRBool IsFileBrowseButton(PRInt32 type); // Browse button of file input
|
2001-02-06 01:31:18 +00:00
|
|
|
|
1999-08-10 19:13:57 +00:00
|
|
|
private:
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef() { return NS_OK; }
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release() { return NS_OK; }
|
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
nsSize mSuggestedSize;
|
2000-02-21 05:55:25 +00:00
|
|
|
nsCOMPtr<nsITextContent> mTextContent;
|
1999-08-06 05:13:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|