2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04: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/
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04: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.
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04: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-29 00:14:13 +04: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 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04: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 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-02-16 03:30:29 +03:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
#include "nsFormControlFrame.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
1999-01-06 03:02:27 +03:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
2000-02-09 22:34:39 +03:00
|
|
|
#include "nsIEventStateManager.h"
|
2000-03-21 18:18:07 +03:00
|
|
|
#include "nsIScrollableView.h"
|
2001-10-05 18:10:16 +04:00
|
|
|
#include "nsILookAndFeel.h"
|
1998-12-15 22:03:36 +03:00
|
|
|
|
2000-03-24 17:59:02 +03:00
|
|
|
//#define FCF_NOISY
|
2000-03-03 07:28:59 +03:00
|
|
|
|
|
|
|
const PRInt32 kSizeNotSet = -1;
|
1998-09-23 21:44:33 +04:00
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
nsFormControlFrame::nsFormControlFrame(nsStyleContext* aContext) :
|
|
|
|
nsLeafFrame(aContext),
|
|
|
|
mDidInit(PR_FALSE)
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFormControlFrame::~nsFormControlFrame()
|
|
|
|
{
|
2000-08-03 02:12:11 +04:00
|
|
|
}
|
|
|
|
|
2006-04-10 04:16:29 +04:00
|
|
|
void
|
|
|
|
nsFormControlFrame::Destroy()
|
2000-08-03 02:12:11 +04:00
|
|
|
{
|
2002-06-21 00:44:27 +04:00
|
|
|
// XXXldb Do we really need to do this? Shouldn't only those frames
|
|
|
|
// that use it do it?
|
2006-04-10 04:16:29 +04:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(NS_STATIC_CAST(nsIFrame*, this), PR_FALSE);
|
|
|
|
nsLeafFrame::Destroy();
|
1998-09-23 21:44:33 +04:00
|
|
|
}
|
|
|
|
|
1999-11-02 04:50:15 +03:00
|
|
|
// Frames are not refcounted, no need to AddRef
|
|
|
|
NS_IMETHODIMP
|
1998-09-23 21:44:33 +04:00
|
|
|
nsFormControlFrame::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(0 != aInstancePtr, "null ptr");
|
|
|
|
if (NULL == aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIFormControlFrame))) {
|
1998-09-23 21:44:33 +04:00
|
|
|
*aInstancePtr = (void*) ((nsIFormControlFrame*) this);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return nsLeafFrame::QueryInterface(aIID, aInstancePtr);
|
|
|
|
}
|
|
|
|
|
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 08:38:33 +03:00
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetIntrinsicWidth()
|
2000-01-08 18:53:48 +03:00
|
|
|
{
|
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 08:38:33 +03:00
|
|
|
// Intrinsic width is 144 twips. Why? I have no idea; that's what
|
|
|
|
// it was before I touched this code, and the original checkin
|
|
|
|
// comment is not so helpful.
|
|
|
|
return 144;
|
2000-01-08 18:53:48 +03:00
|
|
|
}
|
1998-09-23 21:44:33 +04:00
|
|
|
|
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 08:38:33 +03:00
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetIntrinsicHeight()
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
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 08:38:33 +03:00
|
|
|
// Intrinsic height is 144 twips. Why? I have no idea; that's what
|
|
|
|
// it was before I touched this code, and the original checkin
|
|
|
|
// comment is not so helpful.
|
|
|
|
return 144;
|
1998-09-23 21:44:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::DidReflow(nsPresContext* aPresContext,
|
2001-12-07 17:51:12 +03:00
|
|
|
const nsHTMLReflowState* aReflowState,
|
|
|
|
nsDidReflowStatus aStatus)
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
2001-12-07 17:51:12 +03:00
|
|
|
nsresult rv = nsLeafFrame::DidReflow(aPresContext, aReflowState, aStatus);
|
1998-09-23 21:44:33 +04:00
|
|
|
|
1999-05-20 02:14:11 +04:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
// The view is created hidden; once we have reflowed it and it has been
|
|
|
|
// positioned then we show it.
|
|
|
|
if (NS_FRAME_REFLOW_FINISHED == aStatus) {
|
2003-07-04 16:50:32 +04:00
|
|
|
nsIView* view = GetView();
|
1999-05-20 02:14:11 +04:00
|
|
|
if (view) {
|
2003-05-15 07:42:21 +04:00
|
|
|
nsViewVisibility newVis = GetStyleVisibility()->IsVisible()
|
|
|
|
? nsViewVisibility_kShow
|
|
|
|
: nsViewVisibility_kHide;
|
1999-05-20 02:14:11 +04:00
|
|
|
// only change if different.
|
2003-07-04 16:50:32 +04:00
|
|
|
if (newVis != view->GetVisibility()) {
|
|
|
|
nsIViewManager* vm = view->GetViewManager();
|
2001-12-01 17:31:45 +03:00
|
|
|
if (vm) {
|
|
|
|
vm->SetViewVisibility(view, newVis);
|
|
|
|
}
|
|
|
|
}
|
1998-09-23 21:44:33 +04:00
|
|
|
}
|
|
|
|
}
|
1999-05-20 02:14:11 +04:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1998-10-30 21:05:29 +03:00
|
|
|
NS_IMETHODIMP
|
2006-04-10 04:16:29 +04:00
|
|
|
nsFormControlFrame::SetInitialChildList(nsIAtom* aListName,
|
1998-11-10 09:05:32 +03:00
|
|
|
nsIFrame* aChildList)
|
1998-10-30 21:05:29 +03:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
NS_METHOD
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::Reflow(nsPresContext* aPresContext,
|
1999-02-27 06:59:19 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-11-14 02:13:42 +03:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1999-02-27 06:59:19 +03:00
|
|
|
nsReflowStatus& aStatus)
|
1998-11-14 02:13:42 +03:00
|
|
|
{
|
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 08:38:33 +03:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsFormControlFrame");
|
2001-11-14 16:40:03 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
2000-04-22 01:51:35 +04:00
|
|
|
|
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 08:38:33 +03:00
|
|
|
if (mState & NS_FRAME_FIRST_REFLOW) {
|
2006-04-10 04:16:29 +04:00
|
|
|
RegUnRegAccessKey(NS_STATIC_CAST(nsIFrame*, this), PR_TRUE);
|
2000-02-09 22:34:39 +03:00
|
|
|
}
|
|
|
|
|
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 08:38:33 +03:00
|
|
|
return nsLeafFrame::Reflow(aPresContext, aDesiredSize, aReflowState,
|
|
|
|
aStatus);
|
1998-11-14 02:13:42 +03:00
|
|
|
}
|
|
|
|
|
2000-02-09 22:34:39 +03:00
|
|
|
nsresult
|
2006-04-10 04:16:29 +04:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(nsIFrame * aFrame, PRBool aDoReg)
|
2000-02-09 22:34:39 +03:00
|
|
|
{
|
2005-03-24 21:41:39 +03:00
|
|
|
NS_ENSURE_ARG_POINTER(aFrame);
|
2006-04-10 04:16:29 +04:00
|
|
|
|
|
|
|
nsPresContext* presContext = aFrame->GetPresContext();
|
|
|
|
|
|
|
|
NS_ASSERTION(presContext, "aPresContext is NULL in RegUnRegAccessKey!");
|
2000-02-09 22:34:39 +03:00
|
|
|
|
|
|
|
nsAutoString accessKey;
|
|
|
|
|
2005-03-24 21:41:39 +03:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
|
|
|
content->GetAttr(kNameSpaceID_None, nsHTMLAtoms::accesskey, accessKey);
|
2004-07-04 00:54:54 +04:00
|
|
|
if (!accessKey.IsEmpty()) {
|
2006-04-10 04:16:29 +04:00
|
|
|
nsIEventStateManager *stateManager = presContext->EventStateManager();
|
2004-02-27 20:17:37 +03:00
|
|
|
if (aDoReg) {
|
2005-03-24 21:41:39 +03:00
|
|
|
return stateManager->RegisterAccessKey(content, (PRUint32)accessKey.First());
|
2004-02-27 20:17:37 +03:00
|
|
|
} else {
|
2005-03-24 21:41:39 +03:00
|
|
|
return stateManager->UnregisterAccessKey(content, (PRUint32)accessKey.First());
|
2000-02-09 22:34:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
1998-10-23 03:00:37 +04:00
|
|
|
void
|
|
|
|
nsFormControlFrame::SetFocus(PRBool aOn, PRBool aRepaint)
|
|
|
|
{
|
1998-09-23 21:44:33 +04:00
|
|
|
}
|
|
|
|
|
1999-08-21 04:09:24 +04:00
|
|
|
NS_METHOD
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::HandleEvent(nsPresContext* aPresContext,
|
1998-09-23 21:44:33 +04:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 09:03:41 +03:00
|
|
|
nsEventStatus* aEventStatus)
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
2000-08-09 03:38:00 +04:00
|
|
|
// Check for user-input:none style
|
2003-05-15 07:42:21 +04:00
|
|
|
const nsStyleUserInterface* uiStyle = GetStyleUserInterface();
|
2006-02-16 03:30:29 +03:00
|
|
|
if (uiStyle->mUserInput == NS_STYLE_USER_INPUT_NONE ||
|
|
|
|
uiStyle->mUserInput == NS_STYLE_USER_INPUT_DISABLED)
|
2000-08-09 03:38:00 +04:00
|
|
|
return nsFrame::HandleEvent(aPresContext, aEvent, aEventStatus);
|
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-10-28 15:25:24 +04:00
|
|
|
void
|
1999-08-21 04:09:24 +04:00
|
|
|
nsFormControlFrame::GetCurrentCheckState(PRBool *aState)
|
1999-01-06 03:02:27 +03:00
|
|
|
{
|
2002-03-07 23:53:40 +03:00
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> inputElement = do_QueryInterface(mContent);
|
|
|
|
if (inputElement) {
|
2005-10-28 15:25:24 +04:00
|
|
|
inputElement->GetChecked(aState);
|
1999-01-06 03:02:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
nsresult
|
|
|
|
nsFormControlFrame::SetFormProperty(nsIAtom* aName, const nsAString& aValue)
|
1999-01-26 01:16:27 +03:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
nsresult
|
|
|
|
nsFormControlFrame::GetFormProperty(nsIAtom* aName, nsAString& aValue) const
|
1999-01-26 01:16:27 +03:00
|
|
|
{
|
2000-08-23 21:27:06 +04:00
|
|
|
aValue.Truncate();
|
1999-01-26 01:16:27 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-03-18 16:45:30 +03:00
|
|
|
nsresult
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::GetScreenHeight(nsPresContext* aPresContext,
|
2004-02-03 01:17:21 +03:00
|
|
|
nscoord& aHeight)
|
|
|
|
{
|
|
|
|
nsRect screen;
|
|
|
|
|
|
|
|
nsIDeviceContext *context = aPresContext->DeviceContext();
|
|
|
|
PRBool dropdownCanOverlapOSBar = PR_FALSE;
|
|
|
|
nsILookAndFeel *lookAndFeel = aPresContext->LookAndFeel();
|
|
|
|
lookAndFeel->GetMetric(nsILookAndFeel::eMetric_MenusCanOverlapOSBar,
|
|
|
|
dropdownCanOverlapOSBar);
|
|
|
|
if ( dropdownCanOverlapOSBar )
|
|
|
|
context->GetRect ( screen );
|
|
|
|
else
|
|
|
|
context->GetClientRect(screen);
|
2001-10-05 18:10:16 +04:00
|
|
|
|
2004-02-03 01:17:21 +03:00
|
|
|
float devUnits;
|
2004-02-05 04:57:10 +03:00
|
|
|
devUnits = context->DevUnitsToAppUnits();
|
2004-02-03 01:17:21 +03:00
|
|
|
aHeight = NSToIntRound(float(screen.height) / devUnits );
|
|
|
|
return NS_OK;
|
2000-03-18 16:45:30 +03:00
|
|
|
}
|
2000-03-21 18:18:07 +03:00
|
|
|
|
|
|
|
// Calculate a frame's position in screen coordinates
|
|
|
|
nsresult
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::GetAbsoluteFramePosition(nsPresContext* aPresContext,
|
2000-03-21 18:18:07 +03:00
|
|
|
nsIFrame *aFrame,
|
|
|
|
nsRect& aAbsoluteTwipsRect,
|
|
|
|
nsRect& aAbsolutePixelRect)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2003-07-04 16:50:32 +04:00
|
|
|
aAbsoluteTwipsRect = aFrame->GetRect();
|
2000-03-21 18:18:07 +03:00
|
|
|
// zero these out,
|
|
|
|
// because the GetOffsetFromView figures them out
|
2002-09-11 05:44:36 +04:00
|
|
|
// XXXbz why do we need to do this, really? Will we ever fail to
|
|
|
|
// get a containing view?
|
2000-03-21 18:18:07 +03:00
|
|
|
aAbsoluteTwipsRect.x = 0;
|
|
|
|
aAbsoluteTwipsRect.y = 0;
|
|
|
|
|
2002-09-11 05:44:36 +04:00
|
|
|
// Get conversions between twips and pixels
|
2000-03-21 18:18:07 +03:00
|
|
|
float t2p;
|
|
|
|
float p2t;
|
2004-02-11 07:57:07 +03:00
|
|
|
t2p = aPresContext->TwipsToPixels();
|
|
|
|
p2t = aPresContext->PixelsToTwips();
|
2002-02-20 00:33:26 +03:00
|
|
|
|
2002-09-11 05:44:36 +04:00
|
|
|
// Start with frame's offset from it it's containing view
|
|
|
|
nsIView *view = nsnull;
|
|
|
|
nsPoint frameOffset;
|
2004-12-26 22:48:54 +03:00
|
|
|
rv = aFrame->GetOffsetFromView(frameOffset, &view);
|
2002-09-11 05:44:36 +04:00
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv) && view) {
|
|
|
|
aAbsoluteTwipsRect.MoveTo(frameOffset);
|
|
|
|
|
2003-07-04 16:50:32 +04:00
|
|
|
nsIWidget* widget;
|
2002-09-11 05:44:36 +04:00
|
|
|
// Walk up the views, looking for a widget
|
|
|
|
do {
|
|
|
|
// add in the offset of the view from its parent.
|
2003-07-04 16:50:32 +04:00
|
|
|
aAbsoluteTwipsRect += view->GetPosition();
|
2002-09-11 05:44:36 +04:00
|
|
|
|
2003-07-04 16:50:32 +04:00
|
|
|
widget = view->GetWidget();
|
2002-09-11 05:44:36 +04:00
|
|
|
if (widget) {
|
|
|
|
// account for space above and to the left of the view origin.
|
|
|
|
// the widget is aligned with view's bounds, not its origin
|
|
|
|
|
2003-07-04 16:50:32 +04:00
|
|
|
nsRect bounds = view->GetBounds();
|
2002-09-11 05:44:36 +04:00
|
|
|
aAbsoluteTwipsRect.x -= bounds.x;
|
|
|
|
aAbsoluteTwipsRect.y -= bounds.y;
|
|
|
|
|
2000-03-21 18:18:07 +03:00
|
|
|
// Add in the absolute offset of the widget.
|
|
|
|
nsRect absBounds;
|
2002-09-11 05:44:36 +04:00
|
|
|
nsRect zeroRect;
|
|
|
|
// XXX a twip version of this would be really nice here!
|
|
|
|
widget->WidgetToScreen(zeroRect, absBounds);
|
|
|
|
// Convert widget coordinates to twips
|
2000-03-21 18:18:07 +03:00
|
|
|
aAbsoluteTwipsRect.x += NSIntPixelsToTwips(absBounds.x, p2t);
|
|
|
|
aAbsoluteTwipsRect.y += NSIntPixelsToTwips(absBounds.y, p2t);
|
2002-09-11 05:44:36 +04:00
|
|
|
break;
|
2000-04-12 18:51:10 +04:00
|
|
|
}
|
2000-03-21 18:18:07 +03:00
|
|
|
|
2003-07-04 16:50:32 +04:00
|
|
|
view = view->GetParent();
|
2002-09-11 05:44:36 +04:00
|
|
|
} while (view);
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert to pixel coordinates
|
2000-03-21 18:18:07 +03:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2002-09-11 05:44:36 +04:00
|
|
|
aAbsolutePixelRect.x = NSTwipsToIntPixels(aAbsoluteTwipsRect.x, t2p);
|
|
|
|
aAbsolutePixelRect.y = NSTwipsToIntPixels(aAbsoluteTwipsRect.y, t2p);
|
|
|
|
|
|
|
|
aAbsolutePixelRect.width = NSTwipsToIntPixels(aAbsoluteTwipsRect.width, t2p);
|
|
|
|
aAbsolutePixelRect.height = NSTwipsToIntPixels(aAbsoluteTwipsRect.height, t2p);
|
2000-03-21 18:18:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|