1998-09-23 21:44:33 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03: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 21:44:33 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-09-23 21:44:33 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-09-23 21:44:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsFileControlFrame_h___
|
|
|
|
#define nsFileControlFrame_h___
|
|
|
|
|
1999-07-01 02:17:43 +04:00
|
|
|
#include "nsAreaFrame.h"
|
1998-09-23 21:44:33 +04:00
|
|
|
#include "nsIFormControlFrame.h"
|
1999-07-01 02:17:43 +04:00
|
|
|
#include "nsIDOMMouseListener.h"
|
|
|
|
#include "nsIAnonymousContentCreator.h"
|
1999-09-15 09:31:31 +04:00
|
|
|
#include "nsIStatefulFrame.h"
|
2000-08-04 03:39:33 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIHTMLContent.h"
|
1999-07-01 02:17:43 +04:00
|
|
|
|
2000-05-17 03:29:35 +04:00
|
|
|
#include "nsGfxTextControlFrame2.h"
|
|
|
|
#include "nsFormControlHelper.h"
|
|
|
|
typedef nsGfxTextControlFrame2 nsNewFrame;
|
|
|
|
|
2000-01-14 12:28:54 +03:00
|
|
|
class nsIPresState;
|
1998-09-23 21:44:33 +04:00
|
|
|
class nsFormFrame;
|
1999-07-01 02:17:43 +04:00
|
|
|
class nsISupportsArray;
|
|
|
|
|
|
|
|
class nsFileControlFrame : public nsAreaFrame,
|
|
|
|
public nsIFormControlFrame,
|
|
|
|
public nsIDOMMouseListener,
|
1999-09-15 09:31:31 +04:00
|
|
|
public nsIAnonymousContentCreator,
|
2000-05-17 03:29:35 +04:00
|
|
|
public nsIStatefulFrame
|
1998-09-23 21:44:33 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
public:
|
1998-12-03 09:31:43 +03:00
|
|
|
nsFileControlFrame();
|
1999-08-19 18:03:53 +04:00
|
|
|
virtual ~nsFileControlFrame();
|
1998-09-23 21:44:33 +04:00
|
|
|
|
1999-10-26 08:44:41 +04:00
|
|
|
// XXX Hack so we can squirrel away the pres context pointer
|
1999-11-24 09:03:41 +03:00
|
|
|
NS_IMETHOD Init(nsIPresContext* aPresContext,
|
1999-10-26 08:44:41 +04:00
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIFrame* aPrevInFlow) {
|
1999-11-24 09:03:41 +03:00
|
|
|
mPresContext = aPresContext;
|
1999-10-26 08:44:41 +04:00
|
|
|
return nsAreaFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow);
|
|
|
|
}
|
|
|
|
|
1999-07-01 02:17:43 +04:00
|
|
|
virtual void MouseClicked(nsIPresContext* aPresContext) {}
|
|
|
|
virtual void SetFormFrame(nsFormFrame* aFormFrame) { mFormFrame = aFormFrame; }
|
|
|
|
virtual nsFormFrame* GetFromFrame() { return mFormFrame; }
|
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
NS_IMETHOD Paint(nsIPresContext* aPresContext,
|
1999-02-11 04:13:28 +03:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
|
|
|
|
1999-01-26 01:16:27 +03:00
|
|
|
// nsIFormControlFrame
|
2000-08-23 21:27:06 +04:00
|
|
|
NS_IMETHOD SetProperty(nsIPresContext* aPresContext, nsIAtom* aName, const nsAReadableString& aValue);
|
|
|
|
NS_IMETHOD GetProperty(nsIAtom* aName, nsAWritableString& aValue);
|
1998-09-23 21:44:33 +04:00
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
1999-11-24 09:03:41 +03:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext* aCX,
|
1998-10-02 08:10:00 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1998-09-23 21:44:33 +04:00
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef NS_DEBUG
|
1998-11-19 20:22:29 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
1999-11-02 01:12:45 +03: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-15 02:00:24 +04:00
|
|
|
NS_IMETHOD SetSuggestedSize(nscoord aWidth, nscoord aHeight) { return NS_OK; };
|
2000-03-22 05:43:08 +03:00
|
|
|
NS_IMETHOD GetFrameForPoint(nsIPresContext* aPresContext, const nsPoint& aPoint, nsFramePaintLayer aWhichLayer, nsIFrame** aFrame);
|
1999-08-19 18:03:53 +04:00
|
|
|
NS_IMETHOD AttributeChanged(nsIPresContext* aPresContext,
|
|
|
|
nsIContent* aChild,
|
1999-10-16 03:16:45 +04:00
|
|
|
PRInt32 aNameSpaceID,
|
1999-08-19 18:03:53 +04:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aHint);
|
1998-11-19 20:22:29 +03:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
virtual PRInt32 GetMaxNumValues();
|
|
|
|
|
|
|
|
virtual PRBool GetNamesValues(PRInt32 aMaxNumValues, PRInt32& aNumValues,
|
|
|
|
nsString* aValues, nsString* aNames);
|
|
|
|
|
1999-01-22 18:32:57 +03:00
|
|
|
NS_IMETHOD GetName(nsString* aName);
|
1998-10-30 21:05:29 +03:00
|
|
|
virtual PRBool IsSuccessful(nsIFormControlFrame* aSubmitter);
|
1999-10-26 08:44:41 +04:00
|
|
|
virtual void Reset(nsIPresContext* aPresContext);
|
1999-01-22 18:32:57 +03:00
|
|
|
NS_IMETHOD GetType(PRInt32* aType) const;
|
|
|
|
void SetFocus(PRBool aOn, PRBool aRepaint);
|
1999-08-21 04:09:24 +04:00
|
|
|
void ScrollIntoView(nsIPresContext* aPresContext);
|
1999-01-22 18:32:57 +03:00
|
|
|
|
|
|
|
NS_IMETHOD GetFont(nsIPresContext* aPresContext,
|
2000-01-25 18:25:46 +03:00
|
|
|
const nsFont*& aFont);
|
1999-01-22 18:32:57 +03:00
|
|
|
|
|
|
|
NS_IMETHOD GetFormContent(nsIContent*& aContent) const;
|
1999-11-24 09:03:41 +03:00
|
|
|
virtual nscoord GetVerticalInsidePadding(nsIPresContext* aPresContext,
|
1999-09-30 15:30:04 +04:00
|
|
|
float aPixToTwip,
|
1999-01-22 18:32:57 +03:00
|
|
|
nscoord aInnerHeight) const;
|
1999-11-24 09:03:41 +03:00
|
|
|
virtual nscoord GetHorizontalInsidePadding(nsIPresContext* aPresContext,
|
1999-01-22 18:32:57 +03:00
|
|
|
float aPixToTwip,
|
|
|
|
nscoord aInnerWidth,
|
|
|
|
nscoord aCharWidth) const;
|
|
|
|
|
1999-03-06 22:43:13 +03:00
|
|
|
virtual nsresult RequiresWidget(PRBool &aRequiresWidget);
|
|
|
|
|
|
|
|
|
1999-07-01 02:17:43 +04:00
|
|
|
// from nsIAnonymousContentCreator
|
2000-01-22 04:16:50 +03:00
|
|
|
NS_IMETHOD CreateAnonymousContent(nsIPresContext* aPresContext,
|
|
|
|
nsISupportsArray& aChildList);
|
2000-04-19 17:55:17 +04:00
|
|
|
NS_IMETHOD CreateFrameFor(nsIPresContext* aPresContext,
|
|
|
|
nsIContent * aContent,
|
|
|
|
nsIFrame** aFrame) { if (aFrame) *aFrame = nsnull; return NS_ERROR_FAILURE; }
|
1999-07-01 02:17:43 +04: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
|
|
|
|
*/
|
|
|
|
virtual nsresult MouseDown(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse up event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
|
|
|
virtual nsresult MouseUp(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse click event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
virtual nsresult MouseClick(nsIDOMEvent* aMouseEvent); // we only care when the button is clicked
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse click event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
virtual nsresult MouseDblClick(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse enter event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
|
|
|
virtual nsresult MouseOver(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a mouse leave event
|
|
|
|
* @param aMouseEvent @see nsIDOMEvent.h
|
|
|
|
* @returns whether the event was consumed or ignored. @see nsresult
|
|
|
|
*/
|
|
|
|
virtual nsresult MouseOut(nsIDOMEvent* aMouseEvent) { return NS_OK; }
|
|
|
|
|
|
|
|
virtual nsresult HandleEvent(nsIDOMEvent* aEvent) { return NS_OK; }
|
1998-09-23 21:44:33 +04:00
|
|
|
|
1999-09-15 09:31:31 +04:00
|
|
|
//nsIStatefulFrame
|
1999-11-02 04:50:15 +03:00
|
|
|
NS_IMETHOD GetStateType(nsIPresContext* aPresContext, nsIStatefulFrame::StateType* aStateType);
|
2000-01-14 12:28:54 +03:00
|
|
|
NS_IMETHOD SaveState(nsIPresContext* aPresContext, nsIPresState** aState);
|
|
|
|
NS_IMETHOD RestoreState(nsIPresContext* aPresContext, nsIPresState* aState);
|
1999-09-15 09:31:31 +04:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
protected:
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
2000-05-17 03:29:35 +04:00
|
|
|
nsNewFrame* mTextFrame;
|
1999-08-19 18:03:53 +04:00
|
|
|
nsFormFrame* mFormFrame;
|
|
|
|
nsIHTMLContent* mTextContent;
|
2000-08-04 03:39:33 +04:00
|
|
|
nsCOMPtr<nsIHTMLContent> mBrowse;
|
1999-09-15 09:31:31 +04:00
|
|
|
nsString* mCachedState;
|
1999-10-26 08:44:41 +04:00
|
|
|
// XXX Hack: pres context needed by function MouseClick()
|
|
|
|
nsIPresContext* mPresContext; // weak reference
|
1998-09-23 21:44:33 +04:00
|
|
|
|
|
|
|
private:
|
2000-05-17 03:29:35 +04:00
|
|
|
nsNewFrame* GetTextControlFrame(nsIPresContext* aPresContext,
|
2000-01-22 04:16:50 +03:00
|
|
|
nsIFrame* aStart);
|
1999-07-01 02:17:43 +04:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef() { return NS_OK; }
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release() { return NS_OK; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|