gecko-dev/layout/html/forms/src/nsInputFrame.h

231 lines
8.3 KiB
C
Raw Normal View History

1998-04-13 20:24:54 +00: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.
*/
#ifndef nsInputFrame_h___
#define nsInputFrame_h___
1998-06-04 17:23:48 +00:00
#include "nsIFormManager.h"
#include "nsHTMLContainer.h"
1998-04-13 20:24:54 +00:00
#include "nsISupports.h"
#include "nsIWidget.h"
#include "nsLeafFrame.h"
1998-04-30 19:55:51 +00:00
#include "nsCoord.h"
1998-04-13 20:24:54 +00:00
1998-04-14 16:53:16 +00:00
class nsIView;
class nsIPresContext;
1998-04-30 19:55:51 +00:00
class nsStyleCoord;
1998-04-14 16:53:16 +00:00
/**
* Enumeration of possible mouse states used to detect mouse clicks
*/
1998-04-13 20:24:54 +00:00
enum nsMouseState {
eMouseNone,
eMouseEnter,
eMouseDown,
eMouseUp
};
struct nsInputDimensionSpec
{
1998-06-04 17:23:48 +00: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
nsInputDimensionSpec(nsIAtom* aColSizeAttr, PRBool aColSizeAttrInPixels,
1998-06-04 17:23:48 +00:00
nsIAtom* aColValueAttr, nsString* aColDefaultValue,
nscoord aColDefaultSize, PRBool aColDefaultSizeInPixels,
1998-04-30 19:55:51 +00:00
nsIAtom* aRowSizeAttr, nscoord aRowDefaultSize)
: mColSizeAttr(aColSizeAttr), mColSizeAttrInPixels(aColSizeAttrInPixels),
1998-06-04 17:23:48 +00:00
mColValueAttr(aColValueAttr),
mColDefaultValue(aColDefaultValue), mColDefaultSize(aColDefaultSize),
mColDefaultSizeInPixels(aColDefaultSizeInPixels),
mRowSizeAttr(aRowSizeAttr), mRowDefaultSize(aRowDefaultSize)
{
}
};
1998-04-14 16:53:16 +00:00
/**
* nsInputFrame is the base class for frames of form controls. It
* provides a uniform way of creating widgets, resizing, and painting.
* @see nsLeafFrame and its base classes for more info
*/
1998-04-13 20:24:54 +00:00
class nsInputFrame : public nsLeafFrame {
typedef nsLeafFrame nsInputFrameSuper;
1998-04-13 20:24:54 +00:00
public:
1998-04-14 16:53:16 +00:00
/**
* Main constructor
* @param aContent the content representing this frame
* @param aParentFrame the parent frame
*/
nsInputFrame(nsIContent* aContent, nsIFrame* aParentFrame);
1998-04-13 20:24:54 +00:00
1998-04-30 19:55:51 +00:00
static nscoord CalculateSize (nsIPresContext* aPresContext, nsInputFrame* aFrame,
const nsSize& aCSSSize, nsInputDimensionSpec& aDimensionSpec,
nsSize& aBounds, PRBool& aWidthExplicit,
1998-04-30 19:55:51 +00:00
PRBool& aHeightExplicit, nscoord& aRowSize);
1998-04-14 16:53:16 +00:00
/**
* Respond to a gui event
* @see nsIFrame::HandleEvent
*/
NS_IMETHOD HandleEvent(nsIPresContext& aPresContext,
nsGUIEvent* aEvent,
nsEventStatus& aEventStatus);
NS_IMETHOD SetRect(const nsRect& aRect);
1998-04-14 16:53:16 +00:00
/**
* Draw this frame within the context of a presentation context and rendering context
* @see nsIFrame::Paint
*/
NS_IMETHOD Paint(nsIPresContext& aPresContext,
nsIRenderingContext& aRenderingContext,
const nsRect& aDirtyRect);
1998-04-13 20:24:54 +00:00
NS_IMETHOD DidReflow(nsIPresContext& aPresContext,
nsDidReflowStatus aStatus);
1998-04-14 16:53:16 +00:00
/**
* Respond to the request to resize and/or reflow
* @see nsIFrame::Reflow
1998-04-14 16:53:16 +00:00
*/
NS_IMETHOD Reflow(nsIPresContext& aCX,
nsReflowMetrics& aDesiredSize,
const nsReflowState& aReflowState,
nsReflowStatus& aStatus);
1998-04-13 20:24:54 +00:00
// new behavior
1998-04-14 16:53:16 +00:00
1998-06-04 17:23:48 +00:00
nsFormRenderingMode GetMode() const;
/**
* Return true if the underlying form element is a hidden form element
*/
PRBool IsHidden();
1998-04-14 16:53:16 +00:00
/**
* Get the class id of the widget associated with this frame
* @return the class id
*/
virtual const nsIID& GetCID();
1998-04-14 16:53:16 +00:00
/**
* Get the interface id of widget associated with this frame
* @return the interface id
*/
virtual const nsIID& GetIID();
1998-04-14 16:53:16 +00: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-04-13 20:24:54 +00:00
virtual nsresult GetWidget(nsIView* aView, nsIWidget** aWidget);
1998-04-14 16:53:16 +00:00
/**
* Respond to a mouse click (e.g. mouse enter, mouse down, mouse up)
1998-04-14 16:53:16 +00:00
*/
virtual void MouseClicked(nsIPresContext* aPresContext) {}
1998-04-13 20:24:54 +00:00
1998-04-14 16:53:16 +00:00
/**
* Perform opertations after the widget associated with this frame has been
* created.
1998-04-14 16:53:16 +00:00
*/
virtual void PostCreateWidget(nsIPresContext* aPresContext, nsIView *aView);
1998-04-13 20:24:54 +00:00
1998-04-14 16:53:16 +00:00
/**
* Perform opertations before the widget associated with this frame has been
* created.
1998-04-14 16:53:16 +00:00
*/
virtual nsWidgetInitData* GetWidgetInitData(nsIPresContext& aPresContext);
1998-06-04 17:23:48 +00:00
static nscoord GetTextSize(nsIPresContext& aContext, nsInputFrame* aFrame,
const nsString& aString, nsSize& aSize);
1998-06-04 17:23:48 +00:00
static nscoord GetTextSize(nsIPresContext& aContext, nsInputFrame* aFrame,
PRInt32 aNumChars, nsSize& aSize);
1998-04-14 16:53:16 +00:00
void GetWidgetSize(nsSize& aSize) const { aSize.width = mWidgetSize.width;
aSize.height = mWidgetSize.height; }
1998-06-04 17:23:48 +00:00
// XXX similar functionality needs to be added to widget library and these
// need to change to use it.
static PRInt32 GetScrollbarWidth(float aPixToTwip);
virtual PRInt32 GetVerticalBorderWidth(float aPixToTwip) const;
virtual PRInt32 GetHorizontalBorderWidth(float aPixToTwip) const;
virtual nscoord GetVerticalInsidePadding(float aPixToTwip,
nscoord aInnerHeight) const;
virtual nscoord GetHorizontalInsidePadding(float aPixToTwip,
nscoord aInnerWidth,
nscoord aCharWidth) const;
1998-06-04 17:23:48 +00:00
1998-04-13 20:24:54 +00:00
protected:
1998-04-14 16:53:16 +00:00
1998-04-13 20:24:54 +00:00
virtual ~nsInputFrame();
1998-04-14 16:53:16 +00:00
/**
* Return PR_TRUE if the bounds of this frame have been set
*/
PRBool BoundsAreSet();
void SetViewVisiblity(nsIPresContext* aPresContext, PRBool aShow);
/**
1998-04-14 16:53:16 +00: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-13 20:24:54 +00:00
virtual void GetDesiredSize(nsIPresContext* aPresContext,
const nsReflowState& aReflowState,
nsReflowMetrics& aDesiredSize);
virtual void GetDesiredSize(nsIPresContext* aPresContext,
const nsReflowState& aReflowState,
nsReflowMetrics& aDesiredLayoutSize,
nsSize& aDesiredWidgetSize);
const void GetFont(nsIPresContext* aPresContext, nsFont& aFont);
/**
* 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 16:53:16 +00:00
*/
void GetStyleSize(nsIPresContext& aContext,
const nsReflowState& aReflowState,
nsSize& aSize);
1998-04-13 20:24:54 +00:00
1998-04-30 19:55:51 +00:00
nscoord GetStyleDim(nsIPresContext& aPresContext, nscoord aMaxDim,
nscoord aMaxWidth, const nsStyleCoord& aCoord);
1998-04-29 16:30:55 +00:00
1998-04-13 20:24:54 +00:00
nsMouseState mLastMouseState;
nsSize mWidgetSize;
PRBool mDidInit;
1998-04-13 20:24:54 +00:00
};
#endif