2010-08-26 07:52:22 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set ts=4 et sw=4 tw=80: */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Nokia.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Nokia Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2008-04-19 08:31:50 -07:00
|
|
|
#ifndef MOZQWIDGET_H
|
|
|
|
#define MOZQWIDGET_H
|
|
|
|
|
2010-02-16 10:14:20 -08:00
|
|
|
#include <QtGui/QApplication>
|
|
|
|
#include <QtGui/QGraphicsView>
|
|
|
|
#include <QtGui/QGraphicsWidget>
|
|
|
|
|
2010-03-04 13:51:42 -08:00
|
|
|
#include "nsIWidget.h"
|
2010-04-02 07:08:30 -07:00
|
|
|
#include "prenv.h"
|
2010-03-04 13:51:42 -08:00
|
|
|
|
2010-08-30 16:49:11 -07:00
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "mozilla/Services.h"
|
|
|
|
|
2008-04-19 08:31:50 -07:00
|
|
|
class QEvent;
|
2010-02-16 10:14:20 -08:00
|
|
|
class QPixmap;
|
|
|
|
class QWidget;
|
|
|
|
|
2008-04-19 08:37:51 -07:00
|
|
|
class nsWindow;
|
2008-04-19 08:31:50 -07:00
|
|
|
|
2010-02-16 10:14:20 -08:00
|
|
|
class MozQWidget : public QGraphicsWidget
|
2008-04-19 08:31:50 -07:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2010-02-16 10:14:20 -08:00
|
|
|
MozQWidget(nsWindow* aReceiver, QGraphicsItem *aParent);
|
2008-04-19 08:31:50 -07:00
|
|
|
|
2009-03-27 04:35:27 -07:00
|
|
|
~MozQWidget();
|
|
|
|
|
2008-04-19 08:31:50 -07:00
|
|
|
/**
|
|
|
|
* Mozilla helper.
|
|
|
|
*/
|
|
|
|
void setModal(bool);
|
2008-04-19 08:37:55 -07:00
|
|
|
bool SetCursor(nsCursor aCursor);
|
2008-04-20 01:16:40 -07:00
|
|
|
void dropReceiver() { mReceiver = 0x0; };
|
|
|
|
nsWindow* getReceiver() { return mReceiver; };
|
2008-04-19 08:31:50 -07:00
|
|
|
|
2010-02-25 10:58:19 -08:00
|
|
|
void activate();
|
|
|
|
void deactivate();
|
|
|
|
|
2010-03-12 14:06:17 -08:00
|
|
|
QVariant inputMethodQuery(Qt::InputMethodQuery aQuery) const;
|
|
|
|
|
2010-03-12 14:07:32 -08:00
|
|
|
/**
|
|
|
|
* VirtualKeyboardIntegration
|
|
|
|
*/
|
2010-08-03 13:17:44 -07:00
|
|
|
void requestVKB(int aTimeout);
|
2010-03-12 14:07:32 -08:00
|
|
|
void hideVKB();
|
|
|
|
bool isVKBOpen();
|
|
|
|
|
2010-08-03 13:17:44 -07:00
|
|
|
public slots:
|
|
|
|
void showVKB();
|
|
|
|
|
2008-04-19 08:31:50 -07:00
|
|
|
protected:
|
2010-02-16 10:14:20 -08:00
|
|
|
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent* aEvent);
|
|
|
|
virtual void dragEnterEvent(QGraphicsSceneDragDropEvent* aEvent);
|
|
|
|
virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent* aEvent);
|
|
|
|
virtual void dragMoveEvent(QGraphicsSceneDragDropEvent* aEvent);
|
|
|
|
virtual void dropEvent(QGraphicsSceneDragDropEvent* aEvent);
|
|
|
|
virtual void focusInEvent(QFocusEvent* aEvent);
|
|
|
|
virtual void focusOutEvent(QFocusEvent* aEvent);
|
|
|
|
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent* aEvent);
|
|
|
|
virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent* aEvent);
|
|
|
|
virtual void hoverMoveEvent(QGraphicsSceneHoverEvent* aEvent);
|
|
|
|
virtual void keyPressEvent(QKeyEvent* aEvent);
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent* aEvent);
|
|
|
|
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* aEvent);
|
|
|
|
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent* aEvent);
|
|
|
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent* aEvent);
|
|
|
|
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* aEvent);
|
2011-01-28 03:00:31 -08:00
|
|
|
virtual void inputMethodEvent(QInputMethodEvent* aEvent);
|
2010-03-12 14:06:17 -08:00
|
|
|
|
2010-02-16 10:14:20 -08:00
|
|
|
virtual void wheelEvent(QGraphicsSceneWheelEvent* aEvent);
|
|
|
|
virtual void paint(QPainter* aPainter, const QStyleOptionGraphicsItem* aOption, QWidget* aWidget = 0);
|
|
|
|
virtual void resizeEvent(QGraphicsSceneResizeEvent* aEvent);
|
|
|
|
virtual void closeEvent(QCloseEvent* aEvent);
|
|
|
|
virtual void hideEvent(QHideEvent* aEvent);
|
|
|
|
virtual void showEvent(QShowEvent* aEvent);
|
2010-03-12 14:11:42 -08:00
|
|
|
virtual bool event(QEvent* aEvent);
|
2010-03-12 14:06:17 -08:00
|
|
|
|
2010-02-16 10:14:20 -08:00
|
|
|
bool SetCursor(const QPixmap& aPixmap, int, int);
|
|
|
|
|
2008-04-19 08:31:50 -07:00
|
|
|
private:
|
2011-01-28 03:00:31 -08:00
|
|
|
void sendPressReleaseKeyEvent(int key, const QChar* letter = 0, bool autorep = false, ushort count = 1);
|
2008-04-19 08:37:51 -07:00
|
|
|
nsWindow *mReceiver;
|
2008-04-19 08:31:50 -07:00
|
|
|
};
|
|
|
|
|
2010-03-12 14:06:17 -08:00
|
|
|
class MozQGraphicsViewEvents
|
2010-02-16 10:14:20 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2010-07-28 18:05:56 -07:00
|
|
|
MozQGraphicsViewEvents(QGraphicsView* aView)
|
|
|
|
: mView(aView)
|
2010-03-12 14:06:17 -08:00
|
|
|
{ }
|
2010-02-25 10:58:19 -08:00
|
|
|
|
2010-07-28 18:05:56 -07:00
|
|
|
void handleEvent(QEvent* aEvent, MozQWidget* aTopLevel)
|
2010-02-25 10:58:19 -08:00
|
|
|
{
|
2010-03-12 14:06:17 -08:00
|
|
|
if (!aEvent)
|
|
|
|
return;
|
2010-02-25 10:58:19 -08:00
|
|
|
if (aEvent->type() == QEvent::WindowActivate) {
|
2010-07-28 18:05:56 -07:00
|
|
|
if (aTopLevel)
|
|
|
|
aTopLevel->activate();
|
2010-02-25 10:58:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aEvent->type() == QEvent::WindowDeactivate) {
|
2010-07-28 18:05:56 -07:00
|
|
|
if (aTopLevel)
|
|
|
|
aTopLevel->deactivate();
|
2010-02-25 10:58:19 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 18:05:56 -07:00
|
|
|
void handleResizeEvent(QResizeEvent* aEvent, MozQWidget* aTopLevel)
|
2010-02-16 10:14:20 -08:00
|
|
|
{
|
2010-03-12 14:06:17 -08:00
|
|
|
if (!aEvent)
|
|
|
|
return;
|
2010-07-28 18:05:56 -07:00
|
|
|
if (aTopLevel) {
|
2010-02-16 10:14:20 -08:00
|
|
|
// transfer new size to graphics widget
|
2010-07-28 18:05:56 -07:00
|
|
|
aTopLevel->setGeometry(0.0, 0.0,
|
2010-02-16 10:14:20 -08:00
|
|
|
static_cast<qreal>(aEvent->size().width()),
|
|
|
|
static_cast<qreal>(aEvent->size().height()));
|
2010-02-25 12:45:37 -08:00
|
|
|
// resize scene rect to vieport size,
|
|
|
|
// to avoid extra scrolling from QAbstractScrollable
|
2010-03-12 14:06:17 -08:00
|
|
|
if (mView)
|
|
|
|
mView->setSceneRect(mView->viewport()->rect());
|
2010-02-16 10:14:20 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 18:05:56 -07:00
|
|
|
bool handleCloseEvent(QCloseEvent* aEvent, MozQWidget* aTopLevel)
|
2010-02-16 10:14:20 -08:00
|
|
|
{
|
2010-03-12 14:06:17 -08:00
|
|
|
if (!aEvent)
|
|
|
|
return false;
|
2010-07-28 18:05:56 -07:00
|
|
|
if (aTopLevel) {
|
2010-02-16 10:14:20 -08:00
|
|
|
// close graphics widget instead, this view will be discarded
|
|
|
|
// automatically
|
2010-07-28 18:05:56 -07:00
|
|
|
QApplication::postEvent(aTopLevel, new QCloseEvent(*aEvent));
|
2010-02-16 10:14:20 -08:00
|
|
|
aEvent->ignore();
|
2010-03-12 14:06:17 -08:00
|
|
|
return true;
|
2010-02-16 10:14:20 -08:00
|
|
|
}
|
2010-03-12 14:06:17 -08:00
|
|
|
|
|
|
|
return false;
|
2010-02-16 10:14:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2010-03-12 14:06:17 -08:00
|
|
|
QGraphicsView* mView;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
This is a helper class to synchronize the QGraphicsView window with
|
|
|
|
its contained QGraphicsWidget for things like resizing and closing
|
|
|
|
by the user.
|
|
|
|
*/
|
|
|
|
class MozQGraphicsView : public QGraphicsView
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MozQGraphicsView(MozQWidget* aTopLevel, QWidget * aParent = nsnull)
|
|
|
|
: QGraphicsView (new QGraphicsScene(), aParent)
|
2010-07-28 18:05:56 -07:00
|
|
|
, mEventHandler(this)
|
2010-06-24 03:07:57 -07:00
|
|
|
, mTopLevelWidget(aTopLevel)
|
2010-03-12 14:06:17 -08:00
|
|
|
{
|
|
|
|
scene()->addItem(aTopLevel);
|
2011-02-03 13:27:01 -08:00
|
|
|
setMouseTracking(true);
|
2010-03-12 14:06:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual bool event(QEvent* aEvent)
|
|
|
|
{
|
2010-07-28 18:05:56 -07:00
|
|
|
mEventHandler.handleEvent(aEvent, mTopLevelWidget);
|
2010-03-12 14:06:17 -08:00
|
|
|
return QGraphicsView::event(aEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void resizeEvent(QResizeEvent* aEvent)
|
|
|
|
{
|
2010-07-28 18:05:56 -07:00
|
|
|
mEventHandler.handleResizeEvent(aEvent, mTopLevelWidget);
|
2010-03-12 14:06:17 -08:00
|
|
|
QGraphicsView::resizeEvent(aEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void closeEvent (QCloseEvent* aEvent)
|
|
|
|
{
|
2010-07-28 18:05:56 -07:00
|
|
|
if (!mEventHandler.handleCloseEvent(aEvent, mTopLevelWidget))
|
2010-03-12 14:06:17 -08:00
|
|
|
QGraphicsView::closeEvent(aEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
MozQGraphicsViewEvents mEventHandler;
|
2010-06-24 03:07:57 -07:00
|
|
|
MozQWidget* mTopLevelWidget;
|
2010-02-16 10:14:20 -08:00
|
|
|
};
|
|
|
|
|
2010-08-03 10:44:52 -07:00
|
|
|
|
2008-04-19 08:31:50 -07:00
|
|
|
#endif
|