2007-03-22 10:30:00 -07:00
|
|
|
/*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* a mozilla.org contributor.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2006
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* 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"),
|
|
|
|
* 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 MPL, 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 MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nsFrameSelection_h___
|
|
|
|
#define nsFrameSelection_h___
|
|
|
|
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsISelectionController.h"
|
|
|
|
#include "nsITableLayout.h"
|
|
|
|
#include "nsITableCellLayout.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsGUIEvent.h"
|
2009-04-06 10:17:38 -07:00
|
|
|
#include "nsIRange.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// IID for the nsFrameSelection interface
|
2009-09-09 20:06:54 -07:00
|
|
|
// 3c6ae2d0-4cf1-44a1-9e9d-2411867f19c6
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_FRAME_SELECTION_IID \
|
2009-09-09 20:06:54 -07:00
|
|
|
{ 0x3c6ae2d0, 0x4cf1, 0x44a1, \
|
|
|
|
{ 0x9e, 0x9d, 0x24, 0x11, 0x86, 0x7f, 0x19, 0xc6 } }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef IBMBIDI // Constant for Set/Get CaretBidiLevel
|
|
|
|
#define BIDI_LEVEL_UNDEFINED 0x80
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Selection interface
|
|
|
|
|
|
|
|
struct SelectionDetails
|
|
|
|
{
|
2008-08-07 14:05:19 -07:00
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
SelectionDetails() {
|
|
|
|
MOZ_COUNT_CTOR(SelectionDetails);
|
|
|
|
}
|
|
|
|
~SelectionDetails() {
|
|
|
|
MOZ_COUNT_DTOR(SelectionDetails);
|
|
|
|
}
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 mStart;
|
|
|
|
PRInt32 mEnd;
|
|
|
|
SelectionType mType;
|
2009-04-22 20:27:12 -07:00
|
|
|
nsTextRangeStyle mTextRangeStyle;
|
2007-03-22 10:30:00 -07:00
|
|
|
SelectionDetails *mNext;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsIPresShell;
|
2009-09-02 22:23:47 -07:00
|
|
|
class nsIScrollableFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
enum EWordMovementType { eStartWord, eEndWord, eDefaultBehavior };
|
|
|
|
|
|
|
|
/** PeekOffsetStruct is used to group various arguments (both input and output)
|
|
|
|
* that are passed to nsFrame::PeekOffset(). See below for the description of
|
|
|
|
* individual arguments.
|
|
|
|
*/
|
2008-07-01 12:16:45 -07:00
|
|
|
struct NS_STACK_CLASS nsPeekOffsetStruct
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
void SetData(nsSelectionAmount aAmount,
|
|
|
|
nsDirection aDirection,
|
|
|
|
PRInt32 aStartOffset,
|
|
|
|
nscoord aDesiredX,
|
|
|
|
PRBool aJumpLines,
|
|
|
|
PRBool aScrollViewStop,
|
|
|
|
PRBool aIsKeyboardSelect,
|
|
|
|
PRBool aVisual,
|
|
|
|
EWordMovementType aWordMovementType = eDefaultBehavior)
|
|
|
|
|
|
|
|
{
|
|
|
|
mAmount = aAmount;
|
|
|
|
mDirection = aDirection;
|
|
|
|
mStartOffset = aStartOffset;
|
|
|
|
mDesiredX = aDesiredX;
|
|
|
|
mJumpLines = aJumpLines;
|
|
|
|
mScrollViewStop = aScrollViewStop;
|
|
|
|
mIsKeyboardSelect = aIsKeyboardSelect;
|
|
|
|
mVisual = aVisual;
|
|
|
|
mWordMovementType = aWordMovementType;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: Most arguments (input and output) are only used with certain values
|
|
|
|
// of mAmount. These values are indicated for each argument below.
|
|
|
|
// Arguments with no such indication are used with all values of mAmount.
|
|
|
|
|
|
|
|
/*** Input arguments ***/
|
|
|
|
// Note: The value of some of the input arguments may be changed upon exit.
|
|
|
|
|
|
|
|
// mAmount: The type of movement requested (by character, word, line, etc.)
|
|
|
|
nsSelectionAmount mAmount;
|
|
|
|
|
|
|
|
// mDirection: eDirPrevious or eDirNext.
|
|
|
|
// * Note for visual bidi movement:
|
|
|
|
// eDirPrevious means 'left-then-up' if the containing block is LTR,
|
|
|
|
// 'right-then-up' if it is RTL.
|
|
|
|
// eDirNext means 'right-then-down' if the containing block is LTR,
|
|
|
|
// 'left-then-down' if it is RTL.
|
|
|
|
// Between paragraphs, eDirPrevious means "go to the visual end of the
|
|
|
|
// previous paragraph", and eDirNext means "go to the visual beginning
|
|
|
|
// of the next paragraph".
|
|
|
|
// Used with: eSelectCharacter, eSelectWord, eSelectLine, eSelectParagraph.
|
|
|
|
nsDirection mDirection;
|
|
|
|
|
|
|
|
// mStartOffset: Offset into the content of the current frame where the peek starts.
|
|
|
|
// Used with: eSelectCharacter, eSelectWord
|
|
|
|
PRInt32 mStartOffset;
|
|
|
|
|
|
|
|
// mDesiredX: The desired x coordinate for the caret.
|
|
|
|
// Used with: eSelectLine.
|
|
|
|
nscoord mDesiredX;
|
|
|
|
|
2009-08-10 00:47:11 -07:00
|
|
|
// mWordMovementType: An enum that determines whether to prefer the start or end of a word
|
|
|
|
// or to use the default beahvior, which is a combination of
|
|
|
|
// direction and the platform-based pref
|
|
|
|
// "layout.word_select.eat_space_to_next_word"
|
|
|
|
EWordMovementType mWordMovementType;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// mJumpLines: Whether to allow jumping across line boundaries.
|
|
|
|
// Used with: eSelectCharacter, eSelectWord.
|
2009-08-10 00:47:11 -07:00
|
|
|
PRPackedBool mJumpLines;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// mScrollViewStop: Whether to stop when reaching a scroll view boundary.
|
|
|
|
// Used with: eSelectCharacter, eSelectWord, eSelectLine.
|
2009-08-10 00:47:11 -07:00
|
|
|
PRPackedBool mScrollViewStop;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// mIsKeyboardSelect: Whether the peeking is done in response to a keyboard action.
|
|
|
|
// Used with: eSelectWord.
|
2009-08-10 00:47:11 -07:00
|
|
|
PRPackedBool mIsKeyboardSelect;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// mVisual: Whether bidi caret behavior is visual (PR_TRUE) or logical (PR_FALSE).
|
|
|
|
// Used with: eSelectCharacter, eSelectWord, eSelectBeginLine, eSelectEndLine.
|
2009-08-10 00:47:11 -07:00
|
|
|
PRPackedBool mVisual;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/*** Output arguments ***/
|
|
|
|
|
|
|
|
// mResultContent: Content reached as a result of the peek.
|
|
|
|
nsCOMPtr<nsIContent> mResultContent;
|
|
|
|
|
|
|
|
// mResultFrame: Frame reached as a result of the peek.
|
|
|
|
// Used with: eSelectCharacter, eSelectWord.
|
|
|
|
nsIFrame *mResultFrame;
|
|
|
|
|
2009-08-10 00:47:11 -07:00
|
|
|
// mContentOffset: Offset into content reached as a result of the peek.
|
|
|
|
PRInt32 mContentOffset;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// mAttachForward: When the result position is between two frames,
|
|
|
|
// indicates which of the two frames the caret should be painted in.
|
|
|
|
// PR_FALSE means "the end of the frame logically before the caret",
|
|
|
|
// PR_TRUE means "the beginning of the frame logically after the caret".
|
|
|
|
// Used with: eSelectLine, eSelectBeginLine, eSelectEndLine.
|
|
|
|
PRBool mAttachForward;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nsPrevNextBidiLevels
|
|
|
|
{
|
|
|
|
void SetData(nsIFrame* aFrameBefore,
|
|
|
|
nsIFrame* aFrameAfter,
|
|
|
|
PRUint8 aLevelBefore,
|
|
|
|
PRUint8 aLevelAfter)
|
|
|
|
{
|
|
|
|
mFrameBefore = aFrameBefore;
|
|
|
|
mFrameAfter = aFrameAfter;
|
|
|
|
mLevelBefore = aLevelBefore;
|
|
|
|
mLevelAfter = aLevelAfter;
|
|
|
|
}
|
|
|
|
nsIFrame* mFrameBefore;
|
|
|
|
nsIFrame* mFrameAfter;
|
|
|
|
PRUint8 mLevelBefore;
|
|
|
|
PRUint8 mLevelAfter;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsTypedSelection;
|
2009-09-02 22:23:47 -07:00
|
|
|
class nsIScrollableFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-11-22 12:47:33 -08:00
|
|
|
/**
|
|
|
|
* Methods which are marked with *unsafe* should be handled with special care.
|
|
|
|
* They may cause nsFrameSelection to be deleted, if strong pointer isn't used,
|
|
|
|
* or they may cause other objects to be deleted.
|
|
|
|
*/
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsFrameSelection : public nsISupports {
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_FRAME_SELECTION_IID)
|
|
|
|
enum HINT { HINTLEFT = 0, HINTRIGHT = 1}; //end of this line or beginning of next
|
|
|
|
/*interfaces for addref and release and queryinterface*/
|
|
|
|
|
2009-01-14 04:24:10 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsFrameSelection)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** Init will initialize the frame selector with the necessary pres shell to
|
|
|
|
* be used by most of the methods
|
|
|
|
* @param aShell is the parameter to be used for most of the other calls for callbacks etc
|
|
|
|
* @param aLimiter limits the selection to nodes with aLimiter parents
|
|
|
|
*/
|
|
|
|
void Init(nsIPresShell *aShell, nsIContent *aLimiter);
|
|
|
|
|
|
|
|
/** HandleClick will take the focus to the new frame at the new offset and
|
|
|
|
* will either extend the selection from the old anchor, or replace the old anchor.
|
|
|
|
* the old anchor and focus position may also be used to deselect things
|
|
|
|
* @param aNewfocus is the content that wants the focus
|
|
|
|
* @param aContentOffset is the content offset of the parent aNewFocus
|
|
|
|
* @param aContentOffsetEnd is the content offset of the parent aNewFocus and is specified different
|
|
|
|
* when you need to select to and include both start and end points
|
|
|
|
* @param aContinueSelection is the flag that tells the selection to keep the old anchor point or not.
|
|
|
|
* @param aMultipleSelection will tell the frame selector to replace /or not the old selection.
|
|
|
|
* cannot coexist with aContinueSelection
|
|
|
|
* @param aHint will tell the selection which direction geometrically to actually show the caret on.
|
|
|
|
* 1 = end of this line 0 = beginning of this line
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult HandleClick(nsIContent *aNewFocus,
|
|
|
|
PRUint32 aContentOffset,
|
|
|
|
PRUint32 aContentEndOffset,
|
|
|
|
PRBool aContinueSelection,
|
|
|
|
PRBool aMultipleSelection,
|
|
|
|
PRBool aHint);
|
|
|
|
|
|
|
|
/** HandleDrag extends the selection to contain the frame closest to aPoint.
|
|
|
|
* @param aPresContext is the context to use when figuring out what frame contains the point.
|
|
|
|
* @param aFrame is the parent of all frames to use when searching for the closest frame to the point.
|
|
|
|
* @param aPoint is relative to aFrame
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
void HandleDrag(nsIFrame *aFrame, nsPoint aPoint);
|
|
|
|
|
|
|
|
/** HandleTableSelection will set selection to a table, cell, etc
|
|
|
|
* depending on information contained in aFlags
|
|
|
|
* @param aParentContent is the paretent of either a table or cell that user clicked or dragged the mouse in
|
|
|
|
* @param aContentOffset is the offset of the table or cell
|
|
|
|
* @param aTarget indicates what to select (defined in nsISelectionPrivate.idl/nsISelectionPrivate.h):
|
|
|
|
* TABLESELECTION_CELL We should select a cell (content points to the cell)
|
|
|
|
* TABLESELECTION_ROW We should select a row (content points to any cell in row)
|
|
|
|
* TABLESELECTION_COLUMN We should select a row (content points to any cell in column)
|
|
|
|
* TABLESELECTION_TABLE We should select a table (content points to the table)
|
|
|
|
* TABLESELECTION_ALLCELLS We should select all cells (content points to any cell in table)
|
|
|
|
* @param aMouseEvent passed in so we can get where event occurred and what keys are pressed
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2009-04-06 10:17:38 -07:00
|
|
|
nsresult HandleTableSelection(nsINode *aParentContent,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aContentOffset,
|
|
|
|
PRInt32 aTarget,
|
|
|
|
nsMouseEvent *aMouseEvent);
|
|
|
|
|
2009-09-09 20:06:54 -07:00
|
|
|
/**
|
|
|
|
* Add cell to the selection.
|
|
|
|
*
|
|
|
|
* @param aCell [in] HTML td element.
|
|
|
|
*/
|
|
|
|
virtual nsresult SelectCellElement(nsIContent *aCell);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add cells to the selection inside of the given cells range.
|
|
|
|
*
|
|
|
|
* @param aTable [in] HTML table element
|
|
|
|
* @param aStartRowIndex [in] row index where the cells range starts
|
|
|
|
* @param aStartColumnIndex [in] column index where the cells range starts
|
|
|
|
* @param aEndRowIndex [in] row index where the cells range ends
|
|
|
|
* @param aEndColumnIndex [in] column index where the cells range ends
|
|
|
|
*/
|
|
|
|
virtual nsresult AddCellsToSelection(nsIContent *aTable,
|
|
|
|
PRInt32 aStartRowIndex,
|
|
|
|
PRInt32 aStartColumnIndex,
|
|
|
|
PRInt32 aEndRowIndex,
|
|
|
|
PRInt32 aEndColumnIndex);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove cells from selection inside of the given cell range.
|
|
|
|
*
|
|
|
|
* @param aTable [in] HTML table element
|
|
|
|
* @param aStartRowIndex [in] row index where the cells range starts
|
|
|
|
* @param aStartColumnIndex [in] column index where the cells range starts
|
|
|
|
* @param aEndRowIndex [in] row index where the cells range ends
|
|
|
|
* @param aEndColumnIndex [in] column index where the cells range ends
|
|
|
|
*/
|
|
|
|
virtual nsresult RemoveCellsFromSelection(nsIContent *aTable,
|
|
|
|
PRInt32 aStartRowIndex,
|
|
|
|
PRInt32 aStartColumnIndex,
|
|
|
|
PRInt32 aEndRowIndex,
|
|
|
|
PRInt32 aEndColumnIndex);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove cells from selection outside of the given cell range.
|
|
|
|
*
|
|
|
|
* @param aTable [in] HTML table element
|
|
|
|
* @param aStartRowIndex [in] row index where the cells range starts
|
|
|
|
* @param aStartColumnIndex [in] column index where the cells range starts
|
|
|
|
* @param aEndRowIndex [in] row index where the cells range ends
|
|
|
|
* @param aEndColumnIndex [in] column index where the cells range ends
|
|
|
|
*/
|
|
|
|
virtual nsresult RestrictCellsToSelection(nsIContent *aTable,
|
|
|
|
PRInt32 aStartRowIndex,
|
|
|
|
PRInt32 aStartColumnIndex,
|
|
|
|
PRInt32 aEndRowIndex,
|
|
|
|
PRInt32 aEndColumnIndex);
|
|
|
|
|
2009-09-09 22:16:18 -07:00
|
|
|
/** StartAutoScrollTimer is responsible for scrolling frames so that
|
|
|
|
* aPoint is always visible, and for selecting any frame that contains
|
|
|
|
* aPoint. The timer will also reset itself to fire again if we have
|
|
|
|
* not scrolled to the end of the document.
|
|
|
|
* @param aFrame is the outermost frame to use when searching for
|
|
|
|
* the closest frame for the point, i.e. the frame that is capturing
|
|
|
|
* the mouse
|
|
|
|
* @param aPoint is relative to aFrame.
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aDelay is the timer's interval.
|
|
|
|
*/
|
2008-12-07 15:11:37 -08:00
|
|
|
/*unsafe*/
|
2009-09-09 22:16:18 -07:00
|
|
|
nsresult StartAutoScrollTimer(nsIFrame *aFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPoint aPoint,
|
|
|
|
PRUint32 aDelay);
|
|
|
|
|
|
|
|
/** StopAutoScrollTimer stops any active auto scroll timer.
|
|
|
|
*/
|
|
|
|
void StopAutoScrollTimer();
|
|
|
|
|
|
|
|
/** Lookup Selection
|
|
|
|
* returns in frame coordinates the selection beginning and ending with the type of selection given
|
|
|
|
* @param aContent is the content asking
|
|
|
|
* @param aContentOffset is the starting content boundary
|
|
|
|
* @param aContentLength is the length of the content piece asking
|
|
|
|
* @param aReturnDetails linkedlist of return values for the selection.
|
|
|
|
* @param aSlowCheck will check using slow method with no shortcuts
|
|
|
|
*/
|
|
|
|
SelectionDetails* LookUpSelection(nsIContent *aContent,
|
|
|
|
PRInt32 aContentOffset,
|
|
|
|
PRInt32 aContentLength,
|
2007-11-22 12:47:33 -08:00
|
|
|
PRBool aSlowCheck) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** SetMouseDownState(PRBool);
|
|
|
|
* sets the mouse state to aState for resons of drag state.
|
|
|
|
* @param aState is the new state of mousedown
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
void SetMouseDownState(PRBool aState);
|
|
|
|
|
|
|
|
/** GetMouseDownState(PRBool *);
|
|
|
|
* gets the mouse state to aState for resons of drag state.
|
|
|
|
* @param aState will hold the state of mousedown
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
PRBool GetMouseDownState() const { return mMouseDownState; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
if we are in table cell selection mode. aka ctrl click in table cell
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
PRBool GetTableCellSelection() const { return mSelectingTableCellMode != 0; }
|
|
|
|
void ClearTableCellSelection() { mSelectingTableCellMode = 0; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** GetSelection
|
|
|
|
* no query interface for selection. must use this method now.
|
|
|
|
* @param aSelectionType enum value defined in nsISelection for the seleciton you want.
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
nsISelection* GetSelection(SelectionType aType) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ScrollSelectionIntoView scrolls a region of the selection,
|
|
|
|
* so that it is visible in the scrolled view.
|
|
|
|
*
|
|
|
|
* @param aType the selection to scroll into view.
|
|
|
|
* @param aRegion the region inside the selection to scroll into view.
|
2010-10-21 13:56:20 -07:00
|
|
|
* @param aFlags the scroll flags. Valid bits include:
|
|
|
|
* SCROLL_SYNCHRONOUS: when set, scrolls the selection into view
|
|
|
|
* before returning. If not set, posts a request which is processed
|
|
|
|
* at some point after the method returns.
|
|
|
|
* SCROLL_FIRST_ANCESTOR_ONLY: if set, only the first ancestor will be scrolled
|
|
|
|
* into view.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2008-12-07 15:11:37 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult ScrollSelectionIntoView(SelectionType aType,
|
|
|
|
SelectionRegion aRegion,
|
2010-10-21 13:56:20 -07:00
|
|
|
PRInt16 aFlags) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** RepaintSelection repaints the selected frames that are inside the selection
|
|
|
|
* specified by aSelectionType.
|
|
|
|
* @param aSelectionType enum value defined in nsISelection for the seleciton you want.
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
nsresult RepaintSelection(SelectionType aType) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** GetFrameForNodeOffset given a node and its child offset, return the nsIFrame and
|
|
|
|
* the offset into that frame.
|
|
|
|
* @param aNode input parameter for the node to look at
|
|
|
|
* @param aOffset offset into above node.
|
|
|
|
* @param aReturnOffset will contain offset into frame.
|
|
|
|
*/
|
2007-12-11 06:15:21 -08:00
|
|
|
virtual nsIFrame* GetFrameForNodeOffset(nsIContent *aNode,
|
|
|
|
PRInt32 aOffset,
|
|
|
|
HINT aHint,
|
|
|
|
PRInt32 *aReturnOffset) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scrolling then moving caret placement code in common to text areas and
|
|
|
|
* content areas should be located in the implementer
|
|
|
|
* This method will accept the following parameters and perform the scroll
|
|
|
|
* and caret movement. It remains for the caller to call the final
|
|
|
|
* ScrollCaretIntoView if that called wants to be sure the caret is always
|
|
|
|
* visible.
|
|
|
|
*
|
|
|
|
* @param aForward if PR_TRUE, scroll forward if not scroll backward
|
|
|
|
* @param aExtend if PR_TRUE, extend selection to the new point
|
2009-09-02 22:23:47 -07:00
|
|
|
* @param aScrollableFrame the frame to scroll
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
void CommonPageMove(PRBool aForward,
|
|
|
|
PRBool aExtend,
|
2009-09-02 22:23:47 -07:00
|
|
|
nsIScrollableFrame* aScrollableFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void SetHint(HINT aHintRight) { mHint = aHintRight; }
|
2007-11-22 12:47:33 -08:00
|
|
|
HINT GetHint() const { return mHint; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef IBMBIDI
|
|
|
|
/** SetCaretBidiLevel sets the caret bidi level
|
|
|
|
* @param aLevel the caret bidi level
|
|
|
|
* This method is virtual since it gets called from outside of layout.
|
|
|
|
*/
|
|
|
|
virtual void SetCaretBidiLevel (PRUint8 aLevel);
|
|
|
|
/** GetCaretBidiLevel gets the caret bidi level
|
|
|
|
* This method is virtual since it gets called from outside of layout.
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
virtual PRUint8 GetCaretBidiLevel() const;
|
2007-03-22 10:30:00 -07:00
|
|
|
/** UndefineCaretBidiLevel sets the caret bidi level to "undefined"
|
|
|
|
* This method is virtual since it gets called from outside of layout.
|
|
|
|
*/
|
|
|
|
virtual void UndefineCaretBidiLevel();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** CharacterMove will generally be called from the nsiselectioncontroller implementations.
|
|
|
|
* the effect being the selection will move one character left or right.
|
|
|
|
* @param aForward move forward in document.
|
|
|
|
* @param aExtend continue selection
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult CharacterMove(PRBool aForward, PRBool aExtend);
|
|
|
|
|
2008-10-16 00:44:32 -07:00
|
|
|
/** CharacterExtendForDelete extends the selection forward (logically) to
|
|
|
|
* the next character cell, so that the selected cell can be deleted.
|
|
|
|
*/
|
|
|
|
/*unsafe*/
|
|
|
|
nsresult CharacterExtendForDelete();
|
|
|
|
|
2010-06-04 10:28:19 -07:00
|
|
|
/** CharacterExtendForBackspace extends the selection backward (logically) to
|
|
|
|
* the previous character cell, so that the selected cell can be deleted.
|
|
|
|
*/
|
|
|
|
/*unsafe*/
|
|
|
|
nsresult CharacterExtendForBackspace();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** WordMove will generally be called from the nsiselectioncontroller implementations.
|
|
|
|
* the effect being the selection will move one word left or right.
|
|
|
|
* @param aForward move forward in document.
|
|
|
|
* @param aExtend continue selection
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult WordMove(PRBool aForward, PRBool aExtend);
|
|
|
|
|
|
|
|
/** WordExtendForDelete extends the selection backward or forward (logically) to the
|
|
|
|
* next word boundary, so that the selected word can be deleted.
|
|
|
|
* @param aForward select forward in document.
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult WordExtendForDelete(PRBool aForward);
|
|
|
|
|
|
|
|
/** LineMove will generally be called from the nsiselectioncontroller implementations.
|
|
|
|
* the effect being the selection will move one line up or down.
|
|
|
|
* @param aForward move forward in document.
|
|
|
|
* @param aExtend continue selection
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult LineMove(PRBool aForward, PRBool aExtend);
|
|
|
|
|
|
|
|
/** IntraLineMove will generally be called from the nsiselectioncontroller implementations.
|
|
|
|
* the effect being the selection will move to beginning or end of line
|
|
|
|
* @param aForward move forward in document.
|
|
|
|
* @param aExtend continue selection
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult IntraLineMove(PRBool aForward, PRBool aExtend);
|
|
|
|
|
|
|
|
/** Select All will generally be called from the nsiselectioncontroller implementations.
|
|
|
|
* it will select the whole doc
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult SelectAll();
|
|
|
|
|
|
|
|
/** Sets/Gets The display selection enum.
|
|
|
|
*/
|
|
|
|
void SetDisplaySelection(PRInt16 aState) { mDisplaySelection = aState; }
|
2007-11-22 12:47:33 -08:00
|
|
|
PRInt16 GetDisplaySelection() const { return mDisplaySelection; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** This method can be used to store the data received during a MouseDown
|
|
|
|
* event so that we can place the caret during the MouseUp event.
|
|
|
|
* @aMouseEvent the event received by the selection MouseDown
|
|
|
|
* handling method. A NULL value can be use to tell this method
|
|
|
|
* that any data is storing is no longer valid.
|
|
|
|
*/
|
|
|
|
void SetDelayedCaretData(nsMouseEvent *aMouseEvent);
|
|
|
|
|
|
|
|
/** Get the delayed MouseDown event data necessary to place the
|
|
|
|
* caret during MouseUp processing.
|
|
|
|
* @return a pointer to the event received
|
|
|
|
* by the selection during MouseDown processing. It can be NULL
|
|
|
|
* if the data is no longer valid.
|
|
|
|
*/
|
|
|
|
nsMouseEvent* GetDelayedCaretData();
|
|
|
|
|
|
|
|
/** Get the content node that limits the selection
|
|
|
|
* When searching up a nodes for parents, as in a text edit field
|
|
|
|
* in an browser page, we must stop at this node else we reach into the
|
|
|
|
* parent page, which is very bad!
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
nsIContent* GetLimiter() const { return mLimiter; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-11-22 12:47:33 -08:00
|
|
|
nsIContent* GetAncestorLimiter() const { return mAncestorLimiter; }
|
|
|
|
/*unsafe*/
|
2007-06-27 19:48:16 -07:00
|
|
|
void SetAncestorLimiter(nsIContent *aLimiter);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** This will tell the frame selection that a double click has been pressed
|
|
|
|
* so it can track abort future drags if inside the same selection
|
|
|
|
* @aDoubleDown has the double click down happened
|
|
|
|
*/
|
|
|
|
void SetMouseDoubleDown(PRBool aDoubleDown) { mMouseDoubleDownState = aDoubleDown; }
|
|
|
|
|
|
|
|
/** This will return whether the double down flag was set.
|
|
|
|
* @return whether the double down flag was set
|
|
|
|
*/
|
2007-11-22 12:47:33 -08:00
|
|
|
PRBool GetMouseDoubleDown() const { return mMouseDoubleDownState; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** GetPrevNextBidiLevels will return the frames and associated Bidi levels of the characters
|
|
|
|
* logically before and after a (collapsed) selection.
|
|
|
|
* @param aNode is the node containing the selection
|
|
|
|
* @param aContentOffset is the offset of the selection in the node
|
|
|
|
* @param aJumpLines If PR_TRUE, look across line boundaries.
|
|
|
|
* If PR_FALSE, behave as if there were base-level frames at line edges.
|
|
|
|
*
|
|
|
|
* @return A struct holding the before/after frame and the before/after level.
|
|
|
|
*
|
|
|
|
* At the beginning and end of each line there is assumed to be a frame with
|
|
|
|
* Bidi level equal to the paragraph embedding level.
|
|
|
|
* In these cases the before frame and after frame respectively will be
|
|
|
|
* nsnull.
|
|
|
|
*
|
|
|
|
* This method is virtual since it gets called from outside of layout.
|
|
|
|
*/
|
|
|
|
virtual nsPrevNextBidiLevels GetPrevNextBidiLevels(nsIContent *aNode,
|
|
|
|
PRUint32 aContentOffset,
|
2007-11-22 12:47:33 -08:00
|
|
|
PRBool aJumpLines) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** GetFrameFromLevel will scan in a given direction
|
|
|
|
* until it finds a frame with a Bidi level less than or equal to a given level.
|
|
|
|
* It will return the last frame before this.
|
|
|
|
* @param aPresContext is the context to use
|
|
|
|
* @param aFrameIn is the frame to start from
|
|
|
|
* @param aDirection is the direction to scan
|
|
|
|
* @param aBidiLevel is the level to search for
|
|
|
|
* @param aFrameOut will hold the frame returned
|
|
|
|
*/
|
|
|
|
nsresult GetFrameFromLevel(nsIFrame *aFrameIn,
|
|
|
|
nsDirection aDirection,
|
|
|
|
PRUint8 aBidiLevel,
|
2007-11-22 12:47:33 -08:00
|
|
|
nsIFrame **aFrameOut) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MaintainSelection will track the current selection as being "sticky".
|
|
|
|
* Dragging or extending selection will never allow for a subset
|
|
|
|
* (or the whole) of the maintained selection to become unselected.
|
|
|
|
* Primary use: double click selecting then dragging on second click
|
|
|
|
* @param aAmount the initial amount of text selected (word, line or paragraph).
|
|
|
|
* For "line", use eSelectBeginLine.
|
|
|
|
*/
|
|
|
|
nsresult MaintainSelection(nsSelectionAmount aAmount = eSelectNoAmount);
|
|
|
|
|
|
|
|
|
|
|
|
nsFrameSelection();
|
|
|
|
|
|
|
|
void StartBatchChanges();
|
|
|
|
void EndBatchChanges();
|
2007-11-22 12:47:33 -08:00
|
|
|
/*unsafe*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult DeleteFromDocument();
|
|
|
|
|
2007-11-22 12:47:33 -08:00
|
|
|
nsIPresShell *GetShell()const { return mShell; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-12-07 15:11:37 -08:00
|
|
|
void DisconnectFromPresShell() { StopAutoScrollTimer(); mShell = nsnull; }
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
nsresult TakeFocus(nsIContent *aNewFocus,
|
|
|
|
PRUint32 aContentOffset,
|
2008-10-09 03:07:16 -07:00
|
|
|
PRUint32 aContentEndOffset,
|
|
|
|
HINT aHint,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool aContinueSelection,
|
|
|
|
PRBool aMultipleSelection);
|
|
|
|
|
|
|
|
void BidiLevelFromMove(nsIPresShell* aPresShell,
|
|
|
|
nsIContent *aNode,
|
|
|
|
PRUint32 aContentOffset,
|
|
|
|
PRUint32 aKeycode,
|
|
|
|
HINT aHint);
|
|
|
|
void BidiLevelFromClick(nsIContent *aNewFocus, PRUint32 aContentOffset);
|
|
|
|
nsPrevNextBidiLevels GetPrevNextBidiLevels(nsIContent *aNode,
|
|
|
|
PRUint32 aContentOffset,
|
|
|
|
HINT aHint,
|
2007-11-22 12:47:33 -08:00
|
|
|
PRBool aJumpLines) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRBool AdjustForMaintainedSelection(nsIContent *aContent, PRInt32 aOffset);
|
|
|
|
|
|
|
|
// post and pop reasons for notifications. we may stack these later
|
|
|
|
void PostReason(PRInt16 aReason) { mSelectionChangeReason = aReason; }
|
|
|
|
PRInt16 PopReason()
|
|
|
|
{
|
|
|
|
PRInt16 retval = mSelectionChangeReason;
|
|
|
|
mSelectionChangeReason = 0;
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend class nsTypedSelection;
|
|
|
|
#ifdef DEBUG
|
|
|
|
void printSelection(); // for debugging
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
|
|
void ResizeBuffer(PRUint32 aNewBufSize);
|
|
|
|
/*HELPER METHODS*/
|
2010-04-28 10:47:23 -07:00
|
|
|
nsresult MoveCaret(PRUint32 aKeycode, PRBool aContinueSelection,
|
|
|
|
nsSelectionAmount aAmount);
|
|
|
|
nsresult MoveCaret(PRUint32 aKeycode, PRBool aContinueSelection,
|
|
|
|
nsSelectionAmount aAmount,
|
|
|
|
PRBool aVisualMovement);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult FetchDesiredX(nscoord &aDesiredX); //the x position requested by the Key Handling for up down
|
|
|
|
void InvalidateDesiredX(); //do not listen to mDesiredX you must get another.
|
|
|
|
void SetDesiredX(nscoord aX); //set the mDesiredX
|
|
|
|
|
|
|
|
nsresult ConstrainFrameAndPointToAnchorSubtree(nsIFrame *aFrame, nsPoint& aPoint, nsIFrame **aRetFrame, nsPoint& aRetPoint);
|
|
|
|
|
2007-11-22 12:47:33 -08:00
|
|
|
PRUint32 GetBatching() const {return mBatching; }
|
|
|
|
PRBool GetNotifyFrames() const { return mNotifyFrames; }
|
2007-03-22 10:30:00 -07:00
|
|
|
void SetDirty(PRBool aDirty=PR_TRUE){if (mBatching) mChangesDuringBatching = aDirty;}
|
|
|
|
|
2007-11-22 12:47:33 -08:00
|
|
|
// nsFrameSelection may get deleted when calling this,
|
|
|
|
// so remember to use nsCOMPtr when needed.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult NotifySelectionListeners(SelectionType aType); // add parameters to say collapsed etc?
|
|
|
|
|
2009-01-14 04:24:10 -08:00
|
|
|
nsRefPtr<nsTypedSelection> mDomSelections[nsISelectionController::NUM_SELECTIONTYPES];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Table selection support.
|
|
|
|
// Interfaces that let us get info based on cellmap locations
|
2007-11-22 12:47:33 -08:00
|
|
|
nsITableLayout* GetTableLayout(nsIContent *aTableContent) const;
|
|
|
|
nsITableCellLayout* GetCellLayout(nsIContent *aCellContent) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult SelectBlockOfCells(nsIContent *aStartNode, nsIContent *aEndNode);
|
|
|
|
nsresult SelectRowOrColumn(nsIContent *aCellContent, PRUint32 aTarget);
|
2009-09-09 20:06:54 -07:00
|
|
|
nsresult UnselectCells(nsIContent *aTable,
|
|
|
|
PRInt32 aStartRowIndex, PRInt32 aStartColumnIndex,
|
|
|
|
PRInt32 aEndRowIndex, PRInt32 aEndColumnIndex,
|
|
|
|
PRBool aRemoveOutsideOfCellRange);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult GetCellIndexes(nsIContent *aCell, PRInt32 &aRowIndex, PRInt32 &aColIndex);
|
|
|
|
|
2009-04-06 10:20:32 -07:00
|
|
|
// Get our first range, if its first selected node is a cell. If this does
|
|
|
|
// not return null, then the first node in the returned range is a cell
|
|
|
|
// (according to GetFirstCellNodeInRange).
|
|
|
|
nsIRange* GetFirstCellRange();
|
|
|
|
// Get our next range, if its first selected node is a cell. If this does
|
|
|
|
// not return null, then the first node in the returned range is a cell
|
|
|
|
// (according to GetFirstCellNodeInRange).
|
|
|
|
nsIRange* GetNextCellRange();
|
|
|
|
nsIContent* GetFirstCellNodeInRange(nsIRange *aRange) const;
|
2009-04-06 10:21:30 -07:00
|
|
|
// Returns non-null table if in same table, null otherwise
|
|
|
|
nsIContent* IsInSameTable(nsIContent *aContent1, nsIContent *aContent2) const;
|
|
|
|
// Might return null
|
|
|
|
nsIContent* GetParentTable(nsIContent *aCellNode) const;
|
2009-04-06 10:20:30 -07:00
|
|
|
nsresult CreateAndAddRange(nsINode *aParentNode, PRInt32 aOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult ClearNormalSelection();
|
|
|
|
|
2009-04-06 10:17:38 -07:00
|
|
|
nsCOMPtr<nsINode> mCellParent; //used to snap to table selection
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIContent> mStartSelectedCell;
|
|
|
|
nsCOMPtr<nsIContent> mEndSelectedCell;
|
|
|
|
nsCOMPtr<nsIContent> mAppendStartSelectedCell;
|
|
|
|
nsCOMPtr<nsIContent> mUnselectCellOnMouseUp;
|
|
|
|
PRInt32 mSelectingTableCellMode;
|
|
|
|
PRInt32 mSelectedCellIndex;
|
|
|
|
|
|
|
|
// maintain selection
|
2009-04-06 10:17:38 -07:00
|
|
|
nsCOMPtr<nsIRange> mMaintainRange;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSelectionAmount mMaintainedAmount;
|
|
|
|
|
|
|
|
//batching
|
|
|
|
PRInt32 mBatching;
|
|
|
|
|
|
|
|
nsIContent *mLimiter; //limit selection navigation to a child of this node.
|
2007-06-27 19:48:16 -07:00
|
|
|
nsIContent *mAncestorLimiter; // Limit selection navigation to a descendant of
|
|
|
|
// this node.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIPresShell *mShell;
|
|
|
|
|
|
|
|
PRInt16 mSelectionChangeReason; // reason for notifications of selection changing
|
|
|
|
PRInt16 mDisplaySelection; //for visual display purposes.
|
|
|
|
|
|
|
|
HINT mHint; //hint to tell if the selection is at the end of this line or beginning of next
|
|
|
|
#ifdef IBMBIDI
|
2008-02-26 07:04:33 -08:00
|
|
|
PRUint8 mCaretBidiLevel;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
PRInt32 mDesiredX;
|
|
|
|
|
|
|
|
nsMouseEvent mDelayedMouseEvent;
|
|
|
|
|
|
|
|
PRPackedBool mDelayedMouseEventValid;
|
|
|
|
|
|
|
|
PRPackedBool mChangesDuringBatching;
|
|
|
|
PRPackedBool mNotifyFrames;
|
|
|
|
PRPackedBool mDragSelectingCells;
|
|
|
|
PRPackedBool mMouseDownState; //for drag purposes
|
|
|
|
PRPackedBool mMouseDoubleDownState; //has the doubleclick down happened
|
|
|
|
PRPackedBool mDesiredXSet;
|
|
|
|
|
|
|
|
PRInt8 mCaretMovementStyle;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsFrameSelection, NS_FRAME_SELECTION_IID)
|
|
|
|
|
|
|
|
#endif /* nsFrameSelection_h___ */
|