1998-04-14 00:24:54 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
#ifndef nsFormControlFrame_h___
|
|
|
|
#define nsFormControlFrame_h___
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
#include "nsIFormControlFrame.h"
|
1998-06-04 21:23:48 +04:00
|
|
|
#include "nsIFormManager.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsLeafFrame.h"
|
1998-04-30 23:55:51 +04:00
|
|
|
#include "nsCoord.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
class nsIView;
|
1998-04-25 01:37:30 +04:00
|
|
|
class nsIPresContext;
|
1998-04-30 23:55:51 +04:00
|
|
|
class nsStyleCoord;
|
1998-09-23 21:16:51 +04:00
|
|
|
class nsFormFrame;
|
|
|
|
|
|
|
|
#define CSS_NOTSET -1
|
|
|
|
#define ATTR_NOTSET -1
|
1998-04-25 01:37:30 +04:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Enumeration of possible mouse states used to detect mouse clicks
|
|
|
|
*/
|
1998-04-14 00:24:54 +04:00
|
|
|
enum nsMouseState {
|
|
|
|
eMouseNone,
|
|
|
|
eMouseEnter,
|
|
|
|
eMouseDown,
|
|
|
|
eMouseUp
|
|
|
|
};
|
|
|
|
|
1998-04-25 01:37:30 +04:00
|
|
|
struct nsInputDimensionSpec
|
|
|
|
{
|
1998-06-04 21:23:48 +04:00
|
|
|
nsIAtom* mColSizeAttr; // attribute used to determine width
|
|
|
|
PRBool mColSizeAttrInPixels; // is attribute value in pixels (otherwise num chars)
|
|
|
|
nsIAtom* mColValueAttr; // attribute used to get value to determine size
|
|
|
|
// if not determined above
|
|
|
|
nsString* mColDefaultValue; // default value if not determined above
|
|
|
|
nscoord mColDefaultSize; // default width if not determined above
|
|
|
|
PRBool mColDefaultSizeInPixels; // is default width in pixels (otherswise num chars)
|
|
|
|
nsIAtom* mRowSizeAttr; // attribute used to determine height
|
|
|
|
nscoord mRowDefaultSize; // default height if not determined above
|
1998-04-25 01:37:30 +04:00
|
|
|
|
|
|
|
nsInputDimensionSpec(nsIAtom* aColSizeAttr, PRBool aColSizeAttrInPixels,
|
1998-06-04 21:23:48 +04:00
|
|
|
nsIAtom* aColValueAttr, nsString* aColDefaultValue,
|
|
|
|
nscoord aColDefaultSize, PRBool aColDefaultSizeInPixels,
|
1998-04-30 23:55:51 +04:00
|
|
|
nsIAtom* aRowSizeAttr, nscoord aRowDefaultSize)
|
1998-04-25 01:37:30 +04:00
|
|
|
: mColSizeAttr(aColSizeAttr), mColSizeAttrInPixels(aColSizeAttrInPixels),
|
1998-06-04 21:23:48 +04:00
|
|
|
mColValueAttr(aColValueAttr),
|
|
|
|
mColDefaultValue(aColDefaultValue), mColDefaultSize(aColDefaultSize),
|
1998-04-25 01:37:30 +04:00
|
|
|
mColDefaultSizeInPixels(aColDefaultSizeInPixels),
|
|
|
|
mRowSizeAttr(aRowSizeAttr), mRowDefaultSize(aRowDefaultSize)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
1998-09-23 21:16:51 +04:00
|
|
|
* nsFormControlFrame is the base class for frames of form controls. It
|
1998-04-14 20:53:16 +04:00
|
|
|
* provides a uniform way of creating widgets, resizing, and painting.
|
|
|
|
* @see nsLeafFrame and its base classes for more info
|
|
|
|
*/
|
1998-09-23 21:16:51 +04:00
|
|
|
class nsFormControlFrame : public nsLeafFrame,
|
|
|
|
public nsIFormControlFrame
|
|
|
|
{
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Main constructor
|
|
|
|
* @param aContent the content representing this frame
|
|
|
|
* @param aParentFrame the parent frame
|
|
|
|
*/
|
1998-09-23 21:16:51 +04:00
|
|
|
nsFormControlFrame(nsIContent* aContent, nsIFrame* aParentFrame);
|
|
|
|
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
static nscoord CalculateSize (nsIPresContext* aPresContext, nsFormControlFrame* aFrame,
|
1998-04-25 01:37:30 +04:00
|
|
|
const nsSize& aCSSSize, nsInputDimensionSpec& aDimensionSpec,
|
|
|
|
nsSize& aBounds, PRBool& aWidthExplicit,
|
1998-10-02 05:12:39 +04:00
|
|
|
PRBool& aHeightExplicit, nscoord& aRowSize,
|
|
|
|
nsIRenderingContext *aRendContext);
|
1998-05-07 20:13:59 +04:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Respond to a gui event
|
|
|
|
* @see nsIFrame::HandleEvent
|
|
|
|
*/
|
1998-04-17 05:41:24 +04:00
|
|
|
NS_IMETHOD HandleEvent(nsIPresContext& aPresContext,
|
|
|
|
nsGUIEvent* aEvent,
|
|
|
|
nsEventStatus& aEventStatus);
|
1998-04-25 01:37:30 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
/**
|
1998-04-14 20:53:16 +04:00
|
|
|
* Draw this frame within the context of a presentation context and rendering context
|
|
|
|
* @see nsIFrame::Paint
|
|
|
|
*/
|
1998-04-17 05:41:24 +04:00
|
|
|
NS_IMETHOD Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-07-14 19:20:43 +04:00
|
|
|
NS_IMETHOD DidReflow(nsIPresContext& aPresContext,
|
|
|
|
nsDidReflowStatus aStatus);
|
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Respond to the request to resize and/or reflow
|
1998-05-25 21:31:49 +04:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-14 20:53:16 +04:00
|
|
|
*/
|
1998-07-15 06:53:09 +04:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aCX,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-25 21:31:49 +04:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-25 01:37:30 +04:00
|
|
|
// new behavior
|
1998-04-14 20:53:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the class id of the widget associated with this frame
|
|
|
|
* @return the class id
|
|
|
|
*/
|
1998-04-26 06:59:29 +04:00
|
|
|
virtual const nsIID& GetCID();
|
1998-04-14 20:53:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the interface id of widget associated with this frame
|
|
|
|
* @return the interface id
|
|
|
|
*/
|
1998-04-26 06:59:29 +04:00
|
|
|
virtual const nsIID& GetIID();
|
1998-04-14 20:53:16 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
NS_IMETHOD GetType(PRInt32* aType) const;
|
|
|
|
NS_IMETHOD GetName(nsString* aName);
|
|
|
|
NS_IMETHOD GetValue(nsString* aName);
|
|
|
|
virtual PRInt32 GetMaxNumValues();
|
|
|
|
virtual PRBool GetNamesValues(PRInt32 aMaxNumValues, PRInt32& aNumValues,
|
|
|
|
nsString* aValues, nsString* aNames);
|
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Get the widget associated with this frame
|
|
|
|
* @param aView the view associated with the frame. It is a convience parm.
|
|
|
|
* @param aWidget the address of address of where the widget will be placed.
|
|
|
|
* This method doses an AddRef on the widget.
|
|
|
|
*/
|
1998-09-23 21:16:51 +04:00
|
|
|
nsresult GetWidget(nsIView* aView, nsIWidget** aWidget);
|
|
|
|
nsresult GetWidget(nsIWidget** aWidget);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-08-04 22:19:51 +04:00
|
|
|
/**
|
|
|
|
* Respond to a enter key being pressed
|
|
|
|
*/
|
|
|
|
virtual void EnterPressed(nsIPresContext& aPresContext) {}
|
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
1998-04-25 01:37:30 +04:00
|
|
|
* Respond to a mouse click (e.g. mouse enter, mouse down, mouse up)
|
1998-04-14 20:53:16 +04:00
|
|
|
*/
|
1998-04-25 01:37:30 +04:00
|
|
|
virtual void MouseClicked(nsIPresContext* aPresContext) {}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
1998-04-25 01:37:30 +04:00
|
|
|
* Perform opertations after the widget associated with this frame has been
|
|
|
|
* created.
|
1998-04-14 20:53:16 +04:00
|
|
|
*/
|
1998-09-23 21:16:51 +04:00
|
|
|
virtual void PostCreateWidget(nsIPresContext* aPresContext);
|
1998-10-08 08:38:41 +04:00
|
|
|
void SetColors(nsIPresContext& aPresContext);
|
1998-09-23 21:16:51 +04:00
|
|
|
|
|
|
|
virtual void Reset();
|
|
|
|
virtual PRBool IsSuccessful();
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
1998-04-25 01:37:30 +04:00
|
|
|
* Perform opertations before the widget associated with this frame has been
|
|
|
|
* created.
|
1998-04-14 20:53:16 +04:00
|
|
|
*/
|
1998-05-18 20:39:42 +04:00
|
|
|
virtual nsWidgetInitData* GetWidgetInitData(nsIPresContext& aPresContext);
|
1998-04-25 01:37:30 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
static nscoord GetTextSize(nsIPresContext& aContext, nsFormControlFrame* aFrame,
|
1998-10-02 05:12:39 +04:00
|
|
|
const nsString& aString, nsSize& aSize,
|
|
|
|
nsIRenderingContext *aRendContext);
|
1998-09-23 21:16:51 +04:00
|
|
|
static nscoord GetTextSize(nsIPresContext& aContext, nsFormControlFrame* aFrame,
|
1998-10-02 05:12:39 +04:00
|
|
|
PRInt32 aNumChars, nsSize& aSize,
|
|
|
|
nsIRenderingContext *aRendContext);
|
1998-04-14 20:53:16 +04:00
|
|
|
|
1998-05-18 20:39:42 +04:00
|
|
|
void GetWidgetSize(nsSize& aSize) const { aSize.width = mWidgetSize.width;
|
|
|
|
aSize.height = mWidgetSize.height; }
|
|
|
|
|
1998-06-04 21:23:48 +04:00
|
|
|
// XXX similar functionality needs to be added to widget library and these
|
|
|
|
// need to change to use it.
|
1998-08-01 03:34:45 +04:00
|
|
|
static nscoord GetScrollbarWidth(float aPixToTwip);
|
|
|
|
virtual nscoord GetVerticalBorderWidth(float aPixToTwip) const;
|
|
|
|
virtual nscoord GetHorizontalBorderWidth(float aPixToTwip) const;
|
1998-07-31 09:22:35 +04:00
|
|
|
virtual nscoord GetVerticalInsidePadding(float aPixToTwip,
|
|
|
|
nscoord aInnerHeight) const;
|
1998-09-23 21:16:51 +04:00
|
|
|
virtual nscoord GetHorizontalInsidePadding(nsIPresContext& aPresContext,
|
|
|
|
float aPixToTwip,
|
1998-07-31 09:22:35 +04:00
|
|
|
nscoord aInnerWidth,
|
|
|
|
nscoord aCharWidth) const;
|
1998-09-23 21:16:51 +04:00
|
|
|
NS_IMETHOD GetSize(PRInt32* aSize) const;
|
|
|
|
NS_IMETHOD GetMaxLength(PRInt32* aSize);
|
|
|
|
|
|
|
|
virtual void SetClickPoint(nscoord aX, nscoord aY);
|
|
|
|
nsFormFrame* GetFormFrame() { return mFormFrame; }
|
|
|
|
virtual void SetFormFrame(nsFormFrame* aFormFrame) { mFormFrame = aFormFrame; }
|
1998-06-04 21:23:48 +04:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
protected:
|
1998-04-14 20:53:16 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
virtual ~nsFormControlFrame();
|
1998-04-14 20:53:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the size that this frame would occupy without any constraints
|
|
|
|
* @param aPresContext the presentation context
|
|
|
|
* @param aDesiredSize the size desired by this frame, to be set by this method
|
|
|
|
* @param aMaxSize the maximum size available for this frame
|
|
|
|
*/
|
1998-04-14 00:24:54 +04:00
|
|
|
virtual void GetDesiredSize(nsIPresContext* aPresContext,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize);
|
1998-04-25 01:37:30 +04:00
|
|
|
|
|
|
|
virtual void GetDesiredSize(nsIPresContext* aPresContext,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredLayoutSize,
|
1998-04-25 01:37:30 +04:00
|
|
|
nsSize& aDesiredWidgetSize);
|
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
NS_IMETHOD GetFont(nsIPresContext* aPresContext, nsFont& aFont);
|
1998-04-25 01:37:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the width and height of this control based on CSS
|
|
|
|
* @param aPresContext the presentation context
|
|
|
|
* @param aSize the size that this frame wants, set by this method. values of -1
|
|
|
|
* for aSize.width or aSize.height indicate unset values.
|
1998-04-14 20:53:16 +04:00
|
|
|
*/
|
1998-05-31 01:21:11 +04:00
|
|
|
void GetStyleSize(nsIPresContext& aContext,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-31 01:21:11 +04:00
|
|
|
nsSize& aSize);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
//nscoord GetStyleDim(nsIPresContext& aPresContext, nscoord aMaxDim,
|
|
|
|
// nscoord aMaxWidth, const nsStyleCoord& aCoord);
|
1998-04-29 20:30:55 +04:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
nsMouseState mLastMouseState;
|
1998-09-23 21:16:51 +04:00
|
|
|
nsIWidget* mWidget;
|
|
|
|
nsSize mWidgetSize;
|
|
|
|
PRBool mDidInit;
|
|
|
|
nsPoint mLastClickPoint;
|
|
|
|
nsFormFrame* mFormFrame;
|
|
|
|
|
|
|
|
private:
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef() { return NS_OK; }
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release() { return NS_OK; }
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-04-25 01:37:30 +04:00
|
|
|
|