mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
323 lines
12 KiB
C++
323 lines
12 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* 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/
|
|
*
|
|
* 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.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either 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"),
|
|
* 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
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
* 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
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef nsTextControlFrame_h___
|
|
#define nsTextControlFrame_h___
|
|
|
|
#include "nsStackFrame.h"
|
|
#include "nsAreaFrame.h"
|
|
#include "nsIFormControlFrame.h"
|
|
#include "nsIDOMMouseListener.h"
|
|
#include "nsIAnonymousContentCreator.h"
|
|
#include "nsIEditor.h"
|
|
#include "nsITextControlFrame.h"
|
|
#include "nsFormControlHelper.h"//for the inputdimensions
|
|
#include "nsHTMLValue.h" //for nsHTMLValue
|
|
#include "nsIFontMetrics.h"
|
|
#include "nsWeakReference.h" //for service and presshell pointers
|
|
#include "nsIScrollableViewProvider.h"
|
|
#include "nsIPhonetic.h"
|
|
|
|
class nsIPresState;
|
|
class nsISupportsArray;
|
|
class nsIHTMLContent;
|
|
class nsIEditor;
|
|
class nsISelectionController;
|
|
class nsTextInputSelectionImpl;
|
|
class nsTextInputListener;
|
|
class nsIDOMCharacterData;
|
|
class nsIScrollableView;
|
|
#ifdef ACCESSIBILITY
|
|
class nsIAccessible;
|
|
#endif
|
|
|
|
|
|
class nsTextControlFrame : public nsStackFrame,
|
|
public nsIAnonymousContentCreator,
|
|
public nsITextControlFrame,
|
|
public nsIScrollableViewProvider,
|
|
public nsIPhonetic
|
|
|
|
{
|
|
public:
|
|
nsTextControlFrame(nsIPresShell* aShell);
|
|
virtual ~nsTextControlFrame();
|
|
|
|
static void ReleaseGlobals();
|
|
|
|
virtual void RemovedAsPrimaryFrame(nsIPresContext* aPresContext);
|
|
|
|
NS_IMETHOD Destroy(nsIPresContext* aPresContext);
|
|
|
|
NS_IMETHOD Reflow(nsIPresContext* aPresContext,
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
const nsHTMLReflowState& aReflowState,
|
|
nsReflowStatus& aStatus);
|
|
|
|
NS_IMETHOD Paint(nsIPresContext* aPresContext,
|
|
nsIRenderingContext& aRenderingContext,
|
|
const nsRect& aDirtyRect,
|
|
nsFramePaintLayer aWhichLayer,
|
|
PRUint32 aFlags = 0);
|
|
|
|
NS_IMETHOD GetFrameForPoint(nsIPresContext* aPresContext,
|
|
const nsPoint& aPoint,
|
|
nsFramePaintLayer aWhichLayer,
|
|
nsIFrame** aFrame);
|
|
|
|
NS_IMETHOD HandleEvent(nsIPresContext* aPresContext,
|
|
nsGUIEvent* aEvent,
|
|
nsEventStatus* aEventStatus);
|
|
|
|
NS_IMETHOD GetPrefSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize);
|
|
NS_IMETHOD GetMinSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize);
|
|
NS_IMETHOD GetMaxSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize);
|
|
NS_IMETHOD GetAscent(nsBoxLayoutState& aBoxLayoutState, nscoord& aAscent);
|
|
#ifdef ACCESSIBILITY
|
|
NS_IMETHOD GetAccessible(nsIAccessible** aAccessible);
|
|
#endif
|
|
|
|
#ifdef NS_DEBUG
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const
|
|
{
|
|
aResult = NS_LITERAL_STRING("nsTextControlFrame");
|
|
return NS_OK;
|
|
}
|
|
#endif
|
|
|
|
// from nsIAnonymousContentCreator
|
|
NS_IMETHOD CreateAnonymousContent(nsIPresContext* aPresContext,
|
|
nsISupportsArray& aChildList);
|
|
|
|
// Utility methods to set current widget state
|
|
void SetValue(const nsAString& aValue);
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext* aPresContext,
|
|
nsIAtom* aListName,
|
|
nsIFrame* aChildList);
|
|
|
|
//==== BEGIN NSIFORMCONTROLFRAME
|
|
NS_IMETHOD_(PRInt32) GetType() const; //*
|
|
NS_IMETHOD GetName(nsAString* aName);//*
|
|
virtual void SetFocus(PRBool aOn , PRBool aRepaint);
|
|
virtual void ScrollIntoView(nsIPresContext* aPresContext);
|
|
virtual void MouseClicked(nsIPresContext* aPresContext);
|
|
virtual nscoord GetVerticalInsidePadding(nsIPresContext* aPresContext,
|
|
float aPixToTwip,
|
|
nscoord aInnerHeight) const;
|
|
virtual nscoord GetHorizontalInsidePadding(nsIPresContext* aPresContext,
|
|
float aPixToTwip,
|
|
nscoord aInnerWidth,
|
|
nscoord aCharWidth) const;/**/
|
|
NS_IMETHOD SetSuggestedSize(nscoord aWidth, nscoord aHeight);
|
|
virtual nsresult RequiresWidget(PRBool &aRequiresWidget);
|
|
NS_IMETHOD GetFont(nsIPresContext* aPresContext,
|
|
const nsFont*& aFont);
|
|
NS_IMETHOD GetFormContent(nsIContent*& aContent) const;
|
|
NS_IMETHOD SetProperty(nsIPresContext* aPresContext, nsIAtom* aName, const nsAString& aValue);
|
|
NS_IMETHOD GetProperty(nsIAtom* aName, nsAString& aValue);
|
|
NS_IMETHOD OnContentReset();
|
|
|
|
|
|
//==== END NSIFORMCONTROLFRAME
|
|
|
|
//==== NSIGFXTEXTCONTROLFRAME2
|
|
|
|
NS_IMETHOD GetEditor(nsIEditor **aEditor);
|
|
NS_IMETHOD OwnsValue(PRBool* aOwnsValue);
|
|
NS_IMETHOD GetValue(nsAString& aValue, PRBool aIgnoreWrap);
|
|
NS_IMETHOD GetTextLength(PRInt32* aTextLength);
|
|
NS_IMETHOD CheckFireOnChange();
|
|
NS_IMETHOD SetSelectionStart(PRInt32 aSelectionStart);
|
|
NS_IMETHOD SetSelectionEnd(PRInt32 aSelectionEnd);
|
|
NS_IMETHOD SetSelectionRange(PRInt32 aSelectionStart, PRInt32 aSelectionEnd);
|
|
NS_IMETHOD GetSelectionRange(PRInt32* aSelectionStart, PRInt32* aSelectionEnd);
|
|
NS_IMETHOD GetSelectionContr(nsISelectionController **aSelCon);
|
|
|
|
// nsIPhonetic
|
|
NS_DECL_NSIPHONETIC
|
|
|
|
//==== END NSIGFXTEXTCONTROLFRAME2
|
|
//==== OVERLOAD of nsIFrame
|
|
NS_IMETHOD GetFrameType(nsIAtom** aType) const;
|
|
|
|
/** handler for attribute changes to mContent */
|
|
NS_IMETHOD AttributeChanged(nsIPresContext* aPresContext,
|
|
nsIContent* aChild,
|
|
PRInt32 aNameSpaceID,
|
|
nsIAtom* aAttribute,
|
|
PRInt32 aModType,
|
|
PRInt32 aHint);
|
|
|
|
NS_IMETHOD GetText(nsString* aText);
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
public: //for methods who access nsTextControlFrame directly
|
|
|
|
void FireOnInput();//notify that we have some kind of change.
|
|
/**
|
|
* Find out whether this is a single line text control. (text or password)
|
|
* @return whether this is a single line text control
|
|
*/
|
|
PRBool IsSingleLineTextControl() const;
|
|
/**
|
|
* Find out whether this control is a textarea.
|
|
* @return whether this is a textarea text control
|
|
*/
|
|
PRBool IsTextArea() const;
|
|
/**
|
|
* Find out whether this control edits plain text. (Currently always true.)
|
|
* @return whether this is a plain text control
|
|
*/
|
|
PRBool IsPlainTextControl() const;
|
|
/**
|
|
* Find out whether this is a password control (input type=password)
|
|
* @return whether this is a password ontrol
|
|
*/
|
|
PRBool IsPasswordTextControl() const;
|
|
void SetValueChanged(PRBool aValueChanged);
|
|
/** Called when the frame is focused, to remember the value for onChange. */
|
|
nsresult InitFocusedValue();
|
|
nsresult DOMPointToOffset(nsIDOMNode* aNode, PRInt32 aNodeOffset, PRInt32 *aResult);
|
|
nsresult OffsetToDOMPoint(PRInt32 aOffset, nsIDOMNode** aResult, PRInt32* aPosition);
|
|
|
|
protected:
|
|
|
|
/**
|
|
* Find out whether this control is scrollable (i.e. if it is not a single
|
|
* line text control)
|
|
* @return whether this control is scrollable
|
|
*/
|
|
PRBool IsScrollable() const;
|
|
/**
|
|
* Initialize mEditor with the proper flags and the default value.
|
|
* @throws NS_ERROR_NOT_INITIALIZED if mEditor has not been created
|
|
* @throws various and sundry other things
|
|
*/
|
|
nsresult InitEditor();
|
|
/**
|
|
* Strip all \n, \r and nulls from the given string
|
|
* @param aString the string to remove newlines from [in/out]
|
|
*/
|
|
void RemoveNewlines(nsString &aString);
|
|
/**
|
|
* Get the maxlength attribute
|
|
* @param aMaxLength the value of the max length attr
|
|
* @throws NS_CONTENT_ATTR_NOT_THERE if attr not defined
|
|
*/
|
|
nsresult GetMaxLength(PRInt32* aMaxLength);
|
|
/**
|
|
* Find out whether an attribute exists on the content or not.
|
|
* @param aAtt the attribute to determine the existence of
|
|
* @throws NS_CONTENT_ATTR_NOT_THERE if it does not exist
|
|
*/
|
|
nsresult DoesAttributeExist(nsIAtom *aAtt);
|
|
/**
|
|
* We call this when we are being destroyed or removed from the PFM.
|
|
* @param aPresContext the current pres context
|
|
*/
|
|
void PreDestroy(nsIPresContext* aPresContext);
|
|
/**
|
|
* Fire the onChange event.
|
|
*/
|
|
nsresult FireOnChange();
|
|
|
|
//helper methods
|
|
nsresult GetSizeFromContent(PRInt32* aSize) const;
|
|
|
|
/**
|
|
* Get the cols attribute (if textarea) or a default
|
|
* @return the number of columns to use
|
|
*/
|
|
PRInt32 GetCols();
|
|
/**
|
|
* Get the rows attribute (if textarea) or a default
|
|
* @return the number of rows to use
|
|
*/
|
|
PRInt32 GetRows();
|
|
|
|
nsresult ReflowStandard(nsIPresContext* aPresContext,
|
|
nsSize& aDesiredSize,
|
|
const nsHTMLReflowState& aReflowState,
|
|
nsReflowStatus& aStatus);
|
|
|
|
nsresult CalculateSizeStandard(nsIPresContext* aPresContext,
|
|
nsIRenderingContext* aRendContext,
|
|
nsSize& aDesiredSize,
|
|
nsSize& aMinSize);
|
|
|
|
NS_IMETHOD CreateFrameFor(nsIPresContext* aPresContext,
|
|
nsIContent * aContent,
|
|
nsIFrame** aFrame);
|
|
|
|
PRInt32 GetWidthInCharacters() const;
|
|
|
|
// nsIScrollableViewProvider
|
|
NS_IMETHOD GetScrollableView(nsIScrollableView** aView);
|
|
|
|
private:
|
|
//helper methods
|
|
nsresult SetSelectionInternal(nsIDOMNode *aStartNode, PRInt32 aStartOffset,
|
|
nsIDOMNode *aEndNode, PRInt32 aEndOffset);
|
|
nsresult SelectAllContents();
|
|
nsresult SetSelectionEndPoints(PRInt32 aSelStart, PRInt32 aSelEnd);
|
|
|
|
private:
|
|
nsCOMPtr<nsIEditor> mEditor;
|
|
nsCOMPtr<nsISelectionController> mSelCon;
|
|
|
|
//cached sizes and states
|
|
nscoord mSuggestedWidth;
|
|
nscoord mSuggestedHeight;
|
|
nsSize mSize;
|
|
|
|
// these packed bools could instead use the high order bits on mState, saving 4 bytes
|
|
PRPackedBool mUseEditor;
|
|
PRPackedBool mIsProcessing;
|
|
PRPackedBool mNotifyOnInput;//default this to off to stop any notifications until setup is complete
|
|
PRPackedBool mDidPreDestroy; // has PreDestroy been called
|
|
|
|
nsTextInputSelectionImpl *mTextSelImpl;
|
|
nsTextInputListener *mTextListener;
|
|
nsIScrollableView *mScrollableView;
|
|
nsString mFocusedValue;
|
|
};
|
|
|
|
#endif
|
|
|
|
|