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
|
1998-09-23 17:44:33 +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/
|
1998-09-23 17:44:33 +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.
|
1998-09-23 17:44:33 +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 ***** */
|
1998-09-23 17:44:33 +00:00
|
|
|
|
|
|
|
#ifndef nsFileControlFrame_h___
|
|
|
|
#define nsFileControlFrame_h___
|
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
#include "nsAreaFrame.h"
|
1998-09-23 17:44:33 +00:00
|
|
|
#include "nsIFormControlFrame.h"
|
1999-06-30 22:17:43 +00:00
|
|
|
#include "nsIDOMMouseListener.h"
|
|
|
|
#include "nsIAnonymousContentCreator.h"
|
2000-08-03 23:39:33 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-06-30 22:17:43 +00:00
|
|
|
|
2002-07-26 20:57:24 +00:00
|
|
|
#include "nsTextControlFrame.h"
|
2000-05-16 23:29:35 +00:00
|
|
|
#include "nsFormControlHelper.h"
|
2002-07-26 20:57:24 +00:00
|
|
|
typedef nsTextControlFrame nsNewFrame;
|
2000-05-16 23:29:35 +00:00
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
class nsISupportsArray;
|
|
|
|
|
|
|
|
class nsFileControlFrame : public nsAreaFrame,
|
|
|
|
public nsIFormControlFrame,
|
|
|
|
public nsIDOMMouseListener,
|
2002-03-31 10:14:01 +00:00
|
|
|
public nsIAnonymousContentCreator
|
1998-09-23 17:44:33 +00:00
|
|
|
{
|
|
|
|
public:
|
1998-12-03 06:31:43 +00:00
|
|
|
nsFileControlFrame();
|
1999-08-19 14:03:53 +00:00
|
|
|
virtual ~nsFileControlFrame();
|
1998-09-23 17:44:33 +00:00
|
|
|
|
1999-10-26 04:44:41 +00:00
|
|
|
// XXX Hack so we can squirrel away the pres context pointer
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Init(nsPresContext* aPresContext,
|
1999-10-26 04:44:41 +00:00
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* aContext,
|
1999-10-26 04:44:41 +00:00
|
|
|
nsIFrame* aPrevInFlow) {
|
|
|
|
return nsAreaFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow);
|
|
|
|
}
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Paint(nsPresContext* aPresContext,
|
1999-02-11 01:13:28 +00:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
2001-09-19 12:35:19 +00:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer,
|
|
|
|
PRUint32 aFlags = 0);
|
1999-02-11 01:13:28 +00:00
|
|
|
|
1999-01-25 22:16:27 +00:00
|
|
|
// nsIFormControlFrame
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD SetProperty(nsPresContext* aPresContext, nsIAtom* aName, const nsAString& aValue);
|
2002-03-23 22:26:36 +00:00
|
|
|
NS_IMETHOD GetProperty(nsIAtom* aName, nsAString& aValue);
|
1998-09-23 17:44:33 +00:00
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
2001-11-02 07:40:01 +00:00
|
|
|
NS_IMETHOD OnContentReset();
|
1998-09-23 17:44:33 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aCX,
|
1998-10-02 04:10:00 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2004-05-22 01:17:00 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual void RemovedAsPrimaryFrame(nsPresContext* aPresContext);
|
2004-05-22 01:17:00 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Destroy(nsPresContext *aPresContext);
|
1998-09-23 17:44:33 +00:00
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef NS_DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
fixed bugs #6303, #6753, #6756, #6759
Re-wrote nsComboboxFrame.
removed the obsolete nsHTMLAtoms: comboText,comoTextSelected,comTextSelectedFocus,dropDownVisible,
dropdownHidden, dropDownBtnOut, dropDownBtnPressed,
Added nsHTMLAtoms::combobox, nsLayoutAtoms::popupList
Renamed dropDownList to dropDownListPseudo
Added "arrow.gif" as to be used the background-image for the combobox button
ua.css - added rules for select to differentiate between comboboxes and listboxes.
Added style rules to more closely match the XPTOOLKIT XPWidgets look.
removed the following :-moz-combobox-text, -moz-combobox-textselected
nsIFormControlFrame.h - Added SetSuggestedSize method.
nsButtonControlFrame - Implemented SetSuggestedSize.
nsCSSFrameConstructor.cpp - Rewrote ConstructSelectFrame.
nsIWidget.h -Added GetAbsoluteBounds method.
nsWindow.cpp - Implemented GetAbsoluteBounds.
1999-07-14 22:00:24 +00:00
|
|
|
NS_IMETHOD SetSuggestedSize(nscoord aWidth, nscoord aHeight) { return NS_OK; };
|
2005-01-01 17:26:29 +00:00
|
|
|
NS_IMETHOD GetFrameForPoint(const nsPoint& aPoint, nsFramePaintLayer aWhichLayer, nsIFrame** aFrame);
|
2004-12-31 01:13:27 +00:00
|
|
|
NS_IMETHOD AttributeChanged(nsIContent* aChild,
|
1999-10-15 23:16:45 +00:00
|
|
|
PRInt32 aNameSpaceID,
|
1999-08-19 14:03:53 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType);
|
2005-08-16 22:52:48 +00:00
|
|
|
virtual PRBool IsLeaf() const;
|
1998-11-19 17:22:29 +00:00
|
|
|
|
2001-11-02 07:40:01 +00:00
|
|
|
NS_IMETHOD GetName(nsAString* aName);
|
2003-10-31 20:19:18 +00:00
|
|
|
NS_IMETHOD_(PRInt32) GetFormControlType() const;
|
1999-01-22 15:32:57 +00:00
|
|
|
void SetFocus(PRBool aOn, PRBool aRepaint);
|
2004-07-31 23:15:21 +00:00
|
|
|
void ScrollIntoView(nsPresContext* aPresContext);
|
1999-01-22 15:32:57 +00:00
|
|
|
|
|
|
|
NS_IMETHOD GetFormContent(nsIContent*& aContent) const;
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual nscoord GetVerticalInsidePadding(nsPresContext* aPresContext,
|
1999-09-30 11:30:04 +00:00
|
|
|
float aPixToTwip,
|
1999-01-22 15:32:57 +00:00
|
|
|
nscoord aInnerHeight) const;
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual nscoord GetHorizontalInsidePadding(nsPresContext* aPresContext,
|
1999-01-22 15:32:57 +00:00
|
|
|
float aPixToTwip,
|
|
|
|
nscoord aInnerWidth,
|
|
|
|
nscoord aCharWidth) const;
|
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
// from nsIAnonymousContentCreator
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD CreateAnonymousContent(nsPresContext* aPresContext,
|
2000-01-22 01:16:50 +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,
|
|
|
|
nsIFrame** aFrame) { if (aFrame) *aFrame = nsnull; return NS_ERROR_FAILURE; }
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
// mouse events when out browse button is pressed
|
|
|
|
/**
|
|
|
|
* Processes a mouse down event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD MouseDown(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse up event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD MouseUp(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse click event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD MouseClick(nsIDOMEvent* aMouseEvent); // we only care when the button is clicked
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse click event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD MouseDblClick(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse enter event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD MouseOver(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse leave event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD MouseOut(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
1999-06-30 22:17:43 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent) { return NS_OK; }
|
1998-09-23 17:44:33 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
2002-06-12 07:58:26 +00:00
|
|
|
/**
|
|
|
|
* The text frame (populated on initial reflow).
|
|
|
|
* @see nsFileControlFrame::Reflow
|
|
|
|
*/
|
2000-05-16 23:29:35 +00:00
|
|
|
nsNewFrame* mTextFrame;
|
2002-06-12 07:58:26 +00:00
|
|
|
/**
|
|
|
|
* The text box input.
|
|
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIContent> mTextContent;
|
|
|
|
/**
|
|
|
|
* The browse button input.
|
|
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIContent> mBrowse;
|
|
|
|
/**
|
|
|
|
* The current value, stored during those rare in-between periods where the
|
|
|
|
* file frame is there but the input frame is not.
|
|
|
|
*/
|
1999-09-15 05:31:31 +00:00
|
|
|
nsString* mCachedState;
|
1998-09-23 17:44:33 +00:00
|
|
|
|
|
|
|
private:
|
2002-06-12 07:58:26 +00:00
|
|
|
/**
|
|
|
|
* Find the first text frame child (first frame child whose content has input
|
|
|
|
* type=text) of a frame.
|
|
|
|
* XXX this is an awfully complicated implementation of something we could
|
|
|
|
* likely do by just doing GetPrimaryFrame on mTextContent
|
|
|
|
*
|
|
|
|
* @param aPresContext the current pres context
|
|
|
|
* @param aStart the parent frame to search children of
|
|
|
|
* @return the text control frame, or null if not found
|
|
|
|
*/
|
2004-07-31 23:15:21 +00:00
|
|
|
nsNewFrame* GetTextControlFrame(nsPresContext* aPresContext,
|
2002-06-12 07:58:26 +00:00
|
|
|
nsIFrame* aStart);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy an attribute from file content to text and button content.
|
|
|
|
* @param aNameSpaceID namespace of attr
|
|
|
|
* @param aAttribute attribute atom
|
|
|
|
* @param aWhichControls which controls to apply to (SYNC_TEXT or SYNC_FILE
|
|
|
|
* or SYNC_BOTH)
|
|
|
|
*/
|
|
|
|
void SyncAttr(PRInt32 aNameSpaceID, nsIAtom* aAttribute,
|
|
|
|
PRBool aWhichControls);
|
1999-06-30 22:17:43 +00:00
|
|
|
|
2004-05-22 01:17:00 +00:00
|
|
|
/**
|
|
|
|
* We call this when we are being destroyed or removed from the PFM.
|
|
|
|
* @param aPresContext the current pres context
|
|
|
|
*/
|
2004-07-31 23:15:21 +00:00
|
|
|
void PreDestroy(nsPresContext* aPresContext);
|
2004-05-22 01:17:00 +00:00
|
|
|
|
2004-05-22 20:01:11 +00:00
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef() { return 1; }
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release() { return 1; }
|
2004-05-22 01:17:00 +00:00
|
|
|
|
|
|
|
PRBool mDidPreDestroy; // has PreDestroy been called
|
1998-09-23 17:44:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|