2010-08-20 16:24:40 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
2012-05-21 04:12:37 -07: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-08-20 16:24:40 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This "puppet widget" isn't really a platform widget. It's intended
|
|
|
|
* to be used in widgetless rendering contexts, such as sandboxed
|
|
|
|
* content processes. If any "real" widgetry is needed, the request
|
|
|
|
* is forwarded to and/or data received from elsewhere.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef mozilla_widget_PuppetWidget_h__
|
|
|
|
#define mozilla_widget_PuppetWidget_h__
|
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
#include "nsBaseScreen.h"
|
2010-08-20 16:24:40 -07:00
|
|
|
#include "nsBaseWidget.h"
|
2012-05-08 14:36:07 -07:00
|
|
|
#include "nsIScreenManager.h"
|
2010-08-20 16:24:40 -07:00
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsWeakReference.h"
|
2012-06-18 18:28:00 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-08-20 16:24:40 -07:00
|
|
|
|
|
|
|
class gfxASurface;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
|
|
|
class PuppetWidget : public nsBaseWidget, public nsSupportsWeakReference
|
|
|
|
{
|
2010-08-20 16:24:40 -07:00
|
|
|
typedef nsBaseWidget Base;
|
|
|
|
|
2010-08-20 16:24:40 -07:00
|
|
|
// The width and height of the "widget" are clamped to this.
|
|
|
|
static const size_t kMaxDimension;
|
|
|
|
|
|
|
|
public:
|
2010-09-23 20:28:15 -07:00
|
|
|
PuppetWidget(PBrowserChild *aTabChild);
|
2010-08-20 16:24:40 -07:00
|
|
|
virtual ~PuppetWidget();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_IMETHOD Create(nsIWidget* aParent,
|
|
|
|
nsNativeWidget aNativeParent,
|
|
|
|
const nsIntRect& aRect,
|
|
|
|
EVENT_CALLBACK aHandleEventFunction,
|
2011-10-25 08:05:32 -07:00
|
|
|
nsDeviceContext* aContext,
|
2010-08-20 16:24:40 -07:00
|
|
|
nsWidgetInitData* aInitData = nsnull);
|
|
|
|
|
|
|
|
virtual already_AddRefed<nsIWidget>
|
|
|
|
CreateChild(const nsIntRect &aRect,
|
|
|
|
EVENT_CALLBACK aHandleEventFunction,
|
2011-10-25 08:05:32 -07:00
|
|
|
nsDeviceContext *aContext,
|
2010-08-20 16:24:40 -07:00
|
|
|
nsWidgetInitData *aInitData = nsnull,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aForceUseIWidgetParent = false);
|
2010-08-20 16:24:40 -07:00
|
|
|
|
2010-08-20 16:24:40 -07:00
|
|
|
NS_IMETHOD Destroy();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD Show(bool aState);
|
|
|
|
NS_IMETHOD IsVisible(bool& aState)
|
2010-08-20 16:24:40 -07:00
|
|
|
{ aState = mVisible; return NS_OK; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD ConstrainPosition(bool /*ignored aAllowSlop*/,
|
2010-08-20 16:24:40 -07:00
|
|
|
PRInt32* aX,
|
|
|
|
PRInt32* aY)
|
|
|
|
{ *aX = kMaxDimension; *aY = kMaxDimension; return NS_OK; }
|
|
|
|
|
|
|
|
// We're always at <0, 0>, and so ignore move requests.
|
|
|
|
NS_IMETHOD Move(PRInt32 aX, PRInt32 aY)
|
|
|
|
{ return NS_OK; }
|
|
|
|
|
|
|
|
NS_IMETHOD Resize(PRInt32 aWidth,
|
|
|
|
PRInt32 aHeight,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aRepaint);
|
2010-08-20 16:24:40 -07:00
|
|
|
NS_IMETHOD Resize(PRInt32 aX,
|
|
|
|
PRInt32 aY,
|
|
|
|
PRInt32 aWidth,
|
|
|
|
PRInt32 aHeight,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aRepaint)
|
2010-08-20 16:24:40 -07:00
|
|
|
// (we're always at <0, 0>)
|
|
|
|
{ return Resize(aWidth, aHeight, aRepaint); }
|
|
|
|
|
|
|
|
// XXX/cjones: copying gtk behavior here; unclear what disabling a
|
|
|
|
// widget is supposed to entail
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD Enable(bool aState)
|
2010-08-20 16:24:40 -07:00
|
|
|
{ mEnabled = aState; return NS_OK; }
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD IsEnabled(bool *aState)
|
2010-08-20 16:24:40 -07:00
|
|
|
{ *aState = mEnabled; return NS_OK; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD SetFocus(bool aRaise = false);
|
2010-08-20 16:24:40 -07:00
|
|
|
|
|
|
|
// PuppetWidgets don't care about children.
|
|
|
|
virtual nsresult ConfigureChildren(const nsTArray<Configuration>& aConfigurations)
|
|
|
|
{ return NS_OK; }
|
|
|
|
|
2011-12-23 19:52:21 -08:00
|
|
|
NS_IMETHOD Invalidate(const nsIntRect& aRect);
|
2010-08-20 16:24:40 -07:00
|
|
|
|
|
|
|
// This API is going away, steer clear.
|
|
|
|
virtual void Scroll(const nsIntPoint& aDelta,
|
|
|
|
const nsTArray<nsIntRect>& aDestRects,
|
|
|
|
const nsTArray<Configuration>& aReconfigureChildren)
|
|
|
|
{ /* dead man walking */ }
|
|
|
|
|
|
|
|
// PuppetWidgets don't have native data, as they're purely nonnative.
|
2011-08-31 12:01:38 -07:00
|
|
|
virtual void* GetNativeData(PRUint32 aDataType);
|
2010-09-18 04:28:50 -07:00
|
|
|
NS_IMETHOD ReparentNativeWidget(nsIWidget* aNewParent)
|
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
2010-08-20 16:24:40 -07:00
|
|
|
|
|
|
|
// PuppetWidgets don't have any concept of titles.
|
|
|
|
NS_IMETHOD SetTitle(const nsAString& aTitle)
|
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
|
|
|
|
|
|
|
// PuppetWidgets are always at <0, 0>.
|
|
|
|
virtual nsIntPoint WidgetToScreenOffset()
|
|
|
|
{ return nsIntPoint(0, 0); }
|
|
|
|
|
2010-09-23 20:28:15 -07:00
|
|
|
void InitEvent(nsGUIEvent& event, nsIntPoint* aPoint = nsnull);
|
|
|
|
|
2010-08-20 16:24:40 -07:00
|
|
|
NS_IMETHOD DispatchEvent(nsGUIEvent* event, nsEventStatus& aStatus);
|
|
|
|
|
2011-11-08 11:59:07 -08:00
|
|
|
NS_IMETHOD CaptureRollupEvents(nsIRollupListener* aListener,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aDoCapture, bool aConsumeRollupEvent)
|
2010-08-20 16:24:40 -07:00
|
|
|
{ return NS_ERROR_UNEXPECTED; }
|
|
|
|
|
|
|
|
//
|
|
|
|
// nsBaseWidget methods we override
|
|
|
|
//
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
//NS_IMETHOD CaptureMouse(bool aCapture);
|
2011-08-09 12:38:26 -07:00
|
|
|
virtual LayerManager*
|
|
|
|
GetLayerManager(PLayersChild* aShadowManager = nsnull,
|
|
|
|
LayersBackend aBackendHint = LayerManager::LAYERS_NONE,
|
|
|
|
LayerManagerPersistence aPersistence = LAYER_MANAGER_CURRENT,
|
|
|
|
bool* aAllowRetaining = nsnull);
|
2011-04-16 18:22:44 -07:00
|
|
|
// virtual nsDeviceContext* GetDeviceContext();
|
2010-08-20 16:24:40 -07:00
|
|
|
virtual gfxASurface* GetThebesSurface();
|
|
|
|
|
2010-09-23 20:28:15 -07:00
|
|
|
NS_IMETHOD ResetInputState();
|
2011-11-27 03:51:52 -08:00
|
|
|
NS_IMETHOD_(void) SetInputContext(const InputContext& aContext,
|
|
|
|
const InputContextAction& aAction);
|
|
|
|
NS_IMETHOD_(InputContext) GetInputContext();
|
2010-09-23 20:28:15 -07:00
|
|
|
NS_IMETHOD CancelComposition();
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD OnIMEFocusChange(bool aFocus);
|
2010-09-23 20:28:15 -07:00
|
|
|
NS_IMETHOD OnIMETextChange(PRUint32 aOffset, PRUint32 aEnd,
|
|
|
|
PRUint32 aNewEnd);
|
|
|
|
NS_IMETHOD OnIMESelectionChange(void);
|
|
|
|
|
2011-06-21 17:32:43 -07:00
|
|
|
NS_IMETHOD SetCursor(nsCursor aCursor);
|
2012-05-08 14:36:07 -07:00
|
|
|
NS_IMETHOD SetCursor(imgIContainer* aCursor,
|
|
|
|
PRUint32 aHotspotX, PRUint32 aHotspotY)
|
|
|
|
{
|
|
|
|
return nsBaseWidget::SetCursor(aCursor, aHotspotX, aHotspotY);
|
|
|
|
}
|
2011-06-21 17:32:43 -07:00
|
|
|
|
2010-12-02 17:24:04 -08:00
|
|
|
// Gets the DPI of the screen corresponding to this widget.
|
|
|
|
// Contacts the parent process which gets the DPI from the
|
|
|
|
// proper widget there. TODO: Handle DPI changes that happen
|
|
|
|
// later on.
|
|
|
|
virtual float GetDPI();
|
|
|
|
|
2010-08-20 16:24:40 -07:00
|
|
|
private:
|
|
|
|
nsresult DispatchPaintEvent();
|
|
|
|
nsresult DispatchResizeEvent();
|
|
|
|
|
|
|
|
void SetChild(PuppetWidget* aChild);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult IMEEndComposition(bool aCancel);
|
2010-09-23 20:28:15 -07:00
|
|
|
|
2010-08-20 16:24:40 -07:00
|
|
|
class PaintTask : public nsRunnable {
|
|
|
|
public:
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
PaintTask(PuppetWidget* widget) : mWidget(widget) {}
|
|
|
|
void Revoke() { mWidget = nsnull; }
|
|
|
|
private:
|
|
|
|
PuppetWidget* mWidget;
|
|
|
|
};
|
|
|
|
|
2010-09-23 20:28:15 -07:00
|
|
|
// TabChild normally holds a strong reference to this PuppetWidget
|
|
|
|
// or its root ancestor, but each PuppetWidget also needs a reference
|
|
|
|
// back to TabChild (e.g. to delegate nsIWidget IME calls to chrome)
|
|
|
|
// So we hold a weak reference to TabChild (PBrowserChild) here.
|
|
|
|
// Since it's possible for TabChild to outlive the PuppetWidget,
|
|
|
|
// we clear this weak reference in Destroy()
|
|
|
|
PBrowserChild *mTabChild;
|
2010-08-20 16:24:40 -07:00
|
|
|
// The "widget" to which we delegate events if we don't have an
|
|
|
|
// event handler.
|
|
|
|
nsRefPtr<PuppetWidget> mChild;
|
|
|
|
nsIntRegion mDirtyRegion;
|
|
|
|
nsRevocableEventPtr<PaintTask> mPaintTask;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mEnabled;
|
|
|
|
bool mVisible;
|
2010-08-20 16:24:40 -07:00
|
|
|
// XXX/cjones: keeping this around until we teach LayerManager to do
|
|
|
|
// retained-content-only transactions
|
|
|
|
nsRefPtr<gfxASurface> mSurface;
|
2010-09-23 20:28:15 -07:00
|
|
|
// IME
|
|
|
|
nsIMEUpdatePreference mIMEPreference;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIMEComposing;
|
2010-10-01 07:17:37 -07:00
|
|
|
// Latest seqno received through events
|
|
|
|
PRUint32 mIMELastReceivedSeqno;
|
|
|
|
// Chrome's seqno value when last blur occurred
|
|
|
|
// arriving events with seqno up to this should be discarded
|
|
|
|
// Note that if seqno overflows (~50 days at 1 ms increment rate),
|
|
|
|
// events will be discarded until new focus/blur occurs
|
|
|
|
PRUint32 mIMELastBlurSeqno;
|
2010-12-02 17:24:04 -08:00
|
|
|
|
|
|
|
// The DPI of the screen corresponding to this widget
|
|
|
|
float mDPI;
|
2010-08-20 16:24:40 -07:00
|
|
|
};
|
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
class PuppetScreen : public nsBaseScreen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PuppetScreen(void* nativeScreen);
|
|
|
|
~PuppetScreen();
|
|
|
|
|
|
|
|
NS_IMETHOD GetRect(PRInt32* aLeft, PRInt32* aTop, PRInt32* aWidth, PRInt32* aHeight) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetAvailRect(PRInt32* aLeft, PRInt32* aTop, PRInt32* aWidth, PRInt32* aHeight) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetPixelDepth(PRInt32* aPixelDepth) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetColorDepth(PRInt32* aColorDepth) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetRotation(PRUint32* aRotation) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD SetRotation(PRUint32 aRotation) MOZ_OVERRIDE;
|
|
|
|
};
|
|
|
|
|
2012-06-18 18:28:00 -07:00
|
|
|
class PuppetScreenManager MOZ_FINAL : public nsIScreenManager
|
2012-05-08 14:36:07 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PuppetScreenManager();
|
|
|
|
~PuppetScreenManager();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSISCREENMANAGER
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsIScreen> mOneScreen;
|
|
|
|
};
|
|
|
|
|
2010-08-20 16:24:40 -07:00
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_widget_PuppetWidget_h__
|