2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
2000-02-16 23:00:52 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
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.
|
|
|
|
*
|
2001-09-28 20:14:13 +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.
|
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>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Eric Vaughan
|
|
|
|
// Netscape Communications
|
|
|
|
//
|
|
|
|
// See documentation in associated header file
|
|
|
|
//
|
|
|
|
|
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"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsXULAtoms.h"
|
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
#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 "nsIPref.h"
|
|
|
|
#include "nsXPIDLString.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsIServiceManager.h"
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
#include "nsIUBidiUtils.h"
|
|
|
|
#include "nsBidiPresUtils.h"
|
2001-11-12 20:51:48 +00:00
|
|
|
#include "nsReadableUtils.h"
|
2001-05-15 11:58:40 +00:00
|
|
|
#endif // IBMBIDI
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
#define ELLIPSIS "..."
|
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
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-04-17 01:58:00 +00:00
|
|
|
PRBool nsTextBoxFrame::gAlwaysAppendAccessKey = PR_FALSE;
|
|
|
|
PRBool nsTextBoxFrame::gAccessKeyPrefInitialized = PR_FALSE;
|
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
//
|
|
|
|
// NS_NewToolbarFrame
|
|
|
|
//
|
|
|
|
// Creates a new Toolbar frame and returns it in |aNewFrame|
|
|
|
|
//
|
|
|
|
nsresult
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_NewTextBoxFrame ( nsIPresShell* aPresShell, nsIFrame** aNewFrame )
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
NS_PRECONDITION(aNewFrame, "null OUT ptr");
|
|
|
|
if (nsnull == aNewFrame) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
nsTextBoxFrame* it = new (aPresShell) nsTextBoxFrame (aPresShell);
|
|
|
|
if (nsnull == it)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// it->SetFlags(aFlags);
|
|
|
|
*aNewFrame = it;
|
|
|
|
return NS_OK;
|
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
} // NS_NewTextFrame
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsTextBoxFrame::AttributeChanged(nsIPresContext* aPresContext,
|
2000-10-08 05:56:55 +00:00
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
2001-08-25 02:01:08 +00:00
|
|
|
PRInt32 aModType,
|
2000-10-08 05:56:55 +00:00
|
|
|
PRInt32 aHint)
|
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;
|
|
|
|
|
|
|
|
UpdateAttributes(aPresContext, aAttribute, aResize, aRedraw);
|
|
|
|
|
|
|
|
if (aResize) {
|
|
|
|
nsBoxLayoutState state(aPresContext);
|
|
|
|
MarkDirty(state);
|
|
|
|
} else if (aRedraw) {
|
|
|
|
nsBoxLayoutState state(aPresContext);
|
|
|
|
Redraw(state);
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
return NS_OK;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-04-16 11:19:26 +00:00
|
|
|
nsTextBoxFrame::nsTextBoxFrame(nsIPresShell* aShell):nsLeafBoxFrame(aShell), mCropType(CropRight),mAccessKeyInfo(nsnull)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
mState |= NS_STATE_NEED_LAYOUT;
|
|
|
|
NeedsRecalc();
|
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
|
|
|
{
|
|
|
|
if (mAccessKeyInfo)
|
|
|
|
delete mAccessKeyInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsTextBoxFrame::Init(nsIPresContext* aPresContext,
|
2000-10-08 05:56:55 +00:00
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
nsresult rv = nsLeafBoxFrame::Init(aPresContext, aContent, aParent, aContext, 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;
|
|
|
|
UpdateAttributes(aPresContext, nsnull, aResize, aRedraw); /* update all */
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
return rv;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2001-10-19 20:56:29 +00:00
|
|
|
PRBool
|
|
|
|
nsTextBoxFrame::AlwaysAppendAccessKey()
|
|
|
|
{
|
|
|
|
if (!gAccessKeyPrefInitialized)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIPref> prefs = do_GetService(NS_PREF_CONTRACTID);
|
|
|
|
gAccessKeyPrefInitialized = PR_TRUE;
|
|
|
|
if (prefs)
|
|
|
|
{
|
|
|
|
nsXPIDLString prefValue;
|
|
|
|
nsresult res = prefs->GetLocalizedUnicharPref(
|
|
|
|
"intl.menuitems.alwaysappendacceskeys",
|
|
|
|
getter_Copies(prefValue));
|
|
|
|
if (NS_SUCCEEDED(res))
|
|
|
|
{
|
|
|
|
gAlwaysAppendAccessKey = nsDependentString(prefValue).Equals(
|
|
|
|
NS_LITERAL_STRING("true"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return gAlwaysAppendAccessKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
void
|
2000-10-08 05:56:55 +00:00
|
|
|
nsTextBoxFrame::UpdateAttributes(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (aAttribute == nsnull || aAttribute == nsXULAtoms::crop) {
|
|
|
|
nsAutoString value;
|
2001-08-17 08:14:14 +00:00
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsXULAtoms::crop, value);
|
2000-02-16 23:00:52 +00:00
|
|
|
CroppingStyle cropType;
|
|
|
|
|
2001-08-15 05:37:53 +00:00
|
|
|
if (value.EqualsIgnoreCase(CROP_LEFT) || value.EqualsIgnoreCase(CROP_START))
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropLeft;
|
|
|
|
else if (value.EqualsIgnoreCase(CROP_CENTER))
|
|
|
|
cropType = CropCenter;
|
2001-08-15 05:37:53 +00:00
|
|
|
else if (value.EqualsIgnoreCase(CROP_RIGHT) || value.EqualsIgnoreCase(CROP_END))
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropRight;
|
2000-10-08 05:56:55 +00:00
|
|
|
else
|
2000-02-16 23:00:52 +00:00
|
|
|
cropType = CropNone;
|
|
|
|
|
|
|
|
if (cropType != mCropType) {
|
|
|
|
aResize = PR_TRUE;
|
|
|
|
mCropType = cropType;
|
|
|
|
}
|
2001-08-15 05:37:53 +00:00
|
|
|
|
|
|
|
if (mCropType == CropLeft || mCropType == CropRight) {
|
|
|
|
const nsStyleVisibility* vis =
|
|
|
|
(const nsStyleVisibility*)mStyleContext->GetStyleData(eStyleStruct_Visibility);
|
|
|
|
if (vis->mDirection == NS_STYLE_DIRECTION_RTL) {
|
|
|
|
if (mCropType == CropLeft)
|
|
|
|
mCropType = CropRight;
|
|
|
|
else
|
|
|
|
mCropType = CropLeft;
|
|
|
|
}
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aAttribute == nsnull || aAttribute == nsHTMLAtoms::value) {
|
|
|
|
nsAutoString value;
|
2001-08-17 08:14:14 +00:00
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::value, value);
|
2000-02-16 23:00:52 +00:00
|
|
|
if (!value.Equals(mTitle)) {
|
2000-10-08 05:56:55 +00:00
|
|
|
mTitle = value;
|
|
|
|
doUpdateTitle = PR_TRUE;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
if (aAttribute == nsnull || aAttribute == nsXULAtoms::accesskey) {
|
|
|
|
nsAutoString accesskey;
|
2001-08-17 08:14:14 +00:00
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsXULAtoms::accesskey, accesskey);
|
2000-10-08 05:56:55 +00:00
|
|
|
if (!accesskey.Equals(mAccessKey)) {
|
|
|
|
if (!doUpdateTitle) {
|
|
|
|
// Need to get clean mTitle and didn't already
|
|
|
|
nsAutoString value;
|
2001-08-17 08:14:14 +00:00
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::value, value);
|
2000-10-08 05:56:55 +00:00
|
|
|
mTitle = value;
|
|
|
|
doUpdateTitle = PR_TRUE;
|
|
|
|
}
|
|
|
|
mAccessKey = accesskey;
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
if (doUpdateTitle) {
|
|
|
|
UpdateAccessTitle();
|
|
|
|
aResize = PR_TRUE;
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-10-08 05:56:55 +00:00
|
|
|
nsTextBoxFrame::Paint(nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
2001-09-19 12:35:19 +00:00
|
|
|
nsFramePaintLayer aWhichLayer,
|
|
|
|
PRUint32 aFlags)
|
2000-10-08 05:56:55 +00:00
|
|
|
{
|
2001-05-31 22:19:43 +00:00
|
|
|
const nsStyleVisibility* vis =
|
|
|
|
(const nsStyleVisibility*)mStyleContext->GetStyleData(eStyleStruct_Visibility);
|
|
|
|
if (!vis->IsVisible())
|
2000-10-08 05:56:55 +00:00
|
|
|
return NS_OK;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-03-02 03:01:30 +00:00
|
|
|
if (NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) {
|
2000-02-16 23:00:52 +00:00
|
|
|
|
|
|
|
// remove the border and padding
|
2001-02-07 09:57:26 +00:00
|
|
|
nsStyleBorderPadding bPad;
|
2001-05-31 22:19:43 +00:00
|
|
|
mStyleContext->GetBorderPaddingFor(bPad);
|
2000-10-08 05:56:55 +00:00
|
|
|
nsMargin border(0,0,0,0);
|
2001-02-07 09:57:26 +00:00
|
|
|
bPad.GetBorderPadding(border);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
nsRect textRect(0,0,mRect.width, mRect.height);
|
|
|
|
textRect.Deflate(border);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
PaintTitle(aPresContext, aRenderingContext, aDirtyRect, textRect);
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2000-02-16 23:00:52 +00:00
|
|
|
return nsLeafFrame::Paint(aPresContext, aRenderingContext, aDirtyRect, aWhichLayer);
|
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextBoxFrame::PaintTitle(nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsRect& aRect)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
if (mTitle.Length() == 0)
|
|
|
|
return NS_OK;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// determine (cropped) title and underline position
|
|
|
|
LayoutTitle(aPresContext, aRenderingContext, aRect);
|
|
|
|
|
|
|
|
// make the rect as small as our (cropped) text.
|
|
|
|
nsRect textRect(aRect);
|
|
|
|
textRect.width = mTitleWidth;
|
|
|
|
|
2001-08-14 00:07:36 +00:00
|
|
|
// Align our text within the overall rect by checking our text-align property.
|
2001-08-15 04:09:41 +00:00
|
|
|
const nsStyleVisibility* vis = (const nsStyleVisibility*)mStyleContext->GetStyleData(eStyleStruct_Visibility);
|
2001-08-14 00:07:36 +00:00
|
|
|
const nsStyleText* textStyle = (const nsStyleText*)mStyleContext->GetStyleData(eStyleStruct_Text);
|
2001-08-15 04:09:41 +00:00
|
|
|
|
2001-08-14 00:07:36 +00:00
|
|
|
if (textStyle->mTextAlign == NS_STYLE_TEXT_ALIGN_CENTER)
|
|
|
|
textRect.x += (aRect.width - textRect.width)/2;
|
2001-08-15 04:09:41 +00:00
|
|
|
else if (textStyle->mTextAlign == NS_STYLE_TEXT_ALIGN_RIGHT) {
|
|
|
|
if (vis->mDirection == NS_STYLE_DIRECTION_LTR)
|
|
|
|
textRect.x += (aRect.width - textRect.width);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (vis->mDirection == NS_STYLE_DIRECTION_RTL)
|
|
|
|
textRect.x += (aRect.width - textRect.width);
|
|
|
|
}
|
2001-08-14 00:07:36 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// don't draw if the title is not dirty
|
|
|
|
if (PR_FALSE == aDirtyRect.Intersects(textRect))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
// paint the title
|
2001-05-31 22:19:43 +00:00
|
|
|
nscolor overColor;
|
|
|
|
nscolor underColor;
|
|
|
|
nscolor strikeColor;
|
|
|
|
nsIStyleContext* context = mStyleContext;
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
NS_ADDREF(context);
|
|
|
|
do { // find decoration colors
|
|
|
|
const nsStyleTextReset* styleText =
|
|
|
|
(const nsStyleTextReset*)context->GetStyleData(eStyleStruct_TextReset);
|
|
|
|
|
|
|
|
if (decorMask & styleText->mTextDecoration) { // a decoration defined here
|
|
|
|
const nsStyleColor* styleColor =
|
|
|
|
(const nsStyleColor*)context->GetStyleData(eStyleStruct_Color);
|
|
|
|
|
|
|
|
if (NS_STYLE_TEXT_DECORATION_UNDERLINE & decorMask & styleText->mTextDecoration) {
|
|
|
|
underColor = styleColor->mColor;
|
|
|
|
decorMask &= ~NS_STYLE_TEXT_DECORATION_UNDERLINE;
|
|
|
|
decorations |= NS_STYLE_TEXT_DECORATION_UNDERLINE;
|
|
|
|
}
|
|
|
|
if (NS_STYLE_TEXT_DECORATION_OVERLINE & decorMask & styleText->mTextDecoration) {
|
|
|
|
overColor = styleColor->mColor;
|
|
|
|
decorMask &= ~NS_STYLE_TEXT_DECORATION_OVERLINE;
|
|
|
|
decorations |= NS_STYLE_TEXT_DECORATION_OVERLINE;
|
|
|
|
}
|
|
|
|
if (NS_STYLE_TEXT_DECORATION_LINE_THROUGH & decorMask & styleText->mTextDecoration) {
|
|
|
|
strikeColor = styleColor->mColor;
|
|
|
|
decorMask &= ~NS_STYLE_TEXT_DECORATION_LINE_THROUGH;
|
|
|
|
decorations |= NS_STYLE_TEXT_DECORATION_LINE_THROUGH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (0 != decorMask) {
|
|
|
|
nsIStyleContext* lastContext = context;
|
|
|
|
context = context->GetParent();
|
|
|
|
hasDecorations = context->HasTextDecorations();
|
|
|
|
NS_RELEASE(lastContext);
|
|
|
|
}
|
|
|
|
} while ((nsnull != context) && hasDecorations && (0 != decorMask));
|
|
|
|
NS_IF_RELEASE(context);
|
|
|
|
|
|
|
|
nsStyleFont* fontStyle = (nsStyleFont*)mStyleContext->GetStyleData(eStyleStruct_Font);
|
|
|
|
|
|
|
|
nscoord offset;
|
|
|
|
nscoord size;
|
|
|
|
nscoord baseline;
|
2001-10-30 22:58:00 +00:00
|
|
|
nsCOMPtr<nsIDeviceContext> deviceContext;
|
|
|
|
nsCOMPtr<nsIFontMetrics> fontMet;
|
|
|
|
aPresContext->GetDeviceContext(getter_AddRefs(deviceContext));
|
|
|
|
deviceContext->GetMetricsFor(fontStyle->mFont, *getter_AddRefs(fontMet));
|
|
|
|
fontMet->GetMaxAscent(baseline);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2001-10-30 22:58:00 +00:00
|
|
|
if (decorations & (NS_FONT_DECORATION_OVERLINE | NS_FONT_DECORATION_UNDERLINE)) {
|
2001-05-31 22:19:43 +00:00
|
|
|
fontMet->GetUnderline(offset, size);
|
|
|
|
if (decorations & NS_FONT_DECORATION_OVERLINE) {
|
|
|
|
aRenderingContext.SetColor(overColor);
|
|
|
|
aRenderingContext.FillRect(textRect.x, textRect.y, mRect.width, size);
|
|
|
|
}
|
|
|
|
if (decorations & NS_FONT_DECORATION_UNDERLINE) {
|
|
|
|
aRenderingContext.SetColor(underColor);
|
|
|
|
aRenderingContext.FillRect(textRect.x, textRect.y + baseline - offset, mRect.width, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (decorations & NS_FONT_DECORATION_LINE_THROUGH) {
|
|
|
|
fontMet->GetStrikeout(offset, size);
|
|
|
|
aRenderingContext.SetColor(strikeColor);
|
|
|
|
aRenderingContext.FillRect(textRect.x, textRect.y + baseline - offset, mRect.width, size);
|
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
aRenderingContext.SetFont(fontStyle->mFont);
|
|
|
|
|
|
|
|
CalculateUnderline(aRenderingContext);
|
|
|
|
|
|
|
|
const nsStyleColor* colorStyle = (const nsStyleColor*)mStyleContext->GetStyleData(eStyleStruct_Color);
|
|
|
|
aRenderingContext.SetColor(colorStyle->mColor);
|
|
|
|
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (mState & NS_FRAME_IS_BIDI) {
|
|
|
|
nsBidiPresUtils* bidiUtils;
|
2001-11-12 20:51:48 +00:00
|
|
|
aPresContext->SetBidiEnabled(PR_TRUE);
|
2001-05-15 11:58:40 +00:00
|
|
|
aPresContext->GetBidiUtils(&bidiUtils);
|
|
|
|
|
|
|
|
if (bidiUtils) {
|
2001-11-12 20:51:48 +00:00
|
|
|
PRUnichar* buffer = ToNewUnicode(mCroppedTitle);
|
|
|
|
if (buffer) {
|
|
|
|
const nsStyleVisibility* vis = (const nsStyleVisibility*)mStyleContext->GetStyleData(eStyleStruct_Visibility);
|
2001-05-15 11:58:40 +00:00
|
|
|
nsBidiDirection direction =
|
2001-05-31 22:19:43 +00:00
|
|
|
(NS_STYLE_DIRECTION_RTL == vis->mDirection)
|
2001-05-15 11:58:40 +00:00
|
|
|
? NSBIDI_RTL : NSBIDI_LTR;
|
2001-11-12 20:51:48 +00:00
|
|
|
rv = bidiUtils->RenderText(buffer, mCroppedTitle.Length(), direction,
|
|
|
|
aPresContext, aRenderingContext,
|
|
|
|
textRect.x, textRect.y + baseline);
|
|
|
|
nsMemory::Free(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-05-15 11:58:40 +00:00
|
|
|
if (NS_FAILED(rv) )
|
|
|
|
#endif // IBMBIDI
|
2001-10-30 22:58:00 +00:00
|
|
|
aRenderingContext.DrawString(mCroppedTitle, textRect.x, textRect.y + baseline);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
|
|
|
if (mAccessKeyInfo && mAccessKeyInfo->mAccesskeyIndex != kNotFound) {
|
|
|
|
aRenderingContext.FillRect(textRect.x + mAccessKeyInfo->mBeforeWidth,
|
|
|
|
textRect.y + mAccessKeyInfo->mAccessOffset,
|
|
|
|
mAccessKeyInfo->mAccessWidth,
|
|
|
|
mAccessKeyInfo->mAccessUnderlineSize);
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
return NS_OK;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
void
|
|
|
|
nsTextBoxFrame::LayoutTitle(nsIPresContext* aPresContext,
|
|
|
|
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) {
|
2000-02-16 23:00:52 +00:00
|
|
|
// get all the underline-positioning stuff
|
|
|
|
|
|
|
|
// XXX are attribute values always two byte?
|
|
|
|
const PRUnichar *titleString;
|
2001-06-30 11:02:25 +00:00
|
|
|
titleString = mCroppedTitle.get();
|
2000-10-08 05:56:55 +00:00
|
|
|
if (mAccessKeyInfo->mAccesskeyIndex > 0)
|
2000-02-16 23:00:52 +00:00
|
|
|
aRenderingContext.GetWidth(titleString, mAccessKeyInfo->mAccesskeyIndex,
|
|
|
|
mAccessKeyInfo->mBeforeWidth);
|
|
|
|
else
|
|
|
|
mAccessKeyInfo->mBeforeWidth = 0;
|
2000-10-08 05:56:55 +00:00
|
|
|
|
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
|
|
|
|
nsTextBoxFrame::CalculateTitleForWidth(nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
nscoord aWidth)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
if (mTitle.Length() == 0)
|
|
|
|
return;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
const nsStyleFont* fontStyle = (const nsStyleFont*)mStyleContext->GetStyleData(eStyleStruct_Font);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
nsCOMPtr<nsIDeviceContext> deviceContext;
|
|
|
|
aPresContext->GetDeviceContext(getter_AddRefs(deviceContext));
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
nsCOMPtr<nsIFontMetrics> fontMet;
|
|
|
|
deviceContext->GetMetricsFor(fontStyle->mFont, *getter_AddRefs(fontMet));
|
|
|
|
aRenderingContext.SetFont(fontMet);
|
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
|
|
|
|
aRenderingContext.GetWidth(mTitle, mTitleWidth);
|
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
|
|
|
|
PRInt32 length = mTitle.Length();
|
|
|
|
for (PRInt32 i = 0; i < length; i++) {
|
|
|
|
if (CHAR_IS_BIDI(mTitle.CharAt(i) ) ) {
|
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2000-10-08 05:56:55 +00:00
|
|
|
return; // fits, done.
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
// start with an ellipsis
|
|
|
|
mCroppedTitle.AssignWithConversion(ELLIPSIS);
|
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?).
|
|
|
|
nscoord ellipsisWidth;
|
|
|
|
aRenderingContext.GetWidth(ELLIPSIS, ellipsisWidth);
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
if (ellipsisWidth > aWidth) {
|
|
|
|
mCroppedTitle.SetLength(0);
|
|
|
|
mTitleWidth = aWidth;
|
|
|
|
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
|
|
|
|
if (ellipsisWidth == aWidth) {
|
|
|
|
mTitleWidth = aWidth;
|
|
|
|
return;
|
|
|
|
}
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
aWidth -= ellipsisWidth;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
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);
|
|
|
|
aRenderingContext.GetWidth(ch,cwidth);
|
|
|
|
if (twidth + cwidth > aWidth)
|
|
|
|
break;
|
|
|
|
|
|
|
|
twidth += cwidth;
|
2001-05-15 11:58:40 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
if (CHAR_IS_BIDI(ch) ) {
|
|
|
|
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
|
|
|
|
if (CHAR_IS_BIDI(ch) ) {
|
|
|
|
mState |= NS_FRAME_IS_BIDI;
|
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i == length-1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsAutoString copy;
|
|
|
|
mTitle.Right(copy, length-1-i);
|
|
|
|
mCroppedTitle += copy;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CropCenter:
|
|
|
|
{
|
2001-07-15 00:10:10 +00:00
|
|
|
nscoord stringWidth = 0;
|
|
|
|
aRenderingContext.GetWidth(mTitle, stringWidth);
|
|
|
|
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;
|
|
|
|
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
|
2001-07-15 00:10:10 +00:00
|
|
|
if (CHAR_IS_BIDI(ch))
|
|
|
|
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
|
2001-07-15 00:10:10 +00:00
|
|
|
if (CHAR_IS_BIDI(ch))
|
|
|
|
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
|
|
|
|
2001-07-15 00:10:10 +00:00
|
|
|
// form the new cropped string
|
|
|
|
nsAutoString ellipsisString;
|
|
|
|
ellipsisString.AssignWithConversion(ELLIPSIS);
|
2000-10-08 05:56:55 +00:00
|
|
|
|
2001-07-15 00:10:10 +00:00
|
|
|
mCroppedTitle = leftString + ellipsisString + rightString;
|
2000-10-08 05:56:55 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-02-16 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aRenderingContext.GetWidth(mCroppedTitle, mTitleWidth);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
PRInt32 menuAccessKey;
|
|
|
|
nsMenuBarListener::GetMenuAccessKey(&menuAccessKey);
|
|
|
|
if (menuAccessKey) {
|
|
|
|
if (!mAccessKey.IsEmpty()) {
|
2001-10-19 20:56:29 +00:00
|
|
|
if ((mTitle.Find(mAccessKey, PR_TRUE) == kNotFound)
|
|
|
|
|| AlwaysAppendAccessKey())
|
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
nsAutoString tmpstring; tmpstring.AssignWithConversion("(");
|
|
|
|
tmpstring += mAccessKey;
|
|
|
|
tmpstring.ToUpperCase();
|
|
|
|
tmpstring.AppendWithConversion(")");
|
2000-10-21 19:12:55 +00:00
|
|
|
PRInt32 offset = mTitle.RFind("...");
|
2000-10-08 05:56:55 +00:00
|
|
|
if (offset != kNotFound)
|
2000-10-21 19:12:55 +00:00
|
|
|
mTitle.Insert(tmpstring,NS_STATIC_CAST(PRUint32, offset));
|
2000-10-08 05:56:55 +00:00
|
|
|
else
|
|
|
|
mTitle += tmpstring;
|
|
|
|
}
|
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 {
|
|
|
|
if (!mAccessKeyInfo)
|
|
|
|
mAccessKeyInfo = new nsAccessKeyInfo();
|
|
|
|
|
2001-10-19 20:56:29 +00:00
|
|
|
if (!AlwaysAppendAccessKey()) {
|
2001-06-08 03:25:44 +00:00
|
|
|
// not appending access key - do case-sensitive search first
|
|
|
|
mAccessKeyInfo->mAccesskeyIndex = mCroppedTitle.Find(mAccessKey, PR_FALSE);
|
|
|
|
if (mAccessKeyInfo->mAccesskeyIndex == kNotFound) {
|
|
|
|
// didn't find it - perform a case-insensitive search
|
|
|
|
mAccessKeyInfo->mAccesskeyIndex = mCroppedTitle.Find(mAccessKey, PR_TRUE);
|
|
|
|
}
|
2001-04-17 01:58:00 +00:00
|
|
|
} else {
|
2001-06-08 03:25:44 +00:00
|
|
|
// use case-insensitive, reverse find for appended access keys
|
2001-04-17 01:58:00 +00:00
|
|
|
mAccessKeyInfo->mAccesskeyIndex = mCroppedTitle.RFind(mAccessKey, PR_TRUE);
|
|
|
|
}
|
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
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
mState |= NS_STATE_NEED_LAYOUT;
|
2000-02-16 23:00:52 +00:00
|
|
|
|
2000-10-08 05:56:55 +00:00
|
|
|
return nsLeafBoxFrame::DoLayout(aBoxLayoutState);
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextBoxFrame::NeedsRecalc()
|
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
mNeedsRecalc = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTextBoxFrame::GetTextSize(nsIPresContext* aPresContext, nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsString& aString, nsSize& aSize, nscoord& aAscent)
|
|
|
|
{
|
|
|
|
const nsStyleFont* fontStyle = (const nsStyleFont*)mStyleContext->GetStyleData(eStyleStruct_Font);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDeviceContext> deviceContext;
|
|
|
|
aPresContext->GetDeviceContext(getter_AddRefs(deviceContext));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFontMetrics> fontMet;
|
|
|
|
deviceContext->GetMetricsFor(fontStyle->mFont, *getter_AddRefs(fontMet));
|
|
|
|
fontMet->GetHeight(aSize.height);
|
|
|
|
aRenderingContext.SetFont(fontMet);
|
|
|
|
aRenderingContext.GetWidth(aString, aSize.width);
|
|
|
|
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;
|
|
|
|
nsIPresContext* presContext = aBoxLayoutState.GetPresContext();
|
|
|
|
const nsHTMLReflowState* rstate = aBoxLayoutState.GetReflowState();
|
|
|
|
if (!rstate)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIRenderingContext* rendContext = rstate->rendContext;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ok return our dimensions
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsTextBoxFrame::GetPrefSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize)
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
CalcTextSize(aBoxLayoutState);
|
|
|
|
|
|
|
|
aSize = mTextSize;
|
|
|
|
|
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSPrefSize(aBoxLayoutState, this, aSize);
|
|
|
|
|
|
|
|
return NS_OK;
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ok return our dimensions
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextBoxFrame::GetMinSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize)
|
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
CalcTextSize(aBoxLayoutState);
|
|
|
|
|
|
|
|
aSize = mTextSize;
|
|
|
|
|
|
|
|
// if there is cropping our min width becomes our border and padding
|
|
|
|
if (mCropType != CropNone) {
|
|
|
|
aSize.width = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSMinSize(aBoxLayoutState, this, aSize);
|
|
|
|
|
|
|
|
return NS_OK;
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextBoxFrame::GetAscent(nsBoxLayoutState& aBoxLayoutState, nscoord& aAscent)
|
|
|
|
{
|
2000-10-08 05:56:55 +00:00
|
|
|
CalcTextSize(aBoxLayoutState);
|
|
|
|
|
|
|
|
aAscent = 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);
|
|
|
|
aAscent += m.top;
|
|
|
|
GetInset(m);
|
|
|
|
aAscent += m.top;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
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
|
|
|
#ifdef DEBUG
|
2000-02-16 23:00:52 +00:00
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsTextBoxFrame::GetFrameName(nsString& aResult) const
|
2000-02-16 23:00:52 +00:00
|
|
|
{
|
2001-09-15 00:45:54 +00:00
|
|
|
MakeFrameName("Text", aResult);
|
|
|
|
aResult += NS_LITERAL_STRING("[value=");
|
2000-10-08 05:56:55 +00:00
|
|
|
aResult += mTitle;
|
2001-09-15 00:45:54 +00:00
|
|
|
aResult += 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
|