2002-04-27 20:26:10 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=4:tabstop=4:
|
|
|
|
*/
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-07-26 02:05:10 +04:00
|
|
|
|
2001-12-07 08:23:56 +03:00
|
|
|
#ifndef __nsWindow_h__
|
2007-01-23 02:51:15 +03:00
|
|
|
#define __nsWindow_h__
|
2001-12-07 08:23:56 +03:00
|
|
|
|
2011-04-03 06:14:00 +04:00
|
|
|
#include "mozilla/ipc/SharedMemorySysV.h"
|
2010-09-24 06:54:52 +04:00
|
|
|
|
2005-11-29 23:12:29 +03:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
|
2001-12-04 19:58:04 +03:00
|
|
|
#include "mozcontainer.h"
|
2002-01-23 09:39:48 +03:00
|
|
|
#include "nsWeakReference.h"
|
2001-12-04 19:58:04 +03:00
|
|
|
|
2002-08-10 20:18:44 +04:00
|
|
|
#include "nsIDragService.h"
|
|
|
|
#include "nsITimer.h"
|
2011-10-14 22:11:22 +04:00
|
|
|
#include "nsGkAtoms.h"
|
2002-08-10 20:18:44 +04:00
|
|
|
|
2008-06-18 13:20:29 +04:00
|
|
|
#include "gfxASurface.h"
|
|
|
|
|
2008-10-19 05:13:27 +04:00
|
|
|
#include "nsBaseWidget.h"
|
|
|
|
#include "nsGUIEvent.h"
|
2009-01-03 10:37:52 +03:00
|
|
|
#include <gdk/gdk.h>
|
2002-08-10 20:18:44 +04:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2008-08-07 00:48:55 +04:00
|
|
|
#ifdef MOZ_X11
|
2002-09-02 09:11:10 +04:00
|
|
|
#include <gdk/gdkx.h>
|
2008-08-07 00:48:55 +04:00
|
|
|
#endif /* MOZ_X11 */
|
2002-01-12 10:14:54 +03:00
|
|
|
|
2002-10-14 12:43:35 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-05-29 05:18:45 +04:00
|
|
|
#include "mozilla/a11y/Accessible.h"
|
2002-10-14 12:43:35 +04:00
|
|
|
#endif
|
|
|
|
|
2010-03-20 15:00:55 +03:00
|
|
|
#include "nsGtkIMModule.h"
|
2002-09-26 10:20:01 +04:00
|
|
|
|
2013-08-12 03:15:10 +04:00
|
|
|
#undef LOG
|
2008-10-19 05:13:27 +04:00
|
|
|
#ifdef MOZ_LOGGING
|
|
|
|
|
|
|
|
// make sure that logging is enabled before including prlog.h
|
|
|
|
#define FORCE_PR_LOG
|
|
|
|
|
|
|
|
#include "prlog.h"
|
2009-01-22 07:15:34 +03:00
|
|
|
#include "nsTArray.h"
|
2008-10-19 05:13:27 +04:00
|
|
|
|
|
|
|
extern PRLogModuleInfo *gWidgetLog;
|
|
|
|
extern PRLogModuleInfo *gWidgetFocusLog;
|
2009-06-15 04:48:52 +04:00
|
|
|
extern PRLogModuleInfo *gWidgetDragLog;
|
2008-10-19 05:13:27 +04:00
|
|
|
extern PRLogModuleInfo *gWidgetDrawLog;
|
|
|
|
|
|
|
|
#define LOG(args) PR_LOG(gWidgetLog, 4, args)
|
|
|
|
#define LOGFOCUS(args) PR_LOG(gWidgetFocusLog, 4, args)
|
2009-06-15 04:48:52 +04:00
|
|
|
#define LOGDRAG(args) PR_LOG(gWidgetDragLog, 4, args)
|
2008-10-19 05:13:27 +04:00
|
|
|
#define LOGDRAW(args) PR_LOG(gWidgetDrawLog, 4, args)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define LOG(args)
|
|
|
|
#define LOGFOCUS(args)
|
2009-06-20 05:35:08 +04:00
|
|
|
#define LOGDRAG(args)
|
2008-10-19 05:13:27 +04:00
|
|
|
#define LOGDRAW(args)
|
|
|
|
|
|
|
|
#endif /* MOZ_LOGGING */
|
|
|
|
|
2012-04-17 05:00:26 +04:00
|
|
|
class nsDragService;
|
2010-09-24 06:54:52 +04:00
|
|
|
#if defined(MOZ_X11) && defined(MOZ_HAVE_SHAREDMEMORYSYSV)
|
|
|
|
# define MOZ_HAVE_SHMIMAGE
|
|
|
|
|
2010-09-24 05:00:06 +04:00
|
|
|
class nsShmImage;
|
2010-09-24 06:54:52 +04:00
|
|
|
#endif
|
2008-10-19 05:13:27 +04:00
|
|
|
|
|
|
|
class nsWindow : public nsBaseWidget, public nsSupportsWeakReference
|
2006-03-14 09:07:54 +03:00
|
|
|
{
|
2002-04-27 20:26:10 +04:00
|
|
|
public:
|
|
|
|
nsWindow();
|
|
|
|
virtual ~nsWindow();
|
|
|
|
|
2003-07-02 23:27:38 +04:00
|
|
|
static void ReleaseGlobals();
|
|
|
|
|
2002-04-27 20:26:10 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2008-10-19 05:13:27 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void CommonCreate(nsIWidget *aParent, bool aListenForResizes);
|
2008-10-19 05:13:27 +04:00
|
|
|
|
|
|
|
virtual nsresult DispatchEvent(nsGUIEvent *aEvent, nsEventStatus &aStatus);
|
|
|
|
|
|
|
|
// called when we are destroyed
|
|
|
|
void OnDestroy(void);
|
|
|
|
|
|
|
|
// called to check and see if a widget's dimensions are sane
|
2011-09-29 10:19:26 +04:00
|
|
|
bool AreBoundsSane(void);
|
2002-04-27 20:26:10 +04:00
|
|
|
|
|
|
|
// nsIWidget
|
|
|
|
NS_IMETHOD Create(nsIWidget *aParent,
|
2009-09-24 10:18:10 +04:00
|
|
|
nsNativeWidget aNativeParent,
|
2009-01-15 06:27:09 +03:00
|
|
|
const nsIntRect &aRect,
|
2011-04-17 05:22:44 +04:00
|
|
|
nsDeviceContext *aContext,
|
2002-04-27 20:26:10 +04:00
|
|
|
nsWidgetInitData *aInitData);
|
|
|
|
NS_IMETHOD Destroy(void);
|
2008-10-19 05:13:27 +04:00
|
|
|
virtual nsIWidget *GetParent();
|
2010-08-13 13:57:55 +04:00
|
|
|
virtual float GetDPI();
|
2008-10-19 05:13:27 +04:00
|
|
|
virtual nsresult SetParent(nsIWidget* aNewParent);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD SetModal(bool aModal);
|
2012-07-19 12:57:50 +04:00
|
|
|
virtual bool IsVisible() const;
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD ConstrainPosition(bool aAllowSlop,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t *aX,
|
|
|
|
int32_t *aY);
|
2012-07-31 04:43:29 +04:00
|
|
|
virtual void SetSizeConstraints(const SizeConstraints& aConstraints);
|
2012-12-12 13:57:38 +04:00
|
|
|
NS_IMETHOD Move(double aX,
|
|
|
|
double aY);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD Show (bool aState);
|
2012-12-12 13:57:38 +04:00
|
|
|
NS_IMETHOD Resize (double aWidth,
|
|
|
|
double aHeight,
|
|
|
|
bool aRepaint);
|
|
|
|
NS_IMETHOD Resize (double aX,
|
|
|
|
double aY,
|
|
|
|
double aWidth,
|
|
|
|
double aHeight,
|
|
|
|
bool aRepaint);
|
2012-07-23 09:19:08 +04:00
|
|
|
virtual bool IsEnabled() const;
|
2008-10-19 05:13:27 +04:00
|
|
|
|
|
|
|
|
2003-10-07 05:19:51 +04:00
|
|
|
NS_IMETHOD PlaceBehind(nsTopLevelWidgetZPlacement aPlacement,
|
|
|
|
nsIWidget *aWidget,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aActivate);
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD SetZIndex(int32_t aZIndex);
|
|
|
|
NS_IMETHOD SetSizeMode(int32_t aMode);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD Enable(bool aState);
|
|
|
|
NS_IMETHOD SetFocus(bool aRaise = false);
|
2009-01-15 06:27:09 +03:00
|
|
|
NS_IMETHOD GetScreenBounds(nsIntRect &aRect);
|
2011-12-02 01:35:42 +04:00
|
|
|
NS_IMETHOD GetClientBounds(nsIntRect &aRect);
|
|
|
|
virtual nsIntPoint GetClientOffset();
|
2002-04-27 20:26:10 +04:00
|
|
|
NS_IMETHOD SetForegroundColor(const nscolor &aColor);
|
|
|
|
NS_IMETHOD SetBackgroundColor(const nscolor &aColor);
|
|
|
|
NS_IMETHOD SetCursor(nsCursor aCursor);
|
2005-07-01 08:29:42 +04:00
|
|
|
NS_IMETHOD SetCursor(imgIContainer* aCursor,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aHotspotX, uint32_t aHotspotY);
|
2011-12-24 07:52:21 +04:00
|
|
|
NS_IMETHOD Invalidate(const nsIntRect &aRect);
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual void* GetNativeData(uint32_t aDataType);
|
2004-04-19 03:18:23 +04:00
|
|
|
NS_IMETHOD SetTitle(const nsAString& aTitle);
|
2002-11-16 04:22:10 +03:00
|
|
|
NS_IMETHOD SetIcon(const nsAString& aIconSpec);
|
2006-07-19 16:56:40 +04:00
|
|
|
NS_IMETHOD SetWindowClass(const nsAString& xulWinType);
|
2009-02-19 03:11:49 +03:00
|
|
|
virtual nsIntPoint WidgetToScreenOffset();
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD EnableDragDrop(bool aEnable);
|
|
|
|
NS_IMETHOD CaptureMouse(bool aCapture);
|
2002-04-27 20:26:10 +04:00
|
|
|
NS_IMETHOD CaptureRollupEvents(nsIRollupListener *aListener,
|
2012-10-26 17:15:22 +04:00
|
|
|
bool aDoCapture);
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD GetAttention(int32_t aCycleCount);
|
2009-04-22 03:53:52 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool HasPendingInputEvent();
|
2009-04-22 03:53:52 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD MakeFullScreen(bool aFullScreen);
|
|
|
|
NS_IMETHOD HideWindowChrome(bool aShouldHide);
|
2002-04-27 20:26:10 +04:00
|
|
|
|
2012-02-02 06:12:26 +04:00
|
|
|
/**
|
2012-02-14 00:19:59 +04:00
|
|
|
* GetLastUserInputTime returns a timestamp for the most recent user input
|
|
|
|
* event. This is intended for pointer grab requests (including drags).
|
2012-02-02 06:12:26 +04:00
|
|
|
*/
|
2012-02-14 00:19:59 +04:00
|
|
|
static guint32 GetLastUserInputTime();
|
2012-02-02 06:12:26 +04:00
|
|
|
|
2010-07-27 17:38:04 +04:00
|
|
|
// utility method, -1 if no change should be made, otherwise returns a
|
|
|
|
// value that can be passed to gdk_window_set_decorations
|
2003-05-01 06:32:24 +04:00
|
|
|
gint ConvertBorderStyles(nsBorderStyle aStyle);
|
2002-04-27 20:26:10 +04:00
|
|
|
|
|
|
|
// event callbacks
|
2011-09-23 00:58:07 +04:00
|
|
|
#if defined(MOZ_WIDGET_GTK2)
|
|
|
|
gboolean OnExposeEvent(GdkEventExpose *aEvent);
|
|
|
|
#else
|
|
|
|
gboolean OnExposeEvent(cairo_t *cr);
|
|
|
|
#endif
|
2002-04-27 20:26:10 +04:00
|
|
|
gboolean OnConfigureEvent(GtkWidget *aWidget,
|
|
|
|
GdkEventConfigure *aEvent);
|
2012-10-23 02:33:30 +04:00
|
|
|
void OnContainerUnrealize();
|
|
|
|
void OnSizeAllocate(GtkAllocation *aAllocation);
|
|
|
|
void OnDeleteEvent();
|
|
|
|
void OnEnterNotifyEvent(GdkEventCrossing *aEvent);
|
|
|
|
void OnLeaveNotifyEvent(GdkEventCrossing *aEvent);
|
|
|
|
void OnMotionNotifyEvent(GdkEventMotion *aEvent);
|
|
|
|
void OnButtonPressEvent(GdkEventButton *aEvent);
|
|
|
|
void OnButtonReleaseEvent(GdkEventButton *aEvent);
|
|
|
|
void OnContainerFocusInEvent(GdkEventFocus *aEvent);
|
|
|
|
void OnContainerFocusOutEvent(GdkEventFocus *aEvent);
|
|
|
|
gboolean OnKeyPressEvent(GdkEventKey *aEvent);
|
|
|
|
gboolean OnKeyReleaseEvent(GdkEventKey *aEvent);
|
|
|
|
void OnScrollEvent(GdkEventScroll *aEvent);
|
|
|
|
void OnVisibilityNotifyEvent(GdkEventVisibility *aEvent);
|
2002-04-30 23:03:12 +04:00
|
|
|
void OnWindowStateEvent(GtkWidget *aWidget,
|
|
|
|
GdkEventWindowState *aEvent);
|
2002-08-10 21:07:40 +04:00
|
|
|
void OnDragDataReceivedEvent(GtkWidget *aWidget,
|
|
|
|
GdkDragContext *aDragContext,
|
|
|
|
gint aX,
|
|
|
|
gint aY,
|
|
|
|
GtkSelectionData*aSelectionData,
|
|
|
|
guint aInfo,
|
|
|
|
guint aTime,
|
|
|
|
gpointer aData);
|
|
|
|
|
2013-07-09 08:21:05 +04:00
|
|
|
#if defined(MOZ_WIDGET_GTK2)
|
|
|
|
mozilla::TemporaryRef<mozilla::gfx::DrawTarget> StartRemoteDrawing() MOZ_OVERRIDE;
|
|
|
|
#endif
|
|
|
|
|
2012-02-02 06:12:02 +04:00
|
|
|
private:
|
2012-08-22 19:56:38 +04:00
|
|
|
void NativeResize(int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aRepaint);
|
2002-04-27 20:26:10 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void NativeResize(int32_t aX,
|
|
|
|
int32_t aY,
|
|
|
|
int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aRepaint);
|
2002-04-27 20:26:10 +04:00
|
|
|
|
2012-02-02 06:12:02 +04:00
|
|
|
void NativeShow (bool aAction);
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetHasMappedToplevel(bool aState);
|
2009-11-02 05:03:12 +03:00
|
|
|
nsIntSize GetSafeWindowSize(nsIntSize aSize);
|
2002-04-27 20:26:10 +04:00
|
|
|
|
|
|
|
void EnsureGrabs (void);
|
2012-02-02 06:12:26 +04:00
|
|
|
void GrabPointer (guint32 aTime);
|
2002-04-27 20:26:10 +04:00
|
|
|
void ReleaseGrabs (void);
|
2003-02-17 18:36:37 +03:00
|
|
|
|
2012-02-02 06:12:02 +04:00
|
|
|
public:
|
2003-09-16 05:44:41 +04:00
|
|
|
enum PluginType {
|
|
|
|
PluginType_NONE = 0, /* do not have any plugin */
|
|
|
|
PluginType_XEMBED, /* the plugin support xembed */
|
|
|
|
PluginType_NONXEMBED /* the plugin does not support xembed */
|
|
|
|
};
|
|
|
|
|
|
|
|
void SetPluginType(PluginType aPluginType);
|
2008-08-07 00:48:55 +04:00
|
|
|
#ifdef MOZ_X11
|
2003-02-17 18:36:37 +03:00
|
|
|
void SetNonXEmbedPluginFocus(void);
|
|
|
|
void LoseNonXEmbedPluginFocus(void);
|
2008-08-07 00:48:55 +04:00
|
|
|
#endif /* MOZ_X11 */
|
2002-04-27 20:26:10 +04:00
|
|
|
|
2004-09-17 10:27:01 +04:00
|
|
|
void ThemeChanged(void);
|
|
|
|
|
2008-08-07 00:48:55 +04:00
|
|
|
#ifdef MOZ_X11
|
2003-02-17 21:50:01 +03:00
|
|
|
Window mOldFocusWindow;
|
2008-08-07 00:48:55 +04:00
|
|
|
#endif /* MOZ_X11 */
|
2003-02-17 21:50:01 +03:00
|
|
|
|
2010-03-24 06:37:06 +03:00
|
|
|
static guint32 sLastButtonPressTime;
|
2002-09-26 10:20:01 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD BeginResizeDrag(nsGUIEvent* aEvent, int32_t aHorizontal, int32_t aVertical);
|
2010-07-17 12:11:54 +04:00
|
|
|
NS_IMETHOD BeginMoveDrag(nsMouseEvent* aEvent);
|
2007-12-11 13:08:35 +03:00
|
|
|
|
2010-03-19 07:21:16 +03:00
|
|
|
MozContainer* GetMozContainer() { return mContainer; }
|
2012-04-19 10:18:31 +04:00
|
|
|
// GetMozContainerWidget returns the MozContainer even for undestroyed
|
|
|
|
// descendant windows
|
|
|
|
GtkWidget* GetMozContainerWidget();
|
2010-03-19 07:21:16 +03:00
|
|
|
GdkWindow* GetGdkWindow() { return mGdkWindow; }
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsDestroyed() { return mIsDestroyed; }
|
2010-03-19 07:21:16 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void DispatchDragEvent(uint32_t aMsg,
|
2012-04-17 05:00:25 +04:00
|
|
|
const nsIntPoint& aRefPoint,
|
|
|
|
guint aTime);
|
2012-04-19 10:18:31 +04:00
|
|
|
static void UpdateDragStatus (GdkDragContext *aDragContext,
|
|
|
|
nsIDragService *aDragService);
|
2010-03-19 07:21:16 +03:00
|
|
|
// If this dispatched the keydown event actually, this returns TRUE,
|
|
|
|
// otherwise, FALSE.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool DispatchKeyDownEvent(GdkEventKey *aEvent,
|
|
|
|
bool *aIsCancelled);
|
2006-03-14 09:07:54 +03:00
|
|
|
|
2013-03-06 10:14:34 +04:00
|
|
|
NS_IMETHOD NotifyIME(NotificationToIME aNotification) MOZ_OVERRIDE;
|
2011-11-27 15:51:52 +04:00
|
|
|
NS_IMETHOD_(void) SetInputContext(const InputContext& aContext,
|
|
|
|
const InputContextAction& aAction);
|
|
|
|
NS_IMETHOD_(InputContext) GetInputContext();
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD GetToggledKeyState(uint32_t aKeyCode, bool* aLEDState);
|
2006-03-14 09:07:54 +03:00
|
|
|
|
2012-10-03 02:37:06 +04:00
|
|
|
// These methods are for toplevel windows only.
|
|
|
|
void ResizeTransparencyBitmap();
|
|
|
|
void ApplyTransparencyBitmap();
|
|
|
|
void ClearTransparencyBitmap();
|
|
|
|
|
2008-08-13 04:44:14 +04:00
|
|
|
virtual void SetTransparencyMode(nsTransparencyMode aMode);
|
|
|
|
virtual nsTransparencyMode GetTransparencyMode();
|
2009-07-22 04:44:55 +04:00
|
|
|
virtual nsresult ConfigureChildren(const nsTArray<Configuration>& aConfigurations);
|
2009-01-15 06:27:09 +03:00
|
|
|
nsresult UpdateTranslucentWindowAlphaInternal(const nsIntRect& aRect,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint8_t* aAlphas, int32_t aStride);
|
2004-07-24 16:42:32 +04:00
|
|
|
|
2011-09-23 00:58:07 +04:00
|
|
|
#if defined(MOZ_WIDGET_GTK2)
|
2005-11-29 23:12:29 +03:00
|
|
|
gfxASurface *GetThebesSurface();
|
|
|
|
|
2008-06-18 13:20:29 +04:00
|
|
|
static already_AddRefed<gfxASurface> GetSurfaceForGdkDrawable(GdkDrawable* aDrawable,
|
2009-01-15 06:27:09 +03:00
|
|
|
const nsIntSize& aSize);
|
2011-09-23 00:58:07 +04:00
|
|
|
#else
|
|
|
|
gfxASurface *GetThebesSurface(cairo_t *cr);
|
|
|
|
#endif
|
2010-09-18 15:28:50 +04:00
|
|
|
NS_IMETHOD ReparentNativeWidget(nsIWidget* aNewParent);
|
2008-06-18 13:20:29 +04:00
|
|
|
|
2012-04-12 01:55:21 +04:00
|
|
|
virtual nsresult SynthesizeNativeMouseEvent(nsIntPoint aPoint,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aNativeMessage,
|
|
|
|
uint32_t aModifierFlags);
|
2012-04-12 01:55:21 +04:00
|
|
|
|
|
|
|
virtual nsresult SynthesizeNativeMouseMove(nsIntPoint aPoint)
|
|
|
|
{ return SynthesizeNativeMouseEvent(aPoint, GDK_MOTION_NOTIFY, 0); }
|
|
|
|
|
2008-10-19 05:13:27 +04:00
|
|
|
protected:
|
2012-10-23 02:46:45 +04:00
|
|
|
// event handling code
|
|
|
|
void DispatchActivateEvent(void);
|
|
|
|
void DispatchDeactivateEvent(void);
|
|
|
|
void DispatchResized(int32_t aWidth, int32_t aHeight);
|
|
|
|
|
2010-09-18 15:28:50 +04:00
|
|
|
// Helper for SetParent and ReparentNativeWidget.
|
|
|
|
void ReparentNativeWidgetInternal(nsIWidget* aNewParent,
|
|
|
|
GtkWidget* aNewContainer,
|
|
|
|
GdkWindow* aNewParentWindow,
|
|
|
|
GtkWidget* aOldContainer);
|
2008-10-19 05:13:27 +04:00
|
|
|
nsCOMPtr<nsIWidget> mParent;
|
|
|
|
// Is this a toplevel window?
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsTopLevel;
|
2008-10-19 05:13:27 +04:00
|
|
|
// Has this widget been destroyed yet?
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsDestroyed;
|
2008-10-19 05:13:27 +04:00
|
|
|
|
|
|
|
// This is a flag that tracks if we need to resize a widget or
|
|
|
|
// window when we show it.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mNeedsResize;
|
2008-10-19 05:13:27 +04:00
|
|
|
// This is a flag that tracks if we need to move a widget or
|
|
|
|
// window when we show it.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mNeedsMove;
|
2008-10-19 05:13:27 +04:00
|
|
|
// Should we send resize events on all resizes?
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mListenForResizes;
|
2008-10-19 05:13:27 +04:00
|
|
|
// This flag tracks if we're hidden or shown.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsShown;
|
|
|
|
bool mNeedsShow;
|
2008-10-19 05:13:27 +04:00
|
|
|
// is this widget enabled?
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mEnabled;
|
2008-10-19 05:13:27 +04:00
|
|
|
// has the native window for this been created yet?
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mCreated;
|
2008-10-19 05:13:27 +04:00
|
|
|
|
2002-04-27 20:26:10 +04:00
|
|
|
private:
|
2009-11-11 00:57:25 +03:00
|
|
|
void DestroyChildWindows();
|
2012-11-07 01:50:37 +04:00
|
|
|
GtkWidget *GetToplevelWidget();
|
2009-02-20 05:07:08 +03:00
|
|
|
nsWindow *GetContainerWindow();
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetUrgencyHint(GtkWidget *top_window, bool state);
|
2002-09-02 09:11:10 +04:00
|
|
|
void *SetupPluginPort(void);
|
2002-11-16 04:22:10 +03:00
|
|
|
void SetDefaultIcon(void);
|
2007-12-14 10:00:44 +03:00
|
|
|
void InitButtonEvent(nsMouseEvent &aEvent, GdkEventButton *aGdkEvent);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool DispatchCommandEvent(nsIAtom* aCommand);
|
2012-08-22 19:56:38 +04:00
|
|
|
bool DispatchContentCommandEvent(int32_t aMsg);
|
2009-12-14 00:01:33 +03:00
|
|
|
void SetWindowClipRegion(const nsTArray<nsIntRect>& aRects,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aIntersectWithExisting);
|
2012-10-26 17:15:22 +04:00
|
|
|
bool CheckForRollup(gdouble aMouseX, gdouble aMouseY,
|
|
|
|
bool aIsWheel, bool aAlwaysRollup);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetDragInfo(nsMouseEvent* aMouseEvent,
|
2010-07-17 12:11:54 +04:00
|
|
|
GdkWindow** aWindow, gint* aButton,
|
|
|
|
gint* aRootX, gint* aRootY);
|
2011-01-22 00:45:23 +03:00
|
|
|
void ClearCachedResources();
|
2002-04-27 20:26:10 +04:00
|
|
|
|
|
|
|
GtkWidget *mShell;
|
|
|
|
MozContainer *mContainer;
|
2009-07-27 05:39:36 +04:00
|
|
|
GdkWindow *mGdkWindow;
|
2002-04-27 20:26:10 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mHasMappedToplevel : 1,
|
2009-11-02 05:03:12 +03:00
|
|
|
mIsFullyObscured : 1,
|
2011-02-16 23:10:16 +03:00
|
|
|
mRetryPointerGrab : 1;
|
2012-08-15 22:52:42 +04:00
|
|
|
nsSizeMode mSizeState;
|
2003-09-16 05:44:41 +04:00
|
|
|
PluginType mPluginType;
|
2002-05-08 11:42:34 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mTransparencyBitmapWidth;
|
|
|
|
int32_t mTransparencyBitmapHeight;
|
2006-10-16 16:13:54 +04:00
|
|
|
|
2010-09-24 06:54:52 +04:00
|
|
|
#ifdef MOZ_HAVE_SHMIMAGE
|
2010-09-24 05:00:06 +04:00
|
|
|
// If we're using xshm rendering, mThebesSurface wraps mShmImage
|
|
|
|
nsRefPtr<nsShmImage> mShmImage;
|
|
|
|
#endif
|
2005-11-29 23:12:29 +03:00
|
|
|
nsRefPtr<gfxASurface> mThebesSurface;
|
|
|
|
|
2002-05-08 11:42:34 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-11-18 06:01:44 +04:00
|
|
|
nsRefPtr<mozilla::a11y::Accessible> mRootAccessible;
|
2010-05-12 10:47:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Request to create the accessible for this window if it is top level.
|
|
|
|
*/
|
2003-04-23 09:28:41 +04:00
|
|
|
void CreateRootAccessible();
|
2010-05-12 10:47:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch accessible event for the top level window accessible.
|
|
|
|
*
|
|
|
|
* @param aEventType [in] the accessible event type to dispatch
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
void DispatchEventToRootAccessible(uint32_t aEventType);
|
2010-05-12 10:47:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch accessible window activate event for the top level window
|
|
|
|
* accessible.
|
|
|
|
*/
|
2008-10-19 05:13:27 +04:00
|
|
|
void DispatchActivateEventAccessible();
|
2010-05-12 10:47:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch accessible window deactivate event for the top level window
|
|
|
|
* accessible.
|
|
|
|
*/
|
2008-10-19 05:13:27 +04:00
|
|
|
void DispatchDeactivateEventAccessible();
|
2011-03-26 19:06:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch accessible window maximize event for the top level window
|
|
|
|
* accessible.
|
|
|
|
*/
|
|
|
|
void DispatchMaximizeEventAccessible();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch accessible window minize event for the top level window
|
|
|
|
* accessible.
|
|
|
|
*/
|
|
|
|
void DispatchMinimizeEventAccessible();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch accessible window restore event for the top level window
|
|
|
|
* accessible.
|
|
|
|
*/
|
|
|
|
void DispatchRestoreEventAccessible();
|
2002-05-08 11:42:34 +04:00
|
|
|
#endif
|
2002-08-10 20:18:44 +04:00
|
|
|
|
2002-08-10 22:07:20 +04:00
|
|
|
// The cursor cache
|
2003-05-03 02:23:55 +04:00
|
|
|
static GdkCursor *gsGtkCursorCache[eCursorCount];
|
2002-08-10 22:07:20 +04:00
|
|
|
|
2004-07-24 16:42:32 +04:00
|
|
|
// Transparency
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsTransparent;
|
2004-07-24 16:42:32 +04:00
|
|
|
// This bitmap tracks which pixels are transparent. We don't support
|
|
|
|
// full translucency at this time; each pixel is either fully opaque
|
|
|
|
// or fully transparent.
|
|
|
|
gchar* mTransparencyBitmap;
|
|
|
|
|
2002-08-10 21:07:40 +04:00
|
|
|
// all of our DND stuff
|
2008-08-27 16:07:27 +04:00
|
|
|
void InitDragEvent (nsDragEvent &aEvent);
|
2002-08-10 20:18:44 +04:00
|
|
|
|
2008-12-12 02:55:15 +03:00
|
|
|
float mLastMotionPressure;
|
2002-08-10 20:18:44 +04:00
|
|
|
|
2009-08-27 04:09:47 +04:00
|
|
|
// Remember the last sizemode so that we can restore it when
|
|
|
|
// leaving fullscreen
|
|
|
|
nsSizeMode mLastSizeMode;
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool DragInProgress(void);
|
2003-12-03 04:50:50 +03:00
|
|
|
|
2010-03-24 06:37:06 +03:00
|
|
|
void DispatchMissedButtonReleases(GdkEventCrossing *aGdkEvent);
|
|
|
|
|
2012-09-24 03:22:28 +04:00
|
|
|
// nsBaseWidget
|
2013-04-24 22:42:40 +04:00
|
|
|
virtual LayerManager* GetLayerManager(PLayerTransactionChild* aShadowManager = nullptr,
|
2012-09-24 03:22:28 +04:00
|
|
|
LayersBackend aBackendHint = mozilla::layers::LAYERS_NONE,
|
|
|
|
LayerManagerPersistence aPersistence = LAYER_MANAGER_CURRENT,
|
|
|
|
bool* aAllowRetaining = nullptr) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
void CleanLayerManagerRecursive();
|
|
|
|
|
2010-03-19 07:21:16 +03:00
|
|
|
/**
|
|
|
|
* |mIMModule| takes all IME related stuff.
|
|
|
|
*
|
|
|
|
* This is owned by the top-level nsWindow or the topmost child
|
|
|
|
* nsWindow embedded in a non-Gecko widget.
|
|
|
|
*
|
|
|
|
* The instance is created when the top level widget is created. And when
|
|
|
|
* the widget is destroyed, it's released. All child windows refer its
|
|
|
|
* ancestor widget's instance. So, one set of IM contexts is created for
|
|
|
|
* all windows in a hierarchy. If the children are released after the top
|
|
|
|
* level window is released, the children still have a valid pointer,
|
|
|
|
* however, IME doesn't work at that time.
|
|
|
|
*/
|
|
|
|
nsRefPtr<nsGtkIMModule> mIMModule;
|
2001-07-26 02:05:10 +04:00
|
|
|
};
|
2001-12-07 08:23:56 +03:00
|
|
|
|
|
|
|
class nsChildWindow : public nsWindow {
|
2002-04-27 20:26:10 +04:00
|
|
|
public:
|
|
|
|
nsChildWindow();
|
|
|
|
~nsChildWindow();
|
2001-12-07 08:23:56 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __nsWindow_h__ */
|