gecko/widget/src/qt/mozqwidget.h

226 lines
6.9 KiB
C
Raw Normal View History

/* -*- 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 ***** */
#ifndef MOZQWIDGET_H
#define MOZQWIDGET_H
#include <QtGui/QApplication>
#include <QtGui/QGraphicsView>
#include <QtGui/QGraphicsWidget>
#include "nsIWidget.h"
#include "prenv.h"
#include "nsIObserverService.h"
#include "mozilla/Services.h"
class QEvent;
class QPixmap;
class QWidget;
class nsWindow;
class MozQWidget : public QGraphicsWidget
{
Q_OBJECT
public:
MozQWidget(nsWindow* aReceiver, QGraphicsItem *aParent);
~MozQWidget();
/**
* Mozilla helper.
*/
void setModal(bool);
2008-04-19 08:37:55 -07:00
bool SetCursor(nsCursor aCursor);
void dropReceiver() { mReceiver = 0x0; };
nsWindow* getReceiver() { return mReceiver; };
void activate();
void deactivate();
QVariant inputMethodQuery(Qt::InputMethodQuery aQuery) const;
/**
* VirtualKeyboardIntegration
*/
void requestVKB(int aTimeout);
void hideVKB();
bool isVKBOpen();
public slots:
void showVKB();
protected:
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);
virtual void inputMethodEvent(QInputMethodEvent* aEvent);
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);
virtual bool event(QEvent* aEvent);
bool SetCursor(const QPixmap& aPixmap, int, int);
private:
void sendPressReleaseKeyEvent(int key, const QChar* letter = 0, bool autorep = false, ushort count = 1);
nsWindow *mReceiver;
};
class MozQGraphicsViewEvents
{
public:
MozQGraphicsViewEvents(QGraphicsView* aView)
: mView(aView)
{ }
void handleEvent(QEvent* aEvent, MozQWidget* aTopLevel)
{
if (!aEvent)
return;
if (aEvent->type() == QEvent::WindowActivate) {
if (aTopLevel)
aTopLevel->activate();
}
if (aEvent->type() == QEvent::WindowDeactivate) {
if (aTopLevel)
aTopLevel->deactivate();
}
}
void handleResizeEvent(QResizeEvent* aEvent, MozQWidget* aTopLevel)
{
if (!aEvent)
return;
if (aTopLevel) {
// transfer new size to graphics widget
aTopLevel->setGeometry(0.0, 0.0,
static_cast<qreal>(aEvent->size().width()),
static_cast<qreal>(aEvent->size().height()));
// resize scene rect to vieport size,
// to avoid extra scrolling from QAbstractScrollable
if (mView)
mView->setSceneRect(mView->viewport()->rect());
}
}
bool handleCloseEvent(QCloseEvent* aEvent, MozQWidget* aTopLevel)
{
if (!aEvent)
return false;
if (aTopLevel) {
// close graphics widget instead, this view will be discarded
// automatically
QApplication::postEvent(aTopLevel, new QCloseEvent(*aEvent));
aEvent->ignore();
return true;
}
return false;
}
private:
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)
, mEventHandler(this)
, mTopLevelWidget(aTopLevel)
{
scene()->addItem(aTopLevel);
setMouseTracking(true);
}
protected:
virtual bool event(QEvent* aEvent)
{
mEventHandler.handleEvent(aEvent, mTopLevelWidget);
return QGraphicsView::event(aEvent);
}
virtual void resizeEvent(QResizeEvent* aEvent)
{
mEventHandler.handleResizeEvent(aEvent, mTopLevelWidget);
QGraphicsView::resizeEvent(aEvent);
}
virtual void closeEvent (QCloseEvent* aEvent)
{
if (!mEventHandler.handleCloseEvent(aEvent, mTopLevelWidget))
QGraphicsView::closeEvent(aEvent);
}
private:
MozQGraphicsViewEvents mEventHandler;
MozQWidget* mTopLevelWidget;
};
#endif