2010-06-04 00:56:36 +04:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
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/. */
|
2010-06-04 00:56:36 +04:00
|
|
|
|
|
|
|
#ifndef NSWINDOW_H_
|
|
|
|
#define NSWINDOW_H_
|
|
|
|
|
|
|
|
#include "nsBaseWidget.h"
|
|
|
|
#include "gfxPoint.h"
|
2012-06-29 12:32:21 +04:00
|
|
|
#include "nsIIdleServiceInternal.h"
|
2010-06-04 00:56:36 +04:00
|
|
|
#include "nsTArray.h"
|
|
|
|
|
2012-10-02 00:01:35 +04:00
|
|
|
#ifdef MOZ_ANDROID_OMTC
|
2012-02-10 11:55:13 +04:00
|
|
|
#include "AndroidJavaWrappers.h"
|
|
|
|
#endif
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
class gfxASurface;
|
|
|
|
|
2012-04-19 21:49:31 +04:00
|
|
|
struct ANPEvent;
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
namespace mozilla {
|
|
|
|
class AndroidGeckoEvent;
|
|
|
|
class AndroidKeyEvent;
|
2012-03-14 08:15:11 +04:00
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
class CompositorParent;
|
2012-03-29 02:00:32 +04:00
|
|
|
class CompositorChild;
|
2012-07-31 04:42:26 +04:00
|
|
|
class LayerManager;
|
2012-03-14 08:15:11 +04:00
|
|
|
}
|
2010-06-04 00:56:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
class nsWindow :
|
|
|
|
public nsBaseWidget
|
|
|
|
{
|
|
|
|
public:
|
2010-12-07 05:05:52 +03:00
|
|
|
using nsBaseWidget::GetLayerManager;
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
nsWindow();
|
|
|
|
virtual ~nsWindow();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
static void OnGlobalAndroidEvent(mozilla::AndroidGeckoEvent *ae);
|
2011-01-14 23:36:19 +03:00
|
|
|
static gfxIntSize GetAndroidScreenBounds();
|
2012-04-20 20:49:50 +04:00
|
|
|
static nsWindow* TopWindow();
|
2010-06-04 00:56:36 +04:00
|
|
|
|
|
|
|
nsWindow* FindWindowForPoint(const nsIntPoint& pt);
|
|
|
|
|
|
|
|
void OnAndroidEvent(mozilla::AndroidGeckoEvent *ae);
|
|
|
|
void OnDraw(mozilla::AndroidGeckoEvent *ae);
|
2012-01-25 04:31:33 +04:00
|
|
|
bool OnMultitouchEvent(mozilla::AndroidGeckoEvent *ae);
|
2012-10-03 00:18:21 +04:00
|
|
|
void OnNativeGestureEvent(mozilla::AndroidGeckoEvent *ae);
|
2012-06-16 02:34:22 +04:00
|
|
|
void OnMouseEvent(mozilla::AndroidGeckoEvent *ae);
|
2010-06-04 00:56:36 +04: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 05:22:44 +04:00
|
|
|
nsDeviceContext *aContext,
|
2010-06-04 00:56:36 +04: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 21:28:27 +04:00
|
|
|
virtual float GetDPI();
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD Show(bool aState);
|
|
|
|
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-12-12 13:57:38 +04:00
|
|
|
NS_IMETHOD Move(double aX,
|
|
|
|
double aY);
|
|
|
|
NS_IMETHOD Resize(double aWidth,
|
|
|
|
double aHeight,
|
|
|
|
bool aRepaint);
|
|
|
|
NS_IMETHOD Resize(double aX,
|
|
|
|
double aY,
|
|
|
|
double aWidth,
|
|
|
|
double aHeight,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aRepaint);
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD SetZIndex(int32_t aZIndex);
|
2010-06-04 00:56:36 +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 SetSizeMode(int32_t aMode);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD Enable(bool aState);
|
2012-07-23 09:19:08 +04:00
|
|
|
virtual bool IsEnabled() const;
|
2011-12-24 07:52:21 +04:00
|
|
|
NS_IMETHOD Invalidate(const nsIntRect &aRect);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD SetFocus(bool aRaise = false);
|
2010-06-04 00:56:36 +04:00
|
|
|
NS_IMETHOD GetScreenBounds(nsIntRect &aRect);
|
|
|
|
virtual nsIntPoint WidgetToScreenOffset();
|
|
|
|
NS_IMETHOD DispatchEvent(nsGUIEvent *aEvent, nsEventStatus &aStatus);
|
|
|
|
nsEventStatus DispatchEvent(nsGUIEvent *aEvent);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD MakeFullScreen(bool aFullScreen);
|
2010-06-04 00:56:36 +04: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 19:56:38 +04:00
|
|
|
uint32_t aHotspotX,
|
|
|
|
uint32_t aHotspotY) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2011-09-29 10:19:26 +04: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 19:56:38 +04:00
|
|
|
virtual void* GetNativeData(uint32_t aDataType);
|
2010-06-04 00:56:36 +04:00
|
|
|
NS_IMETHOD SetTitle(const nsAString& aTitle) { return NS_OK; }
|
|
|
|
NS_IMETHOD SetIcon(const nsAString& aIconSpec) { return NS_OK; }
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD EnableDragDrop(bool aEnable) { return NS_OK; }
|
|
|
|
NS_IMETHOD CaptureMouse(bool aCapture) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-06-04 00:56:36 +04:00
|
|
|
NS_IMETHOD CaptureRollupEvents(nsIRollupListener *aListener,
|
2012-10-26 17:15:22 +04:00
|
|
|
bool aDoCapture) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-06-04 00:56:36 +04:00
|
|
|
|
2012-08-22 19:56:38 +04: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-04 00:56:36 +04:00
|
|
|
|
2010-08-04 23:47:26 +04:00
|
|
|
NS_IMETHOD ResetInputState();
|
2011-11-27 15:51:52 +04:00
|
|
|
NS_IMETHOD_(void) SetInputContext(const InputContext& aContext,
|
|
|
|
const InputContextAction& aAction);
|
|
|
|
NS_IMETHOD_(InputContext) GetInputContext();
|
2010-08-04 23:47:26 +04:00
|
|
|
NS_IMETHOD CancelIMEComposition();
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD OnIMEFocusChange(bool aFocus);
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD OnIMETextChange(uint32_t aStart, uint32_t aOldEnd, uint32_t aNewEnd);
|
2010-08-04 23:47:26 +04:00
|
|
|
NS_IMETHOD OnIMESelectionChange(void);
|
2010-09-24 07:28:15 +04:00
|
|
|
virtual nsIMEUpdatePreference GetIMEUpdatePreference();
|
2010-06-04 00:56:36 +04:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
LayerManager* GetLayerManager (PLayersChild* aShadowManager = nullptr,
|
2012-07-18 20:31:40 +04:00
|
|
|
LayersBackend aBackendHint = mozilla::layers::LAYERS_NONE,
|
|
|
|
LayerManagerPersistence aPersistence = LAYER_MANAGER_CURRENT,
|
2012-07-30 18:20:58 +04:00
|
|
|
bool* aAllowRetaining = nullptr);
|
2010-06-04 00:56:36 +04:00
|
|
|
|
2010-09-18 15:28:50 +04:00
|
|
|
NS_IMETHOD ReparentNativeWidget(nsIWidget* aNewParent);
|
2011-11-15 07:12:14 +04:00
|
|
|
|
2012-10-02 00:01:35 +04:00
|
|
|
#ifdef MOZ_ANDROID_OMTC
|
2012-08-13 14:10:10 +04:00
|
|
|
virtual bool NeedsPaint();
|
2012-02-10 07:47:50 +04:00
|
|
|
virtual void DrawWindowUnderlay(LayerManager* aManager, nsIntRect aRect);
|
|
|
|
virtual void DrawWindowOverlay(LayerManager* aManager, nsIntRect aRect);
|
2012-03-14 08:15:11 +04:00
|
|
|
|
2013-01-10 20:21:10 +04:00
|
|
|
static void SetCompositor(mozilla::layers::LayerManager* aLayerManager,
|
|
|
|
mozilla::layers::CompositorParent* aCompositorParent,
|
2012-07-13 19:25:29 +04:00
|
|
|
mozilla::layers::CompositorChild* aCompositorChild);
|
2012-03-14 08:15:11 +04:00
|
|
|
static void ScheduleComposite();
|
2012-04-20 19:46:30 +04:00
|
|
|
static void ScheduleResumeComposition(int width, int height);
|
2013-02-05 00:13:17 +04:00
|
|
|
static void ForceIsFirstPaint();
|
2012-10-25 20:23:47 +04:00
|
|
|
static float ComputeRenderIntegrity();
|
2012-04-17 10:04:05 +04:00
|
|
|
|
2012-08-29 09:48:43 +04:00
|
|
|
virtual bool WidgetPaintsBackground();
|
2011-12-21 23:05:23 +04:00
|
|
|
#endif
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
protected:
|
|
|
|
void BringToFront();
|
|
|
|
nsWindow *FindTopLevel();
|
2011-09-29 10:19:26 +04:00
|
|
|
bool DrawTo(gfxASurface *targetSurface);
|
2011-11-15 07:12:14 +04:00
|
|
|
bool DrawTo(gfxASurface *targetSurface, const nsIntRect &aRect);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsTopLevel();
|
2012-11-02 00:11:02 +04:00
|
|
|
void RemoveIMEComposition();
|
2012-12-05 20:09:56 +04:00
|
|
|
void PostFlushIMEChanges();
|
|
|
|
void FlushIMEChanges();
|
2010-06-04 00:56:36 +04: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 10:19:26 +04:00
|
|
|
bool mIsVisible;
|
2010-06-04 00:56:36 +04:00
|
|
|
nsTArray<nsWindow*> mChildren;
|
|
|
|
nsWindow* mParent;
|
2011-02-15 04:01:01 +03:00
|
|
|
nsWindow* mFocus;
|
2010-08-26 09:52:08 +04:00
|
|
|
|
2010-07-08 01:34:12 +04:00
|
|
|
double mStartDist;
|
2010-08-26 09:52:08 +04:00
|
|
|
double mLastDist;
|
2010-11-18 20:18:31 +03:00
|
|
|
|
2012-06-29 12:32:21 +04:00
|
|
|
nsCOMPtr<nsIIdleServiceInternal> mIdleService;
|
2010-08-26 09:52:08 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIMEComposing;
|
2012-11-02 00:11:02 +04:00
|
|
|
bool mIMEMaskSelectionUpdate, mIMEMaskTextUpdate;
|
2012-11-16 20:41:54 +04:00
|
|
|
int32_t mIMEMaskEventsCount; // Mask events when > 0
|
2010-08-21 04:07:26 +04:00
|
|
|
nsString mIMEComposingText;
|
2010-08-04 23:47:26 +04:00
|
|
|
nsAutoTArray<nsTextRange, 4> mIMERanges;
|
2010-06-04 00:56:36 +04:00
|
|
|
|
2012-12-05 20:09:56 +04:00
|
|
|
struct IMEChange {
|
|
|
|
int32_t mStart, mOldEnd, mNewEnd;
|
|
|
|
|
|
|
|
IMEChange() :
|
|
|
|
mStart(-1), mOldEnd(-1), mNewEnd(-1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
IMEChange(int32_t start, int32_t oldEnd, int32_t newEnd) :
|
|
|
|
mStart(start), mOldEnd(oldEnd), mNewEnd(newEnd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
bool IsEmpty()
|
|
|
|
{
|
|
|
|
return mStart < 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
nsAutoTArray<IMEChange, 4> mIMETextChanges;
|
2013-01-09 20:57:48 +04:00
|
|
|
bool mIMESelectionChanged;
|
2012-12-05 20:09:56 +04:00
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
InputContext mInputContext;
|
2010-11-23 09:48:45 +03:00
|
|
|
|
2010-06-04 00:56:36 +04: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 21:49:31 +04:00
|
|
|
void InitKeyEvent(nsKeyEvent& event, mozilla::AndroidGeckoEvent& key,
|
|
|
|
ANPEvent* pluginEvent);
|
2012-01-25 04:31:33 +04:00
|
|
|
bool DispatchMultitouchEvent(nsTouchEvent &event,
|
|
|
|
mozilla::AndroidGeckoEvent *ae);
|
|
|
|
void DispatchMotionEvent(nsInputEvent &event,
|
|
|
|
mozilla::AndroidGeckoEvent *ae,
|
|
|
|
const nsIntPoint &refPoint);
|
2012-08-22 19:56:38 +04:00
|
|
|
void DispatchGestureEvent(uint32_t msg, uint32_t direction, double delta,
|
|
|
|
const nsIntPoint &refPoint, uint64_t time);
|
2010-06-04 00:56:36 +04:00
|
|
|
void HandleSpecialKey(mozilla::AndroidGeckoEvent *ae);
|
2011-11-15 07:12:14 +04:00
|
|
|
void RedrawAll();
|
|
|
|
|
2012-10-02 00:01:35 +04:00
|
|
|
#ifdef MOZ_ANDROID_OMTC
|
2012-02-10 11:55:13 +04:00
|
|
|
mozilla::AndroidLayerRendererFrame mLayerRendererFrame;
|
2012-03-14 08:15:11 +04:00
|
|
|
|
2013-01-10 20:21:10 +04:00
|
|
|
static nsRefPtr<mozilla::layers::LayerManager> sLayerManager;
|
2012-03-14 08:15:11 +04:00
|
|
|
static nsRefPtr<mozilla::layers::CompositorParent> sCompositorParent;
|
2012-03-29 02:00:32 +04:00
|
|
|
static nsRefPtr<mozilla::layers::CompositorChild> sCompositorChild;
|
|
|
|
static bool sCompositorPaused;
|
2012-02-10 11:55:13 +04:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
#endif /* NSWINDOW_H_ */
|