Files
Mozilla/mozilla/widget/src/xlib/nsWidget.cpp
blizzard%redhat.com 6379db8ae5 native window scrolling fixes. this is not part of the build.
git-svn-id: svn://10.0.0.236/trunk@38976 18797224-902f-48f8-a5cc-f745e15eee43
1999-07-10 23:20:41 +00:00

775 lines
21 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "nsWidget.h"
#include "nsGfxCIID.h"
#include "xlibrgb.h"
PRLogModuleInfo *XlibWidgetsLM = PR_NewLogModule("XlibWidgets");
PRLogModuleInfo *XlibScrollingLM = PR_NewLogModule("XlibScrolling");
// set up our static members here.
nsHashtable *nsWidget::window_list = nsnull;
// this is a class for generating keys for
// the list of windows managed by mozilla.
class nsWindowKey : public nsHashKey {
protected:
Window mKey;
public:
nsWindowKey(Window key) {
mKey = key;
}
~nsWindowKey(void) {
}
PRUint32 HashValue(void) const {
return (PRUint32)mKey;
}
PRBool Equals(const nsHashKey *aKey) const {
return (mKey == ((nsWindowKey *)aKey)->mKey);
}
nsHashKey *Clone(void) const {
return new nsWindowKey(mKey);
}
};
nsWidget::nsWidget() : nsBaseWidget()
{
mPreferredWidth = 0;
mPreferredHeight = 0;
mDisplay = 0;
mScreen = 0;
mVisual = 0;
mDepth = 0;
mBaseWindow = 0;
mBackground = NS_RGB(192, 192, 192);
mBackgroundPixel = xlib_rgb_xpixel_from_rgb(mBackground);
mBackground = NS_RGB(192, 192, 192);
mBorderPixel = xlib_rgb_xpixel_from_rgb(mBorderRGB);
mGC = 0;
mParentWidget = nsnull;
mName = "unnamed";
mScrollX = 0;
mScrollY = 0;
mIsShown = PR_FALSE;
mIsToplevel = PR_FALSE;
}
nsWidget::~nsWidget()
{
DestroyNative();
}
void
nsWidget::DestroyNative(void)
{
if (mGC)
XFreeGC(mDisplay, mGC);
if (mBaseWindow) {
XDestroyWindow(mDisplay, mBaseWindow);
DeleteWindowCallback(mBaseWindow);
}
}
NS_IMETHODIMP nsWidget::Create(nsIWidget *aParent,
const nsRect &aRect,
EVENT_CALLBACK aHandleEventFunction,
nsIDeviceContext *aContext,
nsIAppShell *aAppShell,
nsIToolkit *aToolkit,
nsWidgetInitData *aInitData)
{
mParentWidget = aParent;
return(StandardWidgetCreate(aParent, aRect, aHandleEventFunction,
aContext, aAppShell, aToolkit, aInitData,
nsnull));
}
NS_IMETHODIMP nsWidget::Create(nsNativeWidget aParent,
const nsRect &aRect,
EVENT_CALLBACK aHandleEventFunction,
nsIDeviceContext *aContext,
nsIAppShell *aAppShell,
nsIToolkit *aToolkit,
nsWidgetInitData *aInitData)
{
return(StandardWidgetCreate(nsnull, aRect, aHandleEventFunction,
aContext, aAppShell, aToolkit, aInitData,
aParent));
}
nsresult
nsWidget::StandardWidgetCreate(nsIWidget *aParent,
const nsRect &aRect,
EVENT_CALLBACK aHandleEventFunction,
nsIDeviceContext *aContext,
nsIAppShell *aAppShell,
nsIToolkit *aToolkit,
nsWidgetInitData *aInitData,
nsNativeWidget aNativeParent)
{
Window parent;
mDisplay = xlib_rgb_get_display();
mScreen = xlib_rgb_get_screen();
mVisual = xlib_rgb_get_visual();
mDepth = xlib_rgb_get_depth();
// set up the BaseWidget parts.
BaseCreate(aParent, aRect, aHandleEventFunction, aContext,
aAppShell, aToolkit, aInitData);
// check to see if the parent is there...
if (nsnull != aParent) {
parent = ((aParent) ? (Window)aParent->GetNativeData(NS_NATIVE_WINDOW) : nsnull);
} else {
parent = (Window)aNativeParent;
}
// if there's no parent, make the parent the root window.
if (parent == 0) {
parent = RootWindowOfScreen(mScreen);
mIsToplevel = PR_TRUE;
}
// set the bounds
mBounds = aRect;
// call the native create function
CreateNative(parent, mBounds);
XSync(mDisplay, False);
return NS_OK;
}
NS_IMETHODIMP nsWidget::Destroy()
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::Move(PRUint32 aX, PRUint32 aY)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Move(x, y)\n"));
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("Moving window 0x%lx to %d, %d\n", mBaseWindow, aX, aY));
mBounds.x = aX;
mBounds.y = aY;
if (mParentWidget) {
((nsWidget*)mParentWidget)->WidgetMove(this);
} else {
XMoveWindow(mDisplay, mBaseWindow, aX, aY);
}
return NS_OK;
}
NS_IMETHODIMP nsWidget::Resize(PRUint32 aWidth,
PRUint32 aHeight,
PRBool aRepaint)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Resize(width, height)\n"));
if (aWidth <= 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** width is %d, fixing.\n", aWidth));
aWidth = 1;
}
if (aHeight <= 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** height is %d, fixing.\n", aHeight));
aHeight = 1;
}
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("Resizing window 0x%lx to %d, %d\n", mBaseWindow, aWidth, aHeight));
mBounds.width = aWidth;
mBounds.height = aHeight;
if (mParentWidget) {
((nsWidget *)mParentWidget)->WidgetResize(this);
} else {
XResizeWindow(mDisplay, mBaseWindow, aWidth, aHeight);
}
return NS_OK;
}
NS_IMETHODIMP nsWidget::Resize(PRUint32 aX,
PRUint32 aY,
PRUint32 aWidth,
PRUint32 aHeight,
PRBool aRepaint)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Resize(x, y, width, height)\n"));
if (aWidth <= 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** width is %d, fixing.\n", aWidth));
aWidth = 1;
}
if (aHeight <= 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** height is %d, fixing.\n", aHeight));
aHeight = 1;
}
if (aX < 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** x is %d, fixing.\n", aX));
aX = 0;
}
if (aY < 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** y is %d, fixing.\n", aY));
aY = 0;
}
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG,
("Resizing window 0x%lx to %d, %d\n", mBaseWindow, aWidth, aHeight));
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG,
("Moving window 0x%lx to %d, %d\n", mBaseWindow, aX, aY));
mBounds.x = aX;
mBounds.y = aY;
mBounds.width = aWidth;
mBounds.height = aHeight;
if (mParentWidget) {
((nsWidget *)mParentWidget)->WidgetMoveResize(this);
} else {
XMoveResizeWindow(mDisplay, mBaseWindow, aX, aY, aWidth, aHeight);
}
return NS_OK;
}
NS_IMETHODIMP nsWidget::Enable(PRBool bState)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetFocus(void)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::Invalidate(PRBool aIsSynchronous)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Invalidate(sync)\n"));
return NS_OK;
}
NS_IMETHODIMP nsWidget::Invalidate(const nsRect & aRect, PRBool aIsSynchronous)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Invalidate(rect, sync)\n"));
return NS_OK;
}
nsIFontMetrics* nsWidget::GetFont(void)
{
return nsnull;
}
NS_IMETHODIMP nsWidget::GetPreferredSize(PRInt32& aWidth, PRInt32& aHeight)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetMenuBar(nsIMenuBar * aMenuBar)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::ShowMenuBar(PRBool aShow)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::IsMenuBarVisible(PRBool *aVisible)
{
return NS_OK;
}
void * nsWidget::GetNativeData(PRUint32 aDataType)
{
switch (aDataType) {
case NS_NATIVE_WIDGET:
case NS_NATIVE_WINDOW:
return (void *)mBaseWindow;
break;
case NS_NATIVE_DISPLAY:
return (void *)mDisplay;
break;
case NS_NATIVE_GRAPHIC:
// XXX implement this...
return (void *)mGC;
break;
default:
fprintf(stderr, "nsWidget::GetNativeData(%d) called with crap value.\n",
aDataType);
return NULL;
break;
}
}
NS_IMETHODIMP nsWidget::SetTitle(const nsString& aTitle)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetTooltips(PRUint32 aNumberOfTips,
nsRect* aTooltipAreas[])
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::UpdateTooltips(nsRect* aNewTips[])
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::RemoveTooltips()
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetFont(const nsFont &aFont)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::BeginResizingChildren(void)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::EndResizingChildren(void)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetColorMap(nsColorMap *aColorMap)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::Show(PRBool bState)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Show()\n"));
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("state is %d\n", bState));
if (bState) {
if (mIsToplevel) {
printf("Someone just used the show method on the toplevel window.\n");
}
if (mParentWidget) {
((nsWidget *)mParentWidget)->WidgetShow(this);
}
else {
if (mBaseWindow) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("Mapping window 0x%lx...\n", mBaseWindow));
XMapWindow(mDisplay, mBaseWindow);
}
}
mIsShown = PR_TRUE;
}
else {
if (mBaseWindow) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("Unmapping window 0x%lx...\n", mBaseWindow));
XUnmapWindow(mDisplay, mBaseWindow);
}
mIsShown = PR_FALSE;
}
return NS_OK;
}
NS_IMETHODIMP nsWidget::IsVisible(PRBool &aState)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetPreferredSize(PRInt32 aWidth, PRInt32 aHeight)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::Update()
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::Update()\n"));
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetBackgroundColor(const nscolor &aColor)
{
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("nsWidget::SetBackgroundColor()\n"));
nsBaseWidget::SetBackgroundColor(aColor);
mBackgroundPixel = xlib_rgb_xpixel_from_rgb(mBackground);
// set the window attrib
XSetWindowBackground(mDisplay, mBaseWindow, mBackgroundPixel);
return NS_OK;
}
NS_IMETHODIMP nsWidget::Scroll(PRInt32 aDx, PRInt32 aDy, nsRect *aClipRect)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::WidgetToScreen(const nsRect& aOldRect,
nsRect& aNewRect)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::ScreenToWidget(const nsRect& aOldRect,
nsRect& aNewRect)
{
return NS_OK;
}
NS_IMETHODIMP nsWidget::SetCursor(nsCursor aCursor)
{
return NS_OK;
}
nsIWidget *nsWidget::GetParent(void)
{
if (nsnull != mParentWidget) {
NS_ADDREF(mParentWidget);
}
return mParentWidget;
}
void nsWidget::CreateNative(Window aParent, nsRect aRect)
{
XSetWindowAttributes attr;
unsigned long attr_mask;
// on a window resize, we don't want to window contents to
// be discarded...
attr.bit_gravity = NorthWestGravity;
// make sure that we listen for events
attr.event_mask = ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask;
// set the default background color and border to that awful gray
attr.background_pixel = mBackgroundPixel;
attr.border_pixel = mBorderPixel;
// set the colormap
attr.colormap = xlib_rgb_get_cmap();
// here's what's in the struct
attr_mask = CWBitGravity | CWEventMask | CWBackPixel | CWBorderPixel;
// check to see if there was actually a colormap.
if (attr.colormap)
attr_mask |= CWColormap;
CreateNativeWindow(aParent, mBounds, attr, attr_mask);
CreateGC();
}
void nsWidget::CreateNativeWindow(Window aParent, nsRect aRect,
XSetWindowAttributes aAttr, unsigned long aMask)
{
int width;
int height;
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG,
("*** Warning: nsWidget::CreateNative falling back to sane default for widget type \"%s\"\n",
(const char *) nsAutoCString(mName)));
if (mName == "unnamed") {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG,
("What freaking widget is this, anyway?\n"));
}
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("Creating XWindow: x %d y %d w %d h %d\n",
aRect.x, aRect.y, aRect.width, aRect.height));
if (aRect.width <= 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** Fixing width...\n"));
width = 1;
}
else {
width = aRect.width;
}
if (aRect.height <= 0) {
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG, ("*** Fixing height...\n"));
height = 1;
}
else {
height = aRect.height;
}
mBaseWindow = XCreateWindow(mDisplay,
aParent,
aRect.x, aRect.y,
width, height,
0, // border width
mDepth, // depth
InputOutput, // class
mVisual, // visual
aMask,
&aAttr);
PR_LOG(XlibWidgetsLM, PR_LOG_DEBUG,
("nsWidget: Created window 0x%lx with parent 0x%lx %s\n",
mBaseWindow, aParent, (mIsToplevel ? "TopLevel" : "")));
// XXX when we stop getting lame values for this remove it.
// sometimes the dimensions have been corrected by the code above.
mBounds.height = height;
mBounds.width = width;
// add the callback for this
AddWindowCallback(mBaseWindow, this);
}
nsWidget *
nsWidget::GetWidgetForWindow(Window aWindow)
{
if (window_list == nsnull) {
return nsnull;
}
nsWindowKey *window_key = new nsWindowKey(aWindow);
nsWidget *retval = (nsWidget *)window_list->Get(window_key);
return retval;
}
void
nsWidget::AddWindowCallback(Window aWindow, nsWidget *aWidget)
{
// make sure that the list has been initialized
if (window_list == nsnull) {
window_list = new nsHashtable();
}
nsWindowKey *window_key = new nsWindowKey(aWindow);
window_list->Put(window_key, aWidget);
// add a new ref to this widget
NS_ADDREF(aWidget);
delete window_key;
}
void
nsWidget::DeleteWindowCallback(Window aWindow)
{
nsWindowKey *window_key = new nsWindowKey(aWindow);
nsWidget *widget = (nsWidget *)window_list->Get(window_key);
NS_RELEASE(widget);
window_list->Remove(window_key);
delete window_key;
}
PRBool
nsWidget::OnPaint(nsPaintEvent &event)
{
nsresult result = PR_FALSE;
if (mEventCallback) {
event.renderingContext = nsnull;
static NS_DEFINE_IID(kRenderingContextCID, NS_RENDERING_CONTEXT_CID);
static NS_DEFINE_IID(kRenderingContextIID, NS_IRENDERING_CONTEXT_IID);
if (NS_OK == nsComponentManager::CreateInstance(kRenderingContextCID,
nsnull,
kRenderingContextIID,
(void **)&event.renderingContext)) {
event.renderingContext->Init(mContext, this);
result = DispatchWindowEvent(&event);
NS_RELEASE(event.renderingContext);
}
else {
result = PR_FALSE;
}
}
return result;
}
PRBool nsWidget::DispatchMouseEvent(nsMouseEvent& aEvent)
{
PRBool result = PR_FALSE;
if (nsnull == mEventCallback && nsnull == mMouseListener) {
return result;
}
if (nsnull != mEventCallback) {
result = DispatchWindowEvent(&aEvent);
return result;
}
if (nsnull != mMouseListener) {
switch (aEvent.message) {
case NS_MOUSE_MOVE:
// XXX this isn't handled in gtk for some reason.
break;
case NS_MOUSE_LEFT_BUTTON_DOWN:
case NS_MOUSE_MIDDLE_BUTTON_DOWN:
case NS_MOUSE_RIGHT_BUTTON_DOWN:
result = ConvertStatus(mMouseListener->MousePressed(aEvent));
break;
case NS_MOUSE_LEFT_BUTTON_UP:
case NS_MOUSE_MIDDLE_BUTTON_UP:
case NS_MOUSE_RIGHT_BUTTON_UP:
result = ConvertStatus(mMouseListener->MouseReleased(aEvent));
result = ConvertStatus(mMouseListener->MouseClicked(aEvent));
break;
}
}
return result;
}
PRBool
nsWidget::OnResize(nsSizeEvent &event)
{
nsresult result = PR_FALSE;
if (mEventCallback) {
result = DispatchWindowEvent(&event);
}
return result;
}
PRBool nsWidget::DispatchWindowEvent(nsGUIEvent* event)
{
nsEventStatus status;
DispatchEvent(event, status);
return ConvertStatus(status);
}
NS_IMETHODIMP nsWidget::DispatchEvent(nsGUIEvent *event,
nsEventStatus &aStatus)
{
NS_ADDREF(event->widget);
if (nsnull != mMenuListener) {
if (NS_MENU_EVENT == event->eventStructType)
aStatus = mMenuListener->MenuSelected(NS_STATIC_CAST(nsMenuEvent&, *event));
}
aStatus = nsEventStatus_eIgnore;
if (nsnull != mEventCallback) {
aStatus = (*mEventCallback)(event);
}
// Dispatch to event listener if event was not consumed
if ((aStatus != nsEventStatus_eIgnore) && (nsnull != mEventListener)) {
aStatus = mEventListener->ProcessEvent(*event);
}
NS_RELEASE(event->widget);
return NS_OK;
}
PRBool nsWidget::ConvertStatus(nsEventStatus aStatus)
{
switch(aStatus) {
case nsEventStatus_eIgnore:
return(PR_FALSE);
case nsEventStatus_eConsumeNoDefault:
return(PR_TRUE);
case nsEventStatus_eConsumeDoDefault:
return(PR_FALSE);
default:
NS_ASSERTION(0, "Illegal nsEventStatus enumeration value");
break;
}
return(PR_FALSE);
}
void nsWidget::CreateGC(void)
{
mGC = XCreateGC(mDisplay, mBaseWindow, 0, NULL);
}
void nsWidget::WidgetPut(nsWidget *aWidget)
{
}
void nsWidget::WidgetMove(nsWidget *aWidget)
{
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("nsWidget::WidgetMove()\n"));
if (PR_TRUE == WidgetVisible(aWidget->mBounds)) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Widget is visible...\n"));
if (aWidget->mIsShown == PR_TRUE) {
XMoveWindow(aWidget->mDisplay, aWidget->mBaseWindow,
aWidget->mBounds.x,
aWidget->mBounds.y);
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Mapping window 0x%lx...\n", mBaseWindow));
XMapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
}
else {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Widget is not visible...\n"));
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Unmapping window 0x%lx...\n", mBaseWindow));
XUnmapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
}
void nsWidget::WidgetResize(nsWidget *aWidget)
{
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("nsWidget::WidgetResize()\n"));
// note that we do the resize before a map.
if (PR_TRUE == WidgetVisible(aWidget->mBounds)) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Widget is visible...\n"));
XResizeWindow(aWidget->mDisplay, aWidget->mBaseWindow,
aWidget->mBounds.width,
aWidget->mBounds.height);
if (aWidget->mIsShown == PR_TRUE) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Mapping window 0x%lx...\n", mBaseWindow));
XMapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
}
else {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Widget is not visible...\n"));
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Unmapping window 0x%lx...\n", mBaseWindow));
XUnmapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
}
void nsWidget::WidgetMoveResize(nsWidget *aWidget)
{
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("nsWidget::WidgetMoveResize()\n"));
if (PR_TRUE == WidgetVisible(aWidget->mBounds)) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Widget is visible...\n"));
XResizeWindow(aWidget->mDisplay,
aWidget->mBaseWindow,
aWidget->mBounds.width, aWidget->mBounds.height);
XMoveWindow(aWidget->mDisplay, aWidget->mBaseWindow,
aWidget->mBounds.x,
aWidget->mBounds.y);
if (aWidget->mIsShown == PR_TRUE) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Mapping window 0x%lx...\n", mBaseWindow));
XMapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
}
else {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Widget is not visible...\n"));
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Unmapping window 0x%lx...\n", mBaseWindow));
XUnmapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
}
void nsWidget::WidgetShow(nsWidget *aWidget)
{
if (PR_TRUE == WidgetVisible(aWidget->mBounds)) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Mapping window...\n"));
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Mapping window 0x%lx...\n", mBaseWindow));
XMapWindow(aWidget->mDisplay, aWidget->mBaseWindow);
}
else {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("Not Mapping window...\n"));
}
}
PRBool nsWidget::WidgetVisible(nsRect &aBounds)
{
nsRect mScrollArea;
mScrollArea.x = mScrollX;
mScrollArea.y = mScrollY;
mScrollArea.width = mBounds.width + mScrollX;
mScrollArea.height = mBounds.height + mScrollY;
if (mScrollArea.Intersects(aBounds)) {
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("nsWidget::WidgetVisible(): widget is visible\n"));
return PR_TRUE;
}
PR_LOG(XlibScrollingLM, PR_LOG_DEBUG, ("nsWidget::WidgetVisible(): widget is not visible\n"));
return PR_FALSE;
}