2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2000-02-16 23:00:52 +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/
|
2000-02-16 23:00:52 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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.
|
2000-02-16 23:00:52 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-02-16 23:00:52 +00:00
|
|
|
*
|
2000-10-08 05:56:55 +00:00
|
|
|
* Contributor(s):
|
|
|
|
* Peter Annema <disttsc@bart.nl>
|
2001-06-08 03:25:44 +00:00
|
|
|
* Dean Tessman <dean_tessman@hotmail.com>
|
2006-01-21 05:04:28 +00:00
|
|
|
* Masayuki Nakano <masayuki@d-toybox.com>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* 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"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Eric Vaughan
|
|
|
|
// Netscape Communications
|
|
|
|
//
|
|
|
|
// See documentation in associated header file
|
|
|
|
//
|
|
|
|
|
2002-04-09 02:29:21 +00:00
|
|
|
#include "nsReadableUtils.h"
|
2000-03-31 07:02:06 +00:00
|
|
|
#include "nsTextBoxFrame.h"
|
2000-02-16 23:00:52 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIDeviceContext.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
2006-12-26 17:47:52 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2000-02-16 23:00:52 +00:00
|
|
|
#include "nsIRenderingContext.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsStyleContext.h"
|
2000-02-16 23:00:52 +00:00
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
2000-03-31 07:02:06 +00:00
|
|
|
#include "nsBoxLayoutState.h"
|
2000-08-24 23:39:39 +00:00
|
|
|
#include "nsMenuBarListener.h"
|
2001-04-17 01:58:00 +00:00
|
|
|
#include "nsXPIDLString.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsIServiceManager.h"
|
2002-02-21 13:39:39 +00:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDOMElement.h"
|
2004-09-20 11:29:07 +00:00
|
|
|
#include "nsIDOMXULLabelElement.h"
|
2002-02-21 13:39:39 +00:00
|
|
|
#include "nsIEventStateManager.h"
|
2001-12-17 22:51:39 +00:00
|
|
|
#include "nsITheme.h"
|
2001-12-17 07:14:49 +00:00
|
|
|
#include "nsUnicharUtils.h"
|
2004-04-29 23:34:19 +00:00
|
|
|
#include "nsContentUtils.h"
|
2006-01-26 02:29:17 +00:00
|
|
|
#include "nsDisplayList.h"
|
2007-08-06 08:15:00 +00:00
|
|
|
#include "nsCSSRendering.h"
|
2007-08-10 07:06:13 +00:00
|
|
|
#include "nsIReflowCallback.h"
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
2002-02-19 20:41:32 +00:00
|
|
|
#include "nsBidiUtils.h"
|
2001-05-15 11:58:40 +00:00
|
|
|
#include "nsBidiPresUtils.h"
|
|
|
|
#endif // IBMBIDI
|
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
#define CROP_LEFT "left"
|
|
|
|
#define CROP_RIGHT "right"
|
|
|
|
#define CROP_CENTER "center"
|
2001-08-15 05:37:53 +00:00
|
|
|
#define CROP_START "start"
|
|
|
|
#define CROP_END "end"
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
#define NS_STATE_NEED_LAYOUT 0x01000000
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
class nsAccessKeyInfo
|
|
|
|
{
|
|
|
|
public:
|
2000-10-08 05:56:55 +00:00
|
|
|
PRInt32 mAccesskeyIndex;
|
|
|
|
nscoord mBeforeWidth, mAccessWidth, mAccessUnderlineSize, mAccessOffset;
|
2000-02-16 23:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-07-20 08:40:13 +00:00
|
|
|
PRBool nsTextBoxFrame::gAlwaysAppendAccessKey = PR_FALSE;
|
|
|
|
PRBool nsTextBoxFrame::gAccessKeyPrefInitialized = PR_FALSE;
|
|
|
|
PRBool nsTextBoxFrame::gInsertSeparatorBeforeAccessKey = PR_FALSE;
|
|
|
|
PRBool nsTextBoxFrame::gInsertSeparatorPrefInitialized = PR_FALSE;
|
2001-04-17 01:58:00 +00:00
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
//
|
|
|
|
// NS_NewToolbarFrame
|
|
|
|
//
|
2005-10-26 21:46:39 +00:00
|
|
|
// Creates a new Toolbar frame and returns it
|
2000-02-16 23:00:52 +00:00
|
|
|
//
|
2005-10-26 21:46:39 +00:00
|
|
|
nsIFrame*
|
2006-03-26 21:30:36 +00:00
|
|
|
NS_NewTextBoxFrame (nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2006-03-26 21:30:36 +00:00
|
|
|
return new (aPresShell) nsTextBoxFrame (aPresShell, aContext);
|
2009-09-12 16:49:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsTextBoxFrame)
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-09-07 16:49:21 +00:00
|
|
|
nsTextBoxFrame::AttributeChanged(PRInt32 aNameSpaceID,
|
2000-10-08 05:56:55 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
mState |= NS_STATE_NEED_LAYOUT;
|
|
|
|
PRBool aResize;
|
|
|
|
PRBool aRedraw;
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
UpdateAttributes(aAttribute, aResize, aRedraw);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
|
|
|
if (aResize) {
|
2007-03-30 21:11:41 +00:00
|
|
|
PresContext()->PresShell()->
|
2007-05-06 19:16:51 +00:00
|
|
|
FrameNeedsReflow(this, nsIPresShell::eStyleChange,
|
|
|
|
NS_FRAME_IS_DIRTY);
|
2000-10-08 05:56:55 +00:00
|
|
|
} else if (aRedraw) {
|
2007-03-30 21:11:41 +00:00
|
|
|
nsBoxLayoutState state(PresContext());
|
2000-10-08 05:56:55 +00:00
|
|
|
Redraw(state);
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2002-02-21 13:39:39 +00:00
|
|
|
// If the accesskey changed, register for the new value
|
|
|
|
// The old value has been unregistered in nsXULElement::SetAttr
|
2006-12-26 17:47:52 +00:00
|
|
|
if (aAttribute == nsGkAtoms::accesskey || aAttribute == nsGkAtoms::control)
|
2006-04-10 00:16:29 +00:00
|
|
|
RegUnregAccessKey(PR_TRUE);
|
2002-02-21 13:39:39 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
return NS_OK;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsTextBoxFrame::nsTextBoxFrame(nsIPresShell* aShell, nsStyleContext* aContext):
|
2009-05-12 10:13:09 +00:00
|
|
|
nsLeafBoxFrame(aShell, aContext), mAccessKeyInfo(nsnull), mCropType(CropRight),
|
2007-09-04 08:46:50 +00:00
|
|
|
mNeedsReflowCallback(PR_FALSE)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
mState |= NS_STATE_NEED_LAYOUT;
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
MarkIntrinsicWidthsDirty();
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsTextBoxFrame::~nsTextBoxFrame()
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2003-12-21 04:04:05 +00:00
|
|
|
delete mAccessKeyInfo;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2006-03-09 18:55:21 +00:00
|
|
|
nsTextBoxFrame::Init(nsIContent* aContent,
|
2000-10-08 05:56:55 +00:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2006-04-10 00:16:29 +00:00
|
|
|
nsTextBoxFrameSuper::Init(aContent, aParent, aPrevInFlow);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
mState |= NS_STATE_NEED_LAYOUT;
|
|
|
|
PRBool aResize;
|
|
|
|
PRBool aRedraw;
|
2006-04-10 00:16:29 +00:00
|
|
|
UpdateAttributes(nsnull, aResize, aRedraw); /* update all */
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2002-02-21 13:39:39 +00:00
|
|
|
// register access key
|
2006-04-10 00:16:29 +00:00
|
|
|
RegUnregAccessKey(PR_TRUE);
|
2002-02-21 13:39:39 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
void
|
|
|
|
nsTextBoxFrame::Destroy()
|
2002-02-21 13:39:39 +00:00
|
|
|
{
|
|
|
|
// unregister access key
|
2006-04-10 00:16:29 +00:00
|
|
|
RegUnregAccessKey(PR_FALSE);
|
|
|
|
nsTextBoxFrameSuper::Destroy();
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2001-10-19 20:56:29 +00:00
|
|
|
PRBool
|
|
|
|
nsTextBoxFrame::AlwaysAppendAccessKey()
|
|
|
|
{
|
|
|
|
if (!gAccessKeyPrefInitialized)
|
|
|
|
{
|
2003-01-10 06:57:26 +00:00
|
|
|
gAccessKeyPrefInitialized = PR_TRUE;
|
|
|
|
|
2005-06-28 17:21:21 +00:00
|
|
|
const char* prefName = "intl.menuitems.alwaysappendaccesskeys";
|
|
|
|
nsAdoptingString val = nsContentUtils::GetLocalizedStringPref(prefName);
|
|
|
|
gAlwaysAppendAccessKey = val.Equals(NS_LITERAL_STRING("true"));
|
2001-10-19 20:56:29 +00:00
|
|
|
}
|
|
|
|
return gAlwaysAppendAccessKey;
|
|
|
|
}
|
2005-07-20 08:40:13 +00:00
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsTextBoxFrame::InsertSeparatorBeforeAccessKey()
|
|
|
|
{
|
|
|
|
if (!gInsertSeparatorPrefInitialized)
|
|
|
|
{
|
|
|
|
gInsertSeparatorPrefInitialized = PR_TRUE;
|
|
|
|
|
|
|
|
const char* prefName = "intl.menuitems.insertseparatorbeforeaccesskeys";
|
|
|
|
nsAdoptingString val = nsContentUtils::GetLocalizedStringPref(prefName);
|
|
|
|
gInsertSeparatorBeforeAccessKey = val.EqualsLiteral("true");
|
|
|
|
}
|
|
|
|
return gInsertSeparatorBeforeAccessKey;
|
|
|
|
}
|
2001-10-19 20:56:29 +00:00
|
|
|
|
2007-08-10 07:06:13 +00:00
|
|
|
class nsAsyncAccesskeyUpdate : public nsIReflowCallback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsAsyncAccesskeyUpdate(nsIFrame* aFrame) : mWeakFrame(aFrame)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual PRBool ReflowFinished()
|
|
|
|
{
|
|
|
|
PRBool shouldFlush = PR_FALSE;
|
|
|
|
nsTextBoxFrame* frame =
|
|
|
|
static_cast<nsTextBoxFrame*>(mWeakFrame.GetFrame());
|
|
|
|
if (frame) {
|
|
|
|
shouldFlush = frame->UpdateAccesskey(mWeakFrame);
|
|
|
|
}
|
|
|
|
delete this;
|
|
|
|
return shouldFlush;
|
|
|
|
}
|
|
|
|
|
2007-12-01 07:22:44 +00:00
|
|
|
virtual void ReflowCallbackCanceled()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2007-08-10 07:06:13 +00:00
|
|
|
nsWeakFrame mWeakFrame;
|
|
|
|
};
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsTextBoxFrame::UpdateAccesskey(nsWeakFrame& aWeakThis)
|
|
|
|
{
|
|
|
|
nsAutoString accesskey;
|
|
|
|
nsCOMPtr<nsIDOMXULLabelElement> labelElement = do_QueryInterface(mContent);
|
2009-07-21 11:58:30 +00:00
|
|
|
NS_ENSURE_TRUE(aWeakThis.IsAlive(), PR_FALSE);
|
2007-08-10 07:06:13 +00:00
|
|
|
if (labelElement) {
|
|
|
|
// Accesskey may be stored on control.
|
2007-08-18 00:13:14 +00:00
|
|
|
// Because this method is called by the reflow callback, current context
|
|
|
|
// may not be the right one. Pushing the context of mContent so that
|
|
|
|
// if nsIDOMXULLabelElement is implemented in XBL, we don't get a
|
|
|
|
// security exception.
|
2007-10-01 10:02:32 +00:00
|
|
|
nsCxPusher cx;
|
|
|
|
if (cx.Push(mContent)) {
|
|
|
|
labelElement->GetAccessKey(accesskey);
|
|
|
|
NS_ENSURE_TRUE(aWeakThis.IsAlive(), PR_FALSE);
|
|
|
|
}
|
2007-08-10 07:06:13 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::accesskey, accesskey);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!accesskey.Equals(mAccessKey)) {
|
|
|
|
// Need to get clean mTitle.
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::value, mTitle);
|
|
|
|
mAccessKey = accesskey;
|
|
|
|
UpdateAccessTitle();
|
|
|
|
PresContext()->PresShell()->
|
|
|
|
FrameNeedsReflow(this, nsIPresShell::eStyleChange,
|
|
|
|
NS_FRAME_IS_DIRTY);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
void
|
2006-04-10 00:16:29 +00:00
|
|
|
nsTextBoxFrame::UpdateAttributes(nsIAtom* aAttribute,
|
2000-10-08 05:56:55 +00:00
|
|
|
PRBool& aResize,
|
|
|
|
PRBool& aRedraw)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
PRBool doUpdateTitle = PR_FALSE;
|
2000-02-16 23:00:52 +00:00
|
|
|
aResize = PR_FALSE;
|
|
|
|
aRedraw = PR_FALSE;
|
|
|
|
|
2006-12-26 17:47:52 +00:00
|
|
|
if (aAttribute == nsnull || aAttribute == nsGkAtoms::crop) {
|
2006-04-24 05:40:11 +00:00
|
|
|
static nsIContent::AttrValuesArray strings[] =
|
2006-12-26 17:47:52 +00:00
|
|
|
{&nsGkAtoms::left, &nsGkAtoms::start, &nsGkAtoms::center,
|
|
|
|
&nsGkAtoms::right, &nsGkAtoms::end, nsnull};
|
2000-02-16 23:00:52 +00:00
|
|
|
CroppingStyle cropType;
|
2006-12-26 17:47:52 +00:00
|
|
|
switch (mContent->FindAttrValueIn(kNameSpaceID_None, nsGkAtoms::crop,
|
2006-04-24 05:40:11 +00:00
|
|
|
strings, eCaseMatters)) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropLeft;
|
2006-04-24 05:40:11 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropCenter;
|
2006-04-24 05:40:11 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
case 4:
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropRight;
|
2006-04-24 05:40:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropNone;
|
2006-04-24 05:40:11 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
if (cropType != mCropType) {
|
|
|
|
aResize = PR_TRUE;
|
|
|
|
mCropType = cropType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-26 17:47:52 +00:00
|
|
|
if (aAttribute == nsnull || aAttribute == nsGkAtoms::value) {
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::value, mTitle);
|
2006-02-09 21:32:48 +00:00
|
|
|
doUpdateTitle = PR_TRUE;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2007-09-04 08:46:50 +00:00
|
|
|
if (aAttribute == nsnull || aAttribute == nsGkAtoms::accesskey) {
|
|
|
|
mNeedsReflowCallback = PR_TRUE;
|
2007-08-10 07:06:13 +00:00
|
|
|
// Ensure that layout is refreshed and reflow callback called.
|
|
|
|
aResize = PR_TRUE;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
if (doUpdateTitle) {
|
|
|
|
UpdateAccessTitle();
|
|
|
|
aResize = PR_TRUE;
|
|
|
|
}
|
2002-02-21 13:39:39 +00:00
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
class nsDisplayXULTextBox : public nsDisplayItem {
|
|
|
|
public:
|
2006-03-14 20:43:18 +00:00
|
|
|
nsDisplayXULTextBox(nsTextBoxFrame* aFrame) : nsDisplayItem(aFrame) {
|
2006-01-29 18:48:58 +00:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayXULTextBox);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayXULTextBox() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayXULTextBox);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder, nsIRenderingContext* aCtx,
|
|
|
|
const nsRect& aDirtyRect);
|
2008-11-25 22:59:06 +00:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder);
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_DISPLAY_DECL_NAME("XULTextBox")
|
|
|
|
};
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2008-11-25 22:59:06 +00:00
|
|
|
void
|
|
|
|
nsDisplayXULTextBox::Paint(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx, const nsRect& aDirtyRect)
|
2006-01-26 02:29:17 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<nsTextBoxFrame*>(mFrame)->
|
2006-03-14 20:43:18 +00:00
|
|
|
PaintTitle(*aCtx, aDirtyRect, aBuilder->ToReferenceFrame(mFrame));
|
2006-01-26 02:29:17 +00:00
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2008-11-25 22:59:06 +00:00
|
|
|
nsRect
|
|
|
|
nsDisplayXULTextBox::GetBounds(nsDisplayListBuilder* aBuilder) {
|
|
|
|
return mFrame->GetOverflowRect() + aBuilder->ToReferenceFrame(mFrame);
|
|
|
|
}
|
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextBoxFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
if (!IsVisibleForPainting(aBuilder))
|
|
|
|
return NS_OK;
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
nsresult rv = nsLeafBoxFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return aLists.Content()->AppendNewToTop(new (aBuilder)
|
|
|
|
nsDisplayXULTextBox(this));
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
void
|
|
|
|
nsTextBoxFrame::PaintTitle(nsIRenderingContext& aRenderingContext,
|
2000-10-08 05:56:55 +00:00
|
|
|
const nsRect& aDirtyRect,
|
2006-01-26 02:29:17 +00:00
|
|
|
nsPoint aPt)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2003-05-23 21:34:47 +00:00
|
|
|
if (mTitle.IsEmpty())
|
2006-01-26 02:29:17 +00:00
|
|
|
return;
|
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
nsRect textRect(CalcTextRect(aRenderingContext, aPt));
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
// Paint the text shadow before doing any foreground stuff
|
2003-05-15 03:42:21 +00:00
|
|
|
const nsStyleText* textStyle = GetStyleText();
|
2008-10-01 00:57:51 +00:00
|
|
|
if (textStyle->mTextShadow) {
|
|
|
|
// Text shadow happens with the last value being painted at the back,
|
|
|
|
// ie. it is painted first.
|
|
|
|
for (PRUint32 i = textStyle->mTextShadow->Length(); i > 0; --i) {
|
|
|
|
PaintOneShadow(aRenderingContext.ThebesContext(),
|
|
|
|
textRect,
|
|
|
|
textStyle->mTextShadow->ShadowAt(i - 1),
|
2008-12-02 21:16:22 +00:00
|
|
|
GetStyleColor()->mColor,
|
|
|
|
aDirtyRect);
|
2008-10-01 00:57:51 +00:00
|
|
|
}
|
2001-08-15 04:09:41 +00:00
|
|
|
}
|
2001-08-14 00:07:36 +00:00
|
|
|
|
2008-10-01 02:30:32 +00:00
|
|
|
DrawText(aRenderingContext, textRect, nsnull);
|
2008-10-01 00:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTextBoxFrame::DrawText(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aTextRect,
|
2008-10-01 02:30:32 +00:00
|
|
|
const nscolor* aOverrideColor)
|
2008-10-01 00:57:51 +00:00
|
|
|
{
|
|
|
|
nsPresContext* presContext = PresContext();
|
2000-10-08 05:56:55 +00:00
|
|
|
|
|
|
|
// paint the title
|
2001-05-31 22:19:43 +00:00
|
|
|
nscolor overColor;
|
|
|
|
nscolor underColor;
|
|
|
|
nscolor strikeColor;
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* context = mStyleContext;
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint8 decorations = NS_STYLE_TEXT_DECORATION_NONE; // Begin with no decorations
|
|
|
|
PRUint8 decorMask = NS_STYLE_TEXT_DECORATION_UNDERLINE | NS_STYLE_TEXT_DECORATION_OVERLINE |
|
|
|
|
NS_STYLE_TEXT_DECORATION_LINE_THROUGH; // A mask of all possible decorations.
|
|
|
|
PRBool hasDecorations = context->HasTextDecorations();
|
|
|
|
|
|
|
|
do { // find decoration colors
|
2003-05-15 03:42:21 +00:00
|
|
|
const nsStyleTextReset* styleText = context->GetStyleTextReset();
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
if (decorMask & styleText->mTextDecoration) { // a decoration defined here
|
2008-10-01 02:30:32 +00:00
|
|
|
nscolor color = aOverrideColor ? *aOverrideColor : context->GetStyleColor()->mColor;
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
if (NS_STYLE_TEXT_DECORATION_UNDERLINE & decorMask & styleText->mTextDecoration) {
|
2003-05-15 03:42:21 +00:00
|
|
|
underColor = color;
|
2001-05-31 22:19:43 +00:00
|
|
|
decorMask &= ~NS_STYLE_TEXT_DECORATION_UNDERLINE;
|
|
|
|
decorations |= NS_STYLE_TEXT_DECORATION_UNDERLINE;
|
|
|
|
}
|
|
|
|
if (NS_STYLE_TEXT_DECORATION_OVERLINE & decorMask & styleText->mTextDecoration) {
|
2003-05-15 03:42:21 +00:00
|
|
|
overColor = color;
|
2001-05-31 22:19:43 +00:00
|
|
|
decorMask &= ~NS_STYLE_TEXT_DECORATION_OVERLINE;
|
|
|
|
decorations |= NS_STYLE_TEXT_DECORATION_OVERLINE;
|
|
|
|
}
|
|
|
|
if (NS_STYLE_TEXT_DECORATION_LINE_THROUGH & decorMask & styleText->mTextDecoration) {
|
2003-05-15 03:42:21 +00:00
|
|
|
strikeColor = color;
|
2001-05-31 22:19:43 +00:00
|
|
|
decorMask &= ~NS_STYLE_TEXT_DECORATION_LINE_THROUGH;
|
|
|
|
decorations |= NS_STYLE_TEXT_DECORATION_LINE_THROUGH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (0 != decorMask) {
|
|
|
|
context = context->GetParent();
|
2002-10-09 01:46:15 +00:00
|
|
|
if (context) {
|
|
|
|
hasDecorations = context->HasTextDecorations();
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2002-10-09 01:46:15 +00:00
|
|
|
} while (context && hasDecorations && (0 != decorMask));
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2007-08-07 19:07:43 +00:00
|
|
|
nsCOMPtr<nsIFontMetrics> fontMet;
|
|
|
|
nsLayoutUtils::GetFontMetricsForFrame(this, getter_AddRefs(fontMet));
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
nscoord offset;
|
|
|
|
nscoord size;
|
2007-09-03 15:27:26 +00:00
|
|
|
nscoord ascent;
|
|
|
|
fontMet->GetMaxAscent(ascent);
|
2007-08-06 08:15:00 +00:00
|
|
|
|
2007-09-03 15:27:26 +00:00
|
|
|
nscoord baseline =
|
2008-10-01 00:57:51 +00:00
|
|
|
presContext->RoundAppUnitsToNearestDevPixels(aTextRect.y + ascent);
|
2007-12-18 23:01:15 +00:00
|
|
|
nsRefPtr<gfxContext> ctx = aRenderingContext.ThebesContext();
|
2008-10-01 00:57:51 +00:00
|
|
|
gfxPoint pt(presContext->AppUnitsToGfxUnits(aTextRect.x),
|
|
|
|
presContext->AppUnitsToGfxUnits(aTextRect.y));
|
|
|
|
gfxFloat width = presContext->AppUnitsToGfxUnits(aTextRect.width);
|
2007-09-03 15:27:26 +00:00
|
|
|
gfxFloat ascentPixel = presContext->AppUnitsToGfxUnits(ascent);
|
2008-10-01 05:46:18 +00:00
|
|
|
|
|
|
|
// Underlines are drawn before overlines, and both before the text
|
|
|
|
// itself, per http://www.w3.org/TR/CSS21/zindex.html point 7.2.1.4.1.1.
|
|
|
|
// (We don't apply this rule to the access-key underline because we only
|
|
|
|
// find out where that is as a side effect of drawing the text, in the
|
|
|
|
// general case -- see below.)
|
|
|
|
if (decorations & (NS_FONT_DECORATION_OVERLINE |
|
|
|
|
NS_FONT_DECORATION_UNDERLINE)) {
|
2001-05-31 22:19:43 +00:00
|
|
|
fontMet->GetUnderline(offset, size);
|
2007-08-22 11:13:46 +00:00
|
|
|
gfxFloat offsetPixel = presContext->AppUnitsToGfxUnits(offset);
|
|
|
|
gfxFloat sizePixel = presContext->AppUnitsToGfxUnits(size);
|
2001-05-31 22:19:43 +00:00
|
|
|
if (decorations & NS_FONT_DECORATION_UNDERLINE) {
|
2007-08-06 08:15:00 +00:00
|
|
|
nsCSSRendering::PaintDecorationLine(ctx, underColor,
|
2009-04-03 07:26:28 +00:00
|
|
|
pt, gfxSize(width, sizePixel),
|
|
|
|
ascentPixel, offsetPixel,
|
|
|
|
NS_STYLE_TEXT_DECORATION_UNDERLINE,
|
|
|
|
nsCSSRendering::DECORATION_STYLE_SOLID);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2008-10-01 05:46:18 +00:00
|
|
|
if (decorations & NS_FONT_DECORATION_OVERLINE) {
|
|
|
|
nsCSSRendering::PaintDecorationLine(ctx, overColor,
|
2009-04-03 07:26:28 +00:00
|
|
|
pt, gfxSize(width, sizePixel),
|
|
|
|
ascentPixel, ascentPixel,
|
|
|
|
NS_STYLE_TEXT_DECORATION_OVERLINE,
|
|
|
|
nsCSSRendering::DECORATION_STYLE_SOLID);
|
2008-10-01 05:46:18 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2007-08-07 19:07:43 +00:00
|
|
|
|
|
|
|
aRenderingContext.SetFont(fontMet);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
|
|
|
CalculateUnderline(aRenderingContext);
|
|
|
|
|
2008-10-01 02:30:32 +00:00
|
|
|
aRenderingContext.SetColor(aOverrideColor ? *aOverrideColor : GetStyleColor()->mColor);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (mState & NS_FRAME_IS_BIDI) {
|
2008-06-16 09:28:17 +00:00
|
|
|
presContext->SetBidiEnabled();
|
2006-01-26 02:29:17 +00:00
|
|
|
nsBidiPresUtils* bidiUtils = presContext->GetBidiUtils();
|
2001-05-15 11:58:40 +00:00
|
|
|
|
|
|
|
if (bidiUtils) {
|
2004-10-29 12:28:19 +00:00
|
|
|
const nsStyleVisibility* vis = GetStyleVisibility();
|
|
|
|
nsBidiDirection direction = (NS_STYLE_DIRECTION_RTL == vis->mDirection) ? NSBIDI_RTL : NSBIDI_LTR;
|
|
|
|
if (mAccessKeyInfo && mAccessKeyInfo->mAccesskeyIndex != kNotFound) {
|
|
|
|
// We let the RenderText function calculate the mnemonic's
|
|
|
|
// underline position for us.
|
|
|
|
nsBidiPositionResolve posResolve;
|
|
|
|
posResolve.logicalIndex = mAccessKeyInfo->mAccesskeyIndex;
|
|
|
|
rv = bidiUtils->RenderText(mCroppedTitle.get(), mCroppedTitle.Length(), direction,
|
2006-01-26 02:29:17 +00:00
|
|
|
presContext, aRenderingContext,
|
2008-10-01 00:57:51 +00:00
|
|
|
aTextRect.x, baseline,
|
2004-10-29 12:28:19 +00:00
|
|
|
&posResolve,
|
|
|
|
1);
|
|
|
|
mAccessKeyInfo->mBeforeWidth = posResolve.visualLeftTwips;
|
2009-03-21 08:38:14 +00:00
|
|
|
mAccessKeyInfo->mAccessWidth = posResolve.visualWidth;
|
2004-10-29 12:28:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rv = bidiUtils->RenderText(mCroppedTitle.get(), mCroppedTitle.Length(), direction,
|
2006-01-26 02:29:17 +00:00
|
|
|
presContext, aRenderingContext,
|
2008-10-01 00:57:51 +00:00
|
|
|
aTextRect.x, baseline);
|
2001-11-12 20:51:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-05-15 11:58:40 +00:00
|
|
|
if (NS_FAILED(rv) )
|
|
|
|
#endif // IBMBIDI
|
2004-10-29 12:28:19 +00:00
|
|
|
{
|
2007-01-23 02:58:55 +00:00
|
|
|
aRenderingContext.SetTextRunRTL(PR_FALSE);
|
|
|
|
|
2004-10-29 12:28:19 +00:00
|
|
|
if (mAccessKeyInfo && mAccessKeyInfo->mAccesskeyIndex != kNotFound) {
|
|
|
|
// In the simple (non-BiDi) case, we calculate the mnemonic's
|
|
|
|
// underline position by getting the text metric.
|
|
|
|
// XXX are attribute values always two byte?
|
|
|
|
if (mAccessKeyInfo->mAccesskeyIndex > 0)
|
2006-06-26 22:18:23 +00:00
|
|
|
aRenderingContext.GetWidth(mCroppedTitle.get(), mAccessKeyInfo->mAccesskeyIndex,
|
|
|
|
mAccessKeyInfo->mBeforeWidth);
|
2004-10-29 12:28:19 +00:00
|
|
|
else
|
|
|
|
mAccessKeyInfo->mBeforeWidth = 0;
|
|
|
|
}
|
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
aRenderingContext.DrawString(mCroppedTitle, aTextRect.x, baseline);
|
2004-10-29 12:28:19 +00:00
|
|
|
}
|
2000-10-08 05:56:55 +00:00
|
|
|
|
|
|
|
if (mAccessKeyInfo && mAccessKeyInfo->mAccesskeyIndex != kNotFound) {
|
2008-10-01 00:57:51 +00:00
|
|
|
aRenderingContext.FillRect(aTextRect.x + mAccessKeyInfo->mBeforeWidth,
|
|
|
|
aTextRect.y + mAccessKeyInfo->mAccessOffset,
|
2000-10-08 05:56:55 +00:00
|
|
|
mAccessKeyInfo->mAccessWidth,
|
|
|
|
mAccessKeyInfo->mAccessUnderlineSize);
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
2008-10-01 05:46:18 +00:00
|
|
|
|
|
|
|
// Strikeout is drawn on top of the text, per
|
|
|
|
// http://www.w3.org/TR/CSS21/zindex.html point 7.2.1.4.1.1.
|
|
|
|
if (decorations & NS_FONT_DECORATION_LINE_THROUGH) {
|
|
|
|
fontMet->GetStrikeout(offset, size);
|
|
|
|
gfxFloat offsetPixel = presContext->AppUnitsToGfxUnits(offset);
|
|
|
|
gfxFloat sizePixel = presContext->AppUnitsToGfxUnits(size);
|
|
|
|
nsCSSRendering::PaintDecorationLine(ctx, strikeColor,
|
2009-04-03 07:26:28 +00:00
|
|
|
pt, gfxSize(width, sizePixel), ascentPixel, offsetPixel,
|
|
|
|
NS_STYLE_TEXT_DECORATION_LINE_THROUGH,
|
|
|
|
nsCSSRendering::DECORATION_STYLE_SOLID);
|
2008-10-01 05:46:18 +00:00
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
void nsTextBoxFrame::PaintOneShadow(gfxContext* aCtx,
|
|
|
|
const nsRect& aTextRect,
|
|
|
|
nsCSSShadowItem* aShadowDetails,
|
2008-12-02 21:16:22 +00:00
|
|
|
const nscolor& aForegroundColor,
|
|
|
|
const nsRect& aDirtyRect) {
|
2008-10-01 00:57:51 +00:00
|
|
|
nsPoint shadowOffset(aShadowDetails->mXOffset,
|
|
|
|
aShadowDetails->mYOffset);
|
2009-09-16 15:01:36 +00:00
|
|
|
nscoord blurRadius = NS_MAX(aShadowDetails->mRadius, 0);
|
2008-10-01 00:57:51 +00:00
|
|
|
|
|
|
|
nsRect shadowRect(aTextRect);
|
|
|
|
shadowRect.MoveBy(shadowOffset);
|
|
|
|
|
|
|
|
nsContextBoxBlur contextBoxBlur;
|
2009-09-18 18:18:35 +00:00
|
|
|
gfxContext* shadowContext = contextBoxBlur.Init(shadowRect, blurRadius,
|
2008-10-01 00:57:51 +00:00
|
|
|
PresContext()->AppUnitsPerDevPixel(),
|
2009-09-18 18:18:35 +00:00
|
|
|
aCtx, aDirtyRect);
|
2009-09-04 13:32:17 +00:00
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
if (!shadowContext)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nscolor shadowColor;
|
|
|
|
if (aShadowDetails->mHasColor)
|
|
|
|
shadowColor = aShadowDetails->mColor;
|
|
|
|
else
|
|
|
|
shadowColor = aForegroundColor;
|
|
|
|
|
|
|
|
// Conjure an nsIRenderingContext from a gfxContext for DrawText
|
|
|
|
nsCOMPtr<nsIRenderingContext> renderingContext = nsnull;
|
|
|
|
nsIDeviceContext* devCtx = PresContext()->DeviceContext();
|
|
|
|
devCtx->CreateRenderingContextInstance(*getter_AddRefs(renderingContext));
|
2009-09-18 18:18:35 +00:00
|
|
|
if (!renderingContext)
|
|
|
|
return;
|
2008-10-01 00:57:51 +00:00
|
|
|
renderingContext->Init(devCtx, shadowContext);
|
|
|
|
|
|
|
|
aCtx->Save();
|
|
|
|
aCtx->NewPath();
|
|
|
|
aCtx->SetColor(gfxRGBA(shadowColor));
|
|
|
|
|
|
|
|
// Draw the text onto our alpha-only surface to capture the alpha values.
|
|
|
|
// Remember that the box blur context has a device offset on it, so we don't need to
|
|
|
|
// translate any coordinates to fit on the surface.
|
2008-10-01 02:30:32 +00:00
|
|
|
DrawText(*renderingContext, shadowRect, &shadowColor);
|
2008-10-01 00:57:51 +00:00
|
|
|
contextBoxBlur.DoPaint();
|
|
|
|
aCtx->Restore();
|
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
void
|
2004-07-31 23:15:21 +00:00
|
|
|
nsTextBoxFrame::LayoutTitle(nsPresContext* aPresContext,
|
2000-10-08 05:56:55 +00:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aRect)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
// and do caculations if our size changed
|
|
|
|
if ((mState & NS_STATE_NEED_LAYOUT)) {
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// determine (cropped) title which fits in aRect.width and its width
|
|
|
|
CalculateTitleForWidth(aPresContext, aRenderingContext, aRect.width);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// determine if and at which position to put the underline
|
|
|
|
UpdateAccessIndex();
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// ok layout complete
|
|
|
|
mState &= ~NS_STATE_NEED_LAYOUT;
|
|
|
|
}
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
void
|
|
|
|
nsTextBoxFrame::CalculateUnderline(nsIRenderingContext& aRenderingContext)
|
|
|
|
{
|
|
|
|
if (mAccessKeyInfo && mAccessKeyInfo->mAccesskeyIndex != kNotFound) {
|
2004-10-29 12:28:19 +00:00
|
|
|
// Calculate all fields of mAccessKeyInfo which
|
2007-01-23 02:58:55 +00:00
|
|
|
// are the same for both BiDi and non-BiDi frames.
|
2004-10-29 12:28:19 +00:00
|
|
|
const PRUnichar *titleString = mCroppedTitle.get();
|
2007-01-23 02:58:55 +00:00
|
|
|
aRenderingContext.SetTextRunRTL(PR_FALSE);
|
2000-02-16 23:00:52 +00:00
|
|
|
aRenderingContext.GetWidth(titleString[mAccessKeyInfo->mAccesskeyIndex],
|
|
|
|
mAccessKeyInfo->mAccessWidth);
|
|
|
|
|
|
|
|
nscoord offset, baseline;
|
|
|
|
nsIFontMetrics *metrics;
|
|
|
|
aRenderingContext.GetFontMetrics(metrics);
|
|
|
|
metrics->GetUnderline(offset, mAccessKeyInfo->mAccessUnderlineSize);
|
|
|
|
metrics->GetMaxAscent(baseline);
|
|
|
|
NS_RELEASE(metrics);
|
|
|
|
mAccessKeyInfo->mAccessOffset = baseline - offset;
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
void
|
2004-07-31 23:15:21 +00:00
|
|
|
nsTextBoxFrame::CalculateTitleForWidth(nsPresContext* aPresContext,
|
2000-10-08 05:56:55 +00:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
nscoord aWidth)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2003-05-23 21:34:47 +00:00
|
|
|
if (mTitle.IsEmpty())
|
2000-10-08 05:56:55 +00:00
|
|
|
return;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2007-08-07 19:07:43 +00:00
|
|
|
nsLayoutUtils::SetFontFromStyle(&aRenderingContext, GetStyleContext());
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// see if the text will completely fit in the width given
|
2007-01-23 02:58:55 +00:00
|
|
|
mTitleWidth = nsLayoutUtils::GetStringWidth(this, &aRenderingContext,
|
|
|
|
mTitle.get(), mTitle.Length());
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
if (mTitleWidth <= aWidth) {
|
|
|
|
mCroppedTitle = mTitle;
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
2008-03-12 07:56:38 +00:00
|
|
|
if (HasRTLChars(mTitle)) {
|
2001-05-15 11:58:40 +00:00
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2000-10-08 05:56:55 +00:00
|
|
|
return; // fits, done.
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2008-01-26 23:00:19 +00:00
|
|
|
const nsDependentString& kEllipsis = nsContentUtils::GetLocalizedEllipsis();
|
2000-10-08 05:56:55 +00:00
|
|
|
// start with an ellipsis
|
2007-11-19 10:17:17 +00:00
|
|
|
mCroppedTitle.Assign(kEllipsis);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// see if the width is even smaller than the ellipsis
|
|
|
|
// if so, clear the text (XXX set as many '.' as we can?).
|
2007-01-23 02:58:55 +00:00
|
|
|
aRenderingContext.SetTextRunRTL(PR_FALSE);
|
2009-01-06 21:35:18 +00:00
|
|
|
aRenderingContext.GetWidth(kEllipsis, mTitleWidth);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2009-01-06 21:35:18 +00:00
|
|
|
if (mTitleWidth > aWidth) {
|
2000-10-08 05:56:55 +00:00
|
|
|
mCroppedTitle.SetLength(0);
|
2009-01-06 21:35:18 +00:00
|
|
|
mTitleWidth = 0;
|
2000-10-08 05:56:55 +00:00
|
|
|
return;
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// if the ellipsis fits perfectly, no use in trying to insert
|
2009-01-06 21:35:18 +00:00
|
|
|
if (mTitleWidth == aWidth)
|
2000-10-08 05:56:55 +00:00
|
|
|
return;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2009-01-06 21:35:18 +00:00
|
|
|
aWidth -= mTitleWidth;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2004-05-18 11:01:49 +00:00
|
|
|
// XXX: This whole block should probably take surrogates into account
|
2007-01-23 02:58:55 +00:00
|
|
|
// XXX and clusters!
|
2000-10-08 05:56:55 +00:00
|
|
|
// ok crop things
|
2000-02-16 23:00:52 +00:00
|
|
|
switch (mCropType)
|
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
case CropNone:
|
|
|
|
case CropRight:
|
|
|
|
{
|
|
|
|
nscoord cwidth;
|
|
|
|
nscoord twidth = 0;
|
|
|
|
int length = mTitle.Length();
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < length; ++i) {
|
|
|
|
PRUnichar ch = mTitle.CharAt(i);
|
2007-01-23 02:58:55 +00:00
|
|
|
// still in LTR mode
|
2000-10-08 05:56:55 +00:00
|
|
|
aRenderingContext.GetWidth(ch,cwidth);
|
|
|
|
if (twidth + cwidth > aWidth)
|
|
|
|
break;
|
|
|
|
|
|
|
|
twidth += cwidth;
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
2004-07-04 10:51:33 +00:00
|
|
|
if (UCS2_CHAR_IS_BIDI(ch) ) {
|
2001-05-15 11:58:40 +00:00
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// insert what character we can in.
|
|
|
|
nsAutoString title( mTitle );
|
|
|
|
title.Truncate(i);
|
|
|
|
mCroppedTitle.Insert(title, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CropLeft:
|
|
|
|
{
|
|
|
|
nscoord cwidth;
|
|
|
|
nscoord twidth = 0;
|
|
|
|
int length = mTitle.Length();
|
|
|
|
int i;
|
|
|
|
for (i=length-1; i >= 0; --i) {
|
|
|
|
PRUnichar ch = mTitle.CharAt(i);
|
|
|
|
aRenderingContext.GetWidth(ch,cwidth);
|
|
|
|
if (twidth + cwidth > aWidth)
|
|
|
|
break;
|
|
|
|
|
|
|
|
twidth += cwidth;
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
2004-07-04 10:51:33 +00:00
|
|
|
if (UCS2_CHAR_IS_BIDI(ch) ) {
|
2001-05-15 11:58:40 +00:00
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i == length-1)
|
2009-01-06 21:35:18 +00:00
|
|
|
return;
|
2000-10-08 05:56:55 +00:00
|
|
|
|
|
|
|
nsAutoString copy;
|
|
|
|
mTitle.Right(copy, length-1-i);
|
|
|
|
mCroppedTitle += copy;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CropCenter:
|
|
|
|
{
|
2007-01-23 02:58:55 +00:00
|
|
|
nscoord stringWidth =
|
|
|
|
nsLayoutUtils::GetStringWidth(this, &aRenderingContext,
|
|
|
|
mTitle.get(), mTitle.Length());
|
2001-07-15 00:10:10 +00:00
|
|
|
if (stringWidth <= aWidth) {
|
|
|
|
// the entire string will fit in the maximum width
|
|
|
|
mCroppedTitle.Insert(mTitle, 0);
|
|
|
|
break;
|
|
|
|
}
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2001-07-15 00:10:10 +00:00
|
|
|
// determine how much of the string will fit in the max width
|
|
|
|
nscoord charWidth = 0;
|
|
|
|
nscoord totalWidth = 0;
|
|
|
|
PRUnichar ch;
|
|
|
|
int leftPos, rightPos;
|
|
|
|
nsAutoString leftString, rightString;
|
|
|
|
|
|
|
|
rightPos = mTitle.Length() - 1;
|
2007-01-23 02:58:55 +00:00
|
|
|
aRenderingContext.SetTextRunRTL(PR_FALSE);
|
2001-07-15 00:10:10 +00:00
|
|
|
for (leftPos = 0; leftPos <= rightPos;) {
|
|
|
|
// look at the next character on the left end
|
|
|
|
ch = mTitle.CharAt(leftPos);
|
|
|
|
aRenderingContext.GetWidth(ch, charWidth);
|
|
|
|
totalWidth += charWidth;
|
|
|
|
if (totalWidth > aWidth)
|
|
|
|
// greater than the allowable width
|
2000-10-08 05:56:55 +00:00
|
|
|
break;
|
2001-07-15 00:10:10 +00:00
|
|
|
leftString.Insert(ch, leftString.Length());
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
2004-07-04 10:51:33 +00:00
|
|
|
if (UCS2_CHAR_IS_BIDI(ch))
|
2001-07-15 00:10:10 +00:00
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// look at the next character on the right end
|
|
|
|
if (rightPos > leftPos) {
|
|
|
|
// haven't looked at this character yet
|
|
|
|
ch = mTitle.CharAt(rightPos);
|
|
|
|
aRenderingContext.GetWidth(ch, charWidth);
|
|
|
|
totalWidth += charWidth;
|
|
|
|
if (totalWidth > aWidth)
|
|
|
|
// greater than the allowable width
|
|
|
|
break;
|
|
|
|
rightString.Insert(ch, 0);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
2004-07-04 10:51:33 +00:00
|
|
|
if (UCS2_CHAR_IS_BIDI(ch))
|
2001-07-15 00:10:10 +00:00
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
#endif
|
2001-05-15 11:58:40 +00:00
|
|
|
}
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2001-07-15 00:10:10 +00:00
|
|
|
// look at the next two characters
|
|
|
|
leftPos++;
|
|
|
|
rightPos--;
|
|
|
|
}
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2007-11-19 10:17:17 +00:00
|
|
|
mCroppedTitle = leftString + kEllipsis + rightString;
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2007-01-23 02:58:55 +00:00
|
|
|
mTitleWidth = nsLayoutUtils::GetStringWidth(this, &aRenderingContext,
|
|
|
|
mCroppedTitle.get(), mCroppedTitle.Length());
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2007-11-19 10:17:17 +00:00
|
|
|
#define OLD_ELLIPSIS NS_LITERAL_STRING("...")
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// the following block is to append the accesskey to mTitle if there is an accesskey
|
|
|
|
// but the mTitle doesn't have the character
|
2000-02-16 23:00:52 +00:00
|
|
|
void
|
2000-10-08 05:56:55 +00:00
|
|
|
nsTextBoxFrame::UpdateAccessTitle()
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2006-02-10 13:23:50 +00:00
|
|
|
/*
|
|
|
|
* Note that if you change appending access key label spec,
|
|
|
|
* you need to maintain same logic in following methods. See bug 324159.
|
|
|
|
* toolkit/content/commonDialog.js (setLabelForNode)
|
|
|
|
* toolkit/content/widgets/text.xml (formatAccessKey)
|
|
|
|
*/
|
2000-10-08 05:56:55 +00:00
|
|
|
PRInt32 menuAccessKey;
|
|
|
|
nsMenuBarListener::GetMenuAccessKey(&menuAccessKey);
|
2006-01-21 05:04:28 +00:00
|
|
|
if (!menuAccessKey || mAccessKey.IsEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!AlwaysAppendAccessKey() &&
|
|
|
|
FindInReadable(mAccessKey, mTitle, nsCaseInsensitiveStringComparator()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsAutoString accessKeyLabel;
|
|
|
|
accessKeyLabel += '(';
|
|
|
|
accessKeyLabel += mAccessKey;
|
|
|
|
ToUpperCase(accessKeyLabel);
|
|
|
|
accessKeyLabel += ')';
|
|
|
|
|
|
|
|
if (mTitle.IsEmpty()) {
|
|
|
|
mTitle = accessKeyLabel;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-26 23:00:19 +00:00
|
|
|
const nsDependentString& kEllipsis = nsContentUtils::GetLocalizedEllipsis();
|
2007-12-13 05:51:40 +00:00
|
|
|
PRUint32 offset = mTitle.Length();
|
|
|
|
if (StringEndsWith(mTitle, kEllipsis)) {
|
|
|
|
offset -= kEllipsis.Length();
|
|
|
|
} else if (StringEndsWith(mTitle, OLD_ELLIPSIS)) {
|
2007-11-19 10:17:17 +00:00
|
|
|
// Try to check with our old ellipsis (for old addons)
|
2007-12-13 05:51:40 +00:00
|
|
|
offset -= OLD_ELLIPSIS.Length();
|
|
|
|
} else {
|
|
|
|
// Try to check with
|
|
|
|
// our default ellipsis (for non-localized addons) or ':'
|
|
|
|
const PRUnichar kLastChar = mTitle.Last();
|
|
|
|
if (kLastChar == PRUnichar(0x2026) || kLastChar == PRUnichar(':'))
|
2006-01-21 05:04:28 +00:00
|
|
|
offset--;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
2006-01-21 05:04:28 +00:00
|
|
|
|
2007-12-13 05:51:40 +00:00
|
|
|
if (InsertSeparatorBeforeAccessKey() &&
|
2006-01-21 05:04:28 +00:00
|
|
|
!NS_IS_SPACE(mTitle[offset - 1])) {
|
2007-12-13 05:51:40 +00:00
|
|
|
mTitle.Insert(' ', offset);
|
2006-01-21 05:04:28 +00:00
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
|
2007-12-13 05:51:40 +00:00
|
|
|
mTitle.Insert(accessKeyLabel, offset);
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
void
|
|
|
|
nsTextBoxFrame::UpdateAccessIndex()
|
|
|
|
{
|
|
|
|
PRInt32 menuAccessKey;
|
|
|
|
nsMenuBarListener::GetMenuAccessKey(&menuAccessKey);
|
|
|
|
if (menuAccessKey) {
|
|
|
|
if (mAccessKey.IsEmpty()) {
|
|
|
|
if (mAccessKeyInfo) {
|
|
|
|
delete mAccessKeyInfo;
|
|
|
|
mAccessKeyInfo = nsnull;
|
|
|
|
}
|
|
|
|
} else {
|
2003-12-21 04:04:05 +00:00
|
|
|
if (!mAccessKeyInfo) {
|
2000-10-08 05:56:55 +00:00
|
|
|
mAccessKeyInfo = new nsAccessKeyInfo();
|
2003-12-21 04:04:05 +00:00
|
|
|
if (!mAccessKeyInfo)
|
|
|
|
return;
|
|
|
|
}
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2002-03-19 06:46:56 +00:00
|
|
|
nsAString::const_iterator start, end;
|
|
|
|
|
|
|
|
mCroppedTitle.BeginReading(start);
|
|
|
|
mCroppedTitle.EndReading(end);
|
|
|
|
|
|
|
|
// remember the beginning of the string
|
|
|
|
nsAString::const_iterator originalStart = start;
|
|
|
|
|
|
|
|
PRBool found;
|
2001-10-19 20:56:29 +00:00
|
|
|
if (!AlwaysAppendAccessKey()) {
|
2002-03-19 06:46:56 +00:00
|
|
|
// not appending access key - do case-sensitive search
|
|
|
|
// first
|
|
|
|
found = FindInReadable(mAccessKey, start, end);
|
|
|
|
if (!found) {
|
2001-06-08 03:25:44 +00:00
|
|
|
// didn't find it - perform a case-insensitive search
|
2002-03-19 06:46:56 +00:00
|
|
|
start = originalStart;
|
|
|
|
found = FindInReadable(mAccessKey, start, end,
|
|
|
|
nsCaseInsensitiveStringComparator());
|
2001-06-08 03:25:44 +00:00
|
|
|
}
|
2001-04-17 01:58:00 +00:00
|
|
|
} else {
|
2002-03-19 06:46:56 +00:00
|
|
|
found = RFindInReadable(mAccessKey, start, end,
|
|
|
|
nsCaseInsensitiveStringComparator());
|
2001-04-17 01:58:00 +00:00
|
|
|
}
|
2002-03-19 06:46:56 +00:00
|
|
|
|
|
|
|
if (found)
|
|
|
|
mAccessKeyInfo->mAccesskeyIndex = Distance(originalStart, start);
|
|
|
|
else
|
|
|
|
mAccessKeyInfo->mAccesskeyIndex = kNotFound;
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-07-07 22:24:06 +00:00
|
|
|
nsTextBoxFrame::DoLayout(nsBoxLayoutState& aBoxLayoutState)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2007-09-04 08:46:50 +00:00
|
|
|
if (mNeedsReflowCallback) {
|
|
|
|
nsIReflowCallback* cb = new nsAsyncAccesskeyUpdate(this);
|
|
|
|
if (cb) {
|
|
|
|
PresContext()->PresShell()->PostReflowCallback(cb);
|
|
|
|
}
|
|
|
|
mNeedsReflowCallback = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
mState |= NS_STATE_NEED_LAYOUT;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
nsresult rv = nsLeafBoxFrame::DoLayout(aBoxLayoutState);
|
|
|
|
|
|
|
|
const nsStyleText* textStyle = GetStyleText();
|
|
|
|
if (textStyle->mTextShadow) {
|
|
|
|
nsPoint origin(0,0);
|
|
|
|
nsRect textRect = CalcTextRect(*aBoxLayoutState.GetRenderingContext(), origin);
|
|
|
|
nsRect overflowRect(nsLayoutUtils::GetTextShadowRectsUnion(textRect, this));
|
2008-10-08 12:20:14 +00:00
|
|
|
overflowRect.UnionRect(overflowRect, nsRect(nsPoint(0, 0), GetSize()));
|
2008-10-01 00:57:51 +00:00
|
|
|
FinishAndStoreOverflow(&overflowRect, GetSize());
|
|
|
|
}
|
|
|
|
return rv;
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
2008-11-25 22:59:06 +00:00
|
|
|
PRBool
|
|
|
|
nsTextBoxFrame::ComputesOwnOverflowArea()
|
|
|
|
{
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
/* virtual */ void
|
|
|
|
nsTextBoxFrame::MarkIntrinsicWidthsDirty()
|
2000-03-31 07:02:06 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
mNeedsRecalc = PR_TRUE;
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
nsTextBoxFrameSuper::MarkIntrinsicWidthsDirty();
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-07-31 23:15:21 +00:00
|
|
|
nsTextBoxFrame::GetTextSize(nsPresContext* aPresContext, nsIRenderingContext& aRenderingContext,
|
2000-10-08 05:56:55 +00:00
|
|
|
const nsString& aString, nsSize& aSize, nscoord& aAscent)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFontMetrics> fontMet;
|
2007-08-07 19:07:43 +00:00
|
|
|
nsLayoutUtils::GetFontMetricsForFrame(this, getter_AddRefs(fontMet));
|
2000-10-08 05:56:55 +00:00
|
|
|
fontMet->GetHeight(aSize.height);
|
|
|
|
aRenderingContext.SetFont(fontMet);
|
2007-01-23 02:58:55 +00:00
|
|
|
aSize.width =
|
|
|
|
nsLayoutUtils::GetStringWidth(this, &aRenderingContext, aString.get(), aString.Length());
|
2000-10-08 05:56:55 +00:00
|
|
|
fontMet->GetMaxAscent(aAscent);
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTextBoxFrame::CalcTextSize(nsBoxLayoutState& aBoxLayoutState)
|
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
if (mNeedsRecalc)
|
|
|
|
{
|
|
|
|
nsSize size;
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPresContext* presContext = aBoxLayoutState.PresContext();
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
nsIRenderingContext* rendContext = aBoxLayoutState.GetRenderingContext();
|
2000-10-08 05:56:55 +00:00
|
|
|
if (rendContext) {
|
|
|
|
GetTextSize(presContext, *rendContext,
|
|
|
|
mTitle, size, mAscent);
|
|
|
|
mTextSize = size;
|
|
|
|
mNeedsRecalc = PR_FALSE;
|
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2008-10-01 00:57:51 +00:00
|
|
|
nsRect
|
|
|
|
nsTextBoxFrame::CalcTextRect(nsIRenderingContext &aRenderingContext, const nsPoint &aTextOrigin)
|
|
|
|
{
|
|
|
|
nsRect textRect(aTextOrigin, GetSize());
|
2008-10-21 07:43:58 +00:00
|
|
|
nsMargin borderPadding;
|
|
|
|
GetBorderAndPadding(borderPadding);
|
|
|
|
textRect.Deflate(borderPadding);
|
2008-10-01 00:57:51 +00:00
|
|
|
// determine (cropped) title and underline position
|
|
|
|
nsPresContext* presContext = PresContext();
|
|
|
|
LayoutTitle(presContext, aRenderingContext, textRect);
|
|
|
|
|
|
|
|
// make the rect as small as our (cropped) text.
|
|
|
|
nscoord outerWidth = textRect.width;
|
|
|
|
textRect.width = mTitleWidth;
|
|
|
|
|
|
|
|
// Align our text within the overall rect by checking our text-align property.
|
|
|
|
const nsStyleVisibility* vis = GetStyleVisibility();
|
|
|
|
const nsStyleText* textStyle = GetStyleText();
|
|
|
|
|
|
|
|
if (textStyle->mTextAlign == NS_STYLE_TEXT_ALIGN_CENTER)
|
|
|
|
textRect.x += (outerWidth - textRect.width)/2;
|
2009-02-06 03:48:30 +00:00
|
|
|
else if (textStyle->mTextAlign == NS_STYLE_TEXT_ALIGN_RIGHT ||
|
|
|
|
(textStyle->mTextAlign == NS_STYLE_TEXT_ALIGN_DEFAULT &&
|
|
|
|
vis->mDirection == NS_STYLE_DIRECTION_RTL) ||
|
|
|
|
(textStyle->mTextAlign == NS_STYLE_TEXT_ALIGN_END &&
|
|
|
|
vis->mDirection == NS_STYLE_DIRECTION_LTR)) {
|
|
|
|
textRect.x += (outerWidth - textRect.width);
|
2008-10-01 00:57:51 +00:00
|
|
|
}
|
|
|
|
return textRect;
|
|
|
|
}
|
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
/**
|
|
|
|
* Ok return our dimensions
|
|
|
|
*/
|
2007-01-08 02:57:59 +00:00
|
|
|
nsSize
|
|
|
|
nsTextBoxFrame::GetPrefSize(nsBoxLayoutState& aBoxLayoutState)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
CalcTextSize(aBoxLayoutState);
|
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
nsSize size = mTextSize;
|
|
|
|
DISPLAY_PREF_SIZE(this, size);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
AddBorderAndPadding(size);
|
|
|
|
nsIBox::AddCSSPrefSize(aBoxLayoutState, this, size);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
return size;
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ok return our dimensions
|
|
|
|
*/
|
2007-01-08 02:57:59 +00:00
|
|
|
nsSize
|
|
|
|
nsTextBoxFrame::GetMinSize(nsBoxLayoutState& aBoxLayoutState)
|
2000-03-31 07:02:06 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
CalcTextSize(aBoxLayoutState);
|
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
nsSize size = mTextSize;
|
|
|
|
DISPLAY_MIN_SIZE(this, size);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
// if there is cropping our min width becomes our border and padding
|
|
|
|
if (mCropType != CropNone)
|
|
|
|
size.width = 0;
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
AddBorderAndPadding(size);
|
|
|
|
nsIBox::AddCSSMinSize(aBoxLayoutState, this, size);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
return size;
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
2007-02-22 18:05:14 +00:00
|
|
|
nscoord
|
|
|
|
nsTextBoxFrame::GetBoxAscent(nsBoxLayoutState& aBoxLayoutState)
|
2000-03-31 07:02:06 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
CalcTextSize(aBoxLayoutState);
|
|
|
|
|
2007-02-22 18:05:14 +00:00
|
|
|
nscoord ascent = mAscent;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
nsMargin m(0,0,0,0);
|
|
|
|
GetBorderAndPadding(m);
|
2007-02-22 18:05:14 +00:00
|
|
|
ascent += m.top;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2007-02-22 18:05:14 +00:00
|
|
|
return ascent;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2001-09-15 00:45:54 +00:00
|
|
|
#ifdef DEBUG
|
2000-02-16 23:00:52 +00:00
|
|
|
NS_IMETHODIMP
|
2001-11-14 01:33:42 +00:00
|
|
|
nsTextBoxFrame::GetFrameName(nsAString& aResult) const
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2005-12-15 22:26:18 +00:00
|
|
|
MakeFrameName(NS_LITERAL_STRING("TextBox"), aResult);
|
2001-11-14 01:33:42 +00:00
|
|
|
aResult += NS_LITERAL_STRING("[value=") + mTitle + NS_LITERAL_STRING("]");
|
2000-10-08 05:56:55 +00:00
|
|
|
return NS_OK;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
2001-09-15 00:45:54 +00:00
|
|
|
#endif
|
2002-02-21 13:39:39 +00:00
|
|
|
|
|
|
|
// If you make changes to this function, check its counterparts
|
2008-12-29 15:07:38 +00:00
|
|
|
// in nsBoxFrame and nsXULLabelFrame
|
2002-02-21 13:39:39 +00:00
|
|
|
nsresult
|
2006-04-10 00:16:29 +00:00
|
|
|
nsTextBoxFrame::RegUnregAccessKey(PRBool aDoReg)
|
2002-02-21 13:39:39 +00:00
|
|
|
{
|
|
|
|
// if we have no content, we can't do anything
|
|
|
|
if (!mContent)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// check if we have a |control| attribute
|
|
|
|
// do this check first because few elements have control attributes, and we
|
|
|
|
// can weed out most of the elements quickly.
|
|
|
|
|
|
|
|
// XXXjag a side-effect is that we filter out anonymous <label>s
|
|
|
|
// in e.g. <menu>, <menuitem>, <button>. These <label>s inherit
|
|
|
|
// |accesskey| and would otherwise register themselves, overwriting
|
|
|
|
// the content we really meant to be registered.
|
2006-12-26 17:47:52 +00:00
|
|
|
if (!mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::control))
|
2002-02-21 13:39:39 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
// see if we even have an access key
|
|
|
|
nsAutoString accessKey;
|
2006-12-26 17:47:52 +00:00
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::accesskey, accessKey);
|
2002-02-21 13:39:39 +00:00
|
|
|
|
|
|
|
if (accessKey.IsEmpty())
|
|
|
|
return NS_OK;
|
|
|
|
|
2004-02-27 17:17:37 +00:00
|
|
|
nsresult rv;
|
2002-02-21 13:39:39 +00:00
|
|
|
|
|
|
|
// With a valid PresContext we can get the ESM
|
|
|
|
// and (un)register the access key
|
2007-03-30 21:11:41 +00:00
|
|
|
nsIEventStateManager *esm = PresContext()->EventStateManager();
|
2002-02-21 13:39:39 +00:00
|
|
|
|
2004-02-27 17:17:37 +00:00
|
|
|
PRUint32 key = accessKey.First();
|
|
|
|
if (aDoReg)
|
|
|
|
rv = esm->RegisterAccessKey(mContent, key);
|
|
|
|
else
|
|
|
|
rv = esm->UnregisterAccessKey(mContent, key);
|
2002-02-21 13:39:39 +00:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|