1999-02-11 23:49:08 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-02-11 23:49:08 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* 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.
|
1999-02-11 23:49:08 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* 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 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.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-02-11 23:49:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "nsCoord.h"
|
2000-09-14 11:45:01 +00:00
|
|
|
#include "nsISelectionListener.h"
|
2000-09-07 20:21:22 +00:00
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsITimer.h"
|
1999-02-11 23:49:08 +00:00
|
|
|
#include "nsICaret.h"
|
2000-04-27 07:37:12 +00:00
|
|
|
#include "nsWeakPtr.h"
|
2001-03-21 01:16:22 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
#include "nsIBidiKeyboard.h"
|
|
|
|
#endif
|
1999-02-11 23:49:08 +00:00
|
|
|
|
1999-04-01 23:57:35 +00:00
|
|
|
class nsIView;
|
2000-09-07 20:21:22 +00:00
|
|
|
|
1999-02-11 23:49:08 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsCaret : public nsICaret,
|
2000-09-14 11:45:01 +00:00
|
|
|
public nsISelectionListener
|
1999-02-11 23:49:08 +00:00
|
|
|
{
|
2000-09-07 05:26:25 +00:00
|
|
|
public:
|
1999-02-11 23:49:08 +00:00
|
|
|
|
2000-09-07 05:26:25 +00:00
|
|
|
nsCaret();
|
|
|
|
virtual ~nsCaret();
|
1999-02-11 23:49:08 +00:00
|
|
|
|
2000-09-07 05:26:25 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
1999-02-11 23:49:08 +00:00
|
|
|
|
2000-09-07 05:26:25 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
// nsICaret interface
|
|
|
|
NS_IMETHOD Init(nsIPresShell *inPresShell);
|
2003-02-27 23:09:51 +00:00
|
|
|
NS_IMETHOD Terminate();
|
1999-02-11 23:49:08 +00:00
|
|
|
|
2002-09-26 00:07:53 +00:00
|
|
|
NS_IMETHOD GetCaretDOMSelection(nsISelection **outDOMSel);
|
2000-09-14 11:45:01 +00:00
|
|
|
NS_IMETHOD SetCaretDOMSelection(nsISelection *inDOMSel);
|
2000-06-01 02:37:40 +00:00
|
|
|
NS_IMETHOD GetCaretVisible(PRBool *outMakeVisible);
|
2003-02-24 10:26:20 +00:00
|
|
|
NS_IMETHOD SetCaretVisible(PRBool intMakeVisible);
|
|
|
|
NS_IMETHOD SetCaretReadOnly(PRBool inMakeReadonly);
|
|
|
|
NS_IMETHOD GetCaretCoordinates(EViewCoordinates aRelativeToType, nsISelection *inDOMSel, nsRect* outCoordinates, PRBool* outIsCollapsed, nsIView **outView);
|
|
|
|
NS_IMETHOD EraseCaret();
|
2000-09-14 11:45:01 +00:00
|
|
|
|
2002-08-10 08:15:30 +00:00
|
|
|
NS_IMETHOD SetVisibilityDuringSelection(PRBool aVisibility);
|
2003-02-27 23:09:51 +00:00
|
|
|
NS_IMETHOD DrawAtPosition(nsIDOMNode* aNode, PRInt32 aOffset);
|
2000-09-14 11:45:01 +00:00
|
|
|
|
|
|
|
//nsISelectionListener interface
|
2005-01-31 23:47:26 +00:00
|
|
|
NS_DECL_NSISELECTIONLISTENER
|
2000-09-07 05:26:25 +00:00
|
|
|
|
|
|
|
static void CaretBlinkCallback(nsITimer *aTimer, void *aClosure);
|
|
|
|
|
2005-11-16 09:37:01 +00:00
|
|
|
NS_IMETHOD GetCaretFrameForNodeOffset (nsIContent* aContentNode, PRInt32 aOffset, nsIFrameSelection::HINT aFrameHint, PRUint8 aBidiLevel,
|
|
|
|
nsIFrame** aReturnFrame, PRInt32* aReturnOffset);
|
2000-09-07 05:26:25 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
void KillTimer();
|
|
|
|
nsresult PrimeTimer();
|
|
|
|
|
|
|
|
nsresult StartBlinking();
|
|
|
|
nsresult StopBlinking();
|
|
|
|
|
2002-08-26 20:55:30 +00:00
|
|
|
void GetViewForRendering(nsIFrame *caretFrame, EViewCoordinates coordType, nsPoint &viewOffset, nsRect& outClipRect, nsIView **outRenderingView, nsIView **outRelativeView);
|
2005-11-16 09:37:01 +00:00
|
|
|
PRBool DrawAtPositionWithHint(nsIDOMNode* aNode, PRInt32 aOffset, nsIFrameSelection::HINT aFrameHint, PRUint8 aBidiLevel);
|
2000-09-07 05:26:25 +00:00
|
|
|
PRBool MustDrawCaret();
|
|
|
|
void DrawCaret();
|
2005-10-04 03:14:03 +00:00
|
|
|
void DrawCaretAfterBriefDelay();
|
2005-08-11 03:44:16 +00:00
|
|
|
void GetCaretRectAndInvert(nsIFrame* aFrame, PRInt32 aFrameOffset);
|
2000-09-07 05:26:25 +00:00
|
|
|
void ToggleDrawnStatus() { mDrawn = !mDrawn; }
|
|
|
|
|
2000-09-07 20:21:22 +00:00
|
|
|
protected:
|
2000-04-27 07:37:12 +00:00
|
|
|
|
2000-09-07 20:21:22 +00:00
|
|
|
nsWeakPtr mPresShell;
|
|
|
|
nsWeakPtr mDomSelectionWeak;
|
1999-02-11 23:49:08 +00:00
|
|
|
|
2000-09-07 20:21:22 +00:00
|
|
|
nsCOMPtr<nsITimer> mBlinkTimer;
|
|
|
|
nsCOMPtr<nsIRenderingContext> mRendContext;
|
|
|
|
|
|
|
|
PRUint32 mBlinkRate; // time for one cyle (off then on), in milliseconds
|
2000-12-28 03:27:23 +00:00
|
|
|
|
2003-02-27 23:09:51 +00:00
|
|
|
nscoord mCaretTwipsWidth; // caret width in twips. this gets calculated laziiy
|
2004-10-13 01:12:14 +00:00
|
|
|
nscoord mBidiIndicatorTwipsSize; // width and height of bidi indicator
|
|
|
|
|
2000-09-07 20:21:22 +00:00
|
|
|
PRPackedBool mVisible; // is the caret blinking
|
|
|
|
PRPackedBool mDrawn; // this should be mutable
|
|
|
|
PRPackedBool mReadOnly; // it the caret in readonly state (draws differently)
|
2001-04-05 19:53:13 +00:00
|
|
|
PRPackedBool mShowDuringSelection; // show when text is selected
|
2003-02-24 10:26:20 +00:00
|
|
|
|
2000-09-07 05:26:25 +00:00
|
|
|
nsRect mCaretRect; // the last caret rect
|
2000-09-07 20:21:22 +00:00
|
|
|
nsIView* mLastCaretView; // last view that we used for drawing. Cached so we can tell when we need to make a new RC
|
2005-08-11 03:44:16 +00:00
|
|
|
nsCOMPtr<nsIContent> mLastContent; // store the content the caret was last requested to be drawn in (by DrawAtPosition()/DrawCaret()),
|
|
|
|
// note that this can be different than where it was actually drawn (anon <BR> in text control)
|
|
|
|
PRInt32 mLastContentOffset; // the offset for the last request
|
2005-09-10 11:14:48 +00:00
|
|
|
nsIFrameSelection::HINT mLastHint; // the hint associated with the last request, see also mLastBidiLevel below
|
2001-03-21 01:16:22 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
nsRect mHookRect; // directional hook on the caret
|
|
|
|
nsCOMPtr<nsIBidiKeyboard> mBidiKeyboard; // Bidi keyboard object to set and query keyboard language
|
2005-09-10 11:14:48 +00:00
|
|
|
PRUint8 mLastBidiLevel; // saved bidi level of the last draw request, to use when we erase
|
2001-03-21 01:16:22 +00:00
|
|
|
PRPackedBool mKeyboardRTL; // is the keyboard language right-to-left
|
|
|
|
#endif
|
1999-02-11 23:49:08 +00:00
|
|
|
};
|
|
|
|
|