2010-06-03 20:56:36 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 11:12:37 +00: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/. */
|
2010-06-03 20:56:36 +00:00
|
|
|
|
|
|
|
#ifndef NSWINDOW_H_
|
|
|
|
#define NSWINDOW_H_
|
|
|
|
|
|
|
|
#include "nsBaseWidget.h"
|
|
|
|
#include "gfxPoint.h"
|
2012-06-29 08:32:21 +00:00
|
|
|
#include "nsIIdleServiceInternal.h"
|
2010-06-03 20:56:36 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
|
2012-10-01 20:01:35 +00:00
|
|
|
#ifdef MOZ_ANDROID_OMTC
|
2012-02-10 07:55:13 +00:00
|
|
|
#include "AndroidJavaWrappers.h"
|
|
|
|
#endif
|
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
class gfxASurface;
|
|
|
|
|
2012-04-19 17:49:31 +00:00
|
|
|
struct ANPEvent;
|
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
namespace mozilla {
|
|
|
|
class AndroidGeckoEvent;
|
|
|
|
class AndroidKeyEvent;
|
2012-03-14 04:15:11 +00:00
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
class CompositorParent;
|
2012-03-28 22:00:32 +00:00
|
|
|
class CompositorChild;
|
2012-07-31 00:42:26 +00:00
|
|
|
class LayerManager;
|
2012-03-14 04:15:11 +00:00
|
|
|
}
|
2010-06-03 20:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class nsWindow :
|
|
|
|
public nsBaseWidget
|
|
|
|
{
|
|
|
|
public:
|
2010-12-07 02:05:52 +00:00
|
|
|
using nsBaseWidget::GetLayerManager;
|
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
nsWindow();
|
|
|
|
virtual ~nsWindow();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
static void OnGlobalAndroidEvent(mozilla::AndroidGeckoEvent *ae);
|
2011-01-14 20:36:19 +00:00
|
|
|
static gfxIntSize GetAndroidScreenBounds();
|
2012-04-20 16:49:50 +00:00
|
|
|
static nsWindow* TopWindow();
|
2010-06-03 20:56:36 +00:00
|
|
|
|
|
|
|
nsWindow* FindWindowForPoint(const nsIntPoint& pt);
|
|
|
|
|
|
|
|
void OnAndroidEvent(mozilla::AndroidGeckoEvent *ae);
|
|
|
|
void OnDraw(mozilla::AndroidGeckoEvent *ae);
|
2012-01-25 00:31:33 +00:00
|
|
|
bool OnMultitouchEvent(mozilla::AndroidGeckoEvent *ae);
|
2012-10-02 20:18:21 +00:00
|
|
|
void OnNativeGestureEvent(mozilla::AndroidGeckoEvent *ae);
|
2012-06-15 22:34:22 +00:00
|
|
|
void OnMouseEvent(mozilla::AndroidGeckoEvent *ae);
|
2010-06-03 20:56:36 +00:00
|
|
|
void OnKeyEvent(mozilla::AndroidGeckoEvent *ae);
|
|
|
|
void OnIMEEvent(mozilla::AndroidGeckoEvent *ae);
|
|
|
|
|
|
|
|
void OnSizeChanged(const gfxIntSize& aSize);
|
|
|
|
|
|
|
|
void InitEvent(nsGUIEvent& event, nsIntPoint* aPoint = 0);
|
|
|
|
|
|
|
|
//
|
|
|
|
// nsIWidget
|
|
|
|
//
|
|
|
|
|
|
|
|
NS_IMETHOD Create(nsIWidget *aParent,
|
|
|
|
nsNativeWidget aNativeParent,
|
|
|
|
const nsIntRect &aRect,
|
2011-04-17 01:22:44 +00:00
|
|
|
nsDeviceContext *aContext,
|
2010-06-03 20:56:36 +00:00
|
|
|
nsWidgetInitData *aInitData);
|
|
|
|
NS_IMETHOD Destroy(void);
|
|
|
|
NS_IMETHOD ConfigureChildren(const nsTArray<nsIWidget::Configuration>&);
|
|
|
|
NS_IMETHOD SetParent(nsIWidget* aNewParent);
|
|
|
|
virtual nsIWidget *GetParent(void);
|
2010-10-07 17:28:27 +00:00
|
|
|
virtual float GetDPI();
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD Show(bool aState);
|
|
|
|
NS_IMETHOD SetModal(bool aModal);
|
2012-07-19 08:57:50 +00:00
|
|
|
virtual bool IsVisible() const;
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD ConstrainPosition(bool aAllowSlop,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t *aX,
|
|
|
|
int32_t *aY);
|
|
|
|
NS_IMETHOD Move(int32_t aX,
|
|
|
|
int32_t aY);
|
|
|
|
NS_IMETHOD Resize(int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aRepaint);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD Resize(int32_t aX,
|
|
|
|
int32_t aY,
|
|
|
|
int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aRepaint);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD SetZIndex(int32_t aZIndex);
|
2010-06-03 20:56:36 +00:00
|
|
|
NS_IMETHOD PlaceBehind(nsTopLevelWidgetZPlacement aPlacement,
|
|
|
|
nsIWidget *aWidget,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aActivate);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD SetSizeMode(int32_t aMode);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD Enable(bool aState);
|
2012-07-23 05:19:08 +00:00
|
|
|
virtual bool IsEnabled() const;
|
2011-12-24 03:52:21 +00:00
|
|
|
NS_IMETHOD Invalidate(const nsIntRect &aRect);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD SetFocus(bool aRaise = false);
|
2010-06-03 20:56:36 +00:00
|
|
|
NS_IMETHOD GetScreenBounds(nsIntRect &aRect);
|
|
|
|
virtual nsIntPoint WidgetToScreenOffset();
|
|
|
|
NS_IMETHOD DispatchEvent(nsGUIEvent *aEvent, nsEventStatus &aStatus);
|
|
|
|
nsEventStatus DispatchEvent(nsGUIEvent *aEvent);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD MakeFullScreen(bool aFullScreen);
|
2010-06-03 20:56:36 +00:00
|
|
|
NS_IMETHOD SetWindowClass(const nsAString& xulWinType);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHOD SetForegroundColor(const nscolor &aColor) { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
NS_IMETHOD SetBackgroundColor(const nscolor &aColor) { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
NS_IMETHOD SetCursor(nsCursor aCursor) { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
NS_IMETHOD SetCursor(imgIContainer* aCursor,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aHotspotX,
|
|
|
|
uint32_t aHotspotY) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD SetHasTransparentBackground(bool aTransparent) { return NS_OK; }
|
|
|
|
NS_IMETHOD GetHasTransparentBackground(bool& aTransparent) { aTransparent = false; return NS_OK; }
|
|
|
|
NS_IMETHOD HideWindowChrome(bool aShouldHide) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual void* GetNativeData(uint32_t aDataType);
|
2010-06-03 20:56:36 +00:00
|
|
|
NS_IMETHOD SetTitle(const nsAString& aTitle) { return NS_OK; }
|
|
|
|
NS_IMETHOD SetIcon(const nsAString& aIconSpec) { return NS_OK; }
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD EnableDragDrop(bool aEnable) { return NS_OK; }
|
|
|
|
NS_IMETHOD CaptureMouse(bool aCapture) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-06-03 20:56:36 +00:00
|
|
|
NS_IMETHOD CaptureRollupEvents(nsIRollupListener *aListener,
|
2012-10-26 13:15:22 +00:00
|
|
|
bool aDoCapture) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-06-03 20:56:36 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD GetAttention(int32_t aCycleCount) { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
NS_IMETHOD BeginResizeDrag(nsGUIEvent* aEvent, int32_t aHorizontal, int32_t aVertical) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-06-03 20:56:36 +00:00
|
|
|
|
2010-08-04 19:47:26 +00:00
|
|
|
NS_IMETHOD ResetInputState();
|
2011-11-27 11:51:52 +00:00
|
|
|
NS_IMETHOD_(void) SetInputContext(const InputContext& aContext,
|
|
|
|
const InputContextAction& aAction);
|
|
|
|
NS_IMETHOD_(InputContext) GetInputContext();
|
2010-08-04 19:47:26 +00:00
|
|
|
NS_IMETHOD CancelIMEComposition();
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD OnIMEFocusChange(bool aFocus);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD OnIMETextChange(uint32_t aStart, uint32_t aOldEnd, uint32_t aNewEnd);
|
2010-08-04 19:47:26 +00:00
|
|
|
NS_IMETHOD OnIMESelectionChange(void);
|
2010-09-24 03:28:15 +00:00
|
|
|
virtual nsIMEUpdatePreference GetIMEUpdatePreference();
|
2010-06-03 20:56:36 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
LayerManager* GetLayerManager (PLayersChild* aShadowManager = nullptr,
|
2012-07-18 16:31:40 +00:00
|
|
|
LayersBackend aBackendHint = mozilla::layers::LAYERS_NONE,
|
|
|
|
LayerManagerPersistence aPersistence = LAYER_MANAGER_CURRENT,
|
2012-07-30 14:20:58 +00:00
|
|
|
bool* aAllowRetaining = nullptr);
|
2010-06-03 20:56:36 +00:00
|
|
|
|
2010-09-18 11:28:50 +00:00
|
|
|
NS_IMETHOD ReparentNativeWidget(nsIWidget* aNewParent);
|
2011-11-15 03:12:14 +00:00
|
|
|
|
2012-10-01 20:01:35 +00:00
|
|
|
#ifdef MOZ_ANDROID_OMTC
|
2012-08-13 10:10:10 +00:00
|
|
|
virtual bool NeedsPaint();
|
2012-02-10 03:47:50 +00:00
|
|
|
virtual void DrawWindowUnderlay(LayerManager* aManager, nsIntRect aRect);
|
|
|
|
virtual void DrawWindowOverlay(LayerManager* aManager, nsIntRect aRect);
|
2012-03-14 04:15:11 +00:00
|
|
|
|
2012-03-28 22:00:32 +00:00
|
|
|
static void SetCompositor(mozilla::layers::CompositorParent* aCompositorParent,
|
2012-07-13 15:25:29 +00:00
|
|
|
mozilla::layers::CompositorChild* aCompositorChild);
|
2012-03-14 04:15:11 +00:00
|
|
|
static void ScheduleComposite();
|
|
|
|
static void SchedulePauseComposition();
|
2012-04-20 15:46:30 +00:00
|
|
|
static void ScheduleResumeComposition(int width, int height);
|
2012-10-25 16:23:47 +00:00
|
|
|
static float ComputeRenderIntegrity();
|
2012-04-17 06:04:05 +00:00
|
|
|
|
2012-08-29 05:48:43 +00:00
|
|
|
virtual bool WidgetPaintsBackground();
|
2011-12-21 19:05:23 +00:00
|
|
|
#endif
|
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
protected:
|
|
|
|
void BringToFront();
|
|
|
|
nsWindow *FindTopLevel();
|
2011-09-29 06:19:26 +00:00
|
|
|
bool DrawTo(gfxASurface *targetSurface);
|
2011-11-15 03:12:14 +00:00
|
|
|
bool DrawTo(gfxASurface *targetSurface, const nsIntRect &aRect);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsTopLevel();
|
2012-11-01 20:11:02 +00:00
|
|
|
void RemoveIMEComposition();
|
2010-06-03 20:56:36 +00:00
|
|
|
|
|
|
|
// Call this function when the users activity is the direct cause of an
|
|
|
|
// event (like a keypress or mouse click).
|
|
|
|
void UserActivity();
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsVisible;
|
2010-06-03 20:56:36 +00:00
|
|
|
nsTArray<nsWindow*> mChildren;
|
|
|
|
nsWindow* mParent;
|
2011-02-15 01:01:01 +00:00
|
|
|
nsWindow* mFocus;
|
2010-08-26 05:52:08 +00:00
|
|
|
|
2010-07-07 21:34:12 +00:00
|
|
|
double mStartDist;
|
2010-08-26 05:52:08 +00:00
|
|
|
double mLastDist;
|
2010-11-18 17:18:31 +00:00
|
|
|
|
2012-06-29 08:32:21 +00:00
|
|
|
nsCOMPtr<nsIIdleServiceInternal> mIdleService;
|
2010-08-26 05:52:08 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIMEComposing;
|
2012-11-01 20:11:02 +00:00
|
|
|
bool mIMEMaskSelectionUpdate, mIMEMaskTextUpdate;
|
2012-11-16 16:41:54 +00:00
|
|
|
int32_t mIMEMaskEventsCount; // Mask events when > 0
|
2010-08-21 00:07:26 +00:00
|
|
|
nsString mIMEComposingText;
|
2010-08-04 19:47:26 +00:00
|
|
|
nsAutoTArray<nsTextRange, 4> mIMERanges;
|
2010-06-03 20:56:36 +00:00
|
|
|
|
2011-11-27 11:51:52 +00:00
|
|
|
InputContext mInputContext;
|
2010-11-23 06:48:45 +00:00
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
static void DumpWindows();
|
|
|
|
static void DumpWindows(const nsTArray<nsWindow*>& wins, int indent = 0);
|
|
|
|
static void LogWindow(nsWindow *win, int index, int indent);
|
|
|
|
|
|
|
|
private:
|
2012-04-19 17:49:31 +00:00
|
|
|
void InitKeyEvent(nsKeyEvent& event, mozilla::AndroidGeckoEvent& key,
|
|
|
|
ANPEvent* pluginEvent);
|
2012-01-25 00:31:33 +00:00
|
|
|
bool DispatchMultitouchEvent(nsTouchEvent &event,
|
|
|
|
mozilla::AndroidGeckoEvent *ae);
|
|
|
|
void DispatchMotionEvent(nsInputEvent &event,
|
|
|
|
mozilla::AndroidGeckoEvent *ae,
|
|
|
|
const nsIntPoint &refPoint);
|
2012-08-22 15:56:38 +00:00
|
|
|
void DispatchGestureEvent(uint32_t msg, uint32_t direction, double delta,
|
|
|
|
const nsIntPoint &refPoint, uint64_t time);
|
2010-06-03 20:56:36 +00:00
|
|
|
void HandleSpecialKey(mozilla::AndroidGeckoEvent *ae);
|
2011-11-15 03:12:14 +00:00
|
|
|
void RedrawAll();
|
|
|
|
|
2012-10-01 20:01:35 +00:00
|
|
|
#ifdef MOZ_ANDROID_OMTC
|
2012-02-10 07:55:13 +00:00
|
|
|
mozilla::AndroidLayerRendererFrame mLayerRendererFrame;
|
2012-03-14 04:15:11 +00:00
|
|
|
|
|
|
|
static nsRefPtr<mozilla::layers::CompositorParent> sCompositorParent;
|
2012-03-28 22:00:32 +00:00
|
|
|
static nsRefPtr<mozilla::layers::CompositorChild> sCompositorChild;
|
|
|
|
static bool sCompositorPaused;
|
2012-02-10 07:55:13 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
#endif /* NSWINDOW_H_ */
|