summaryrefslogtreecommitdiffstats
path: root/src/other/widget.h
blob: 138efd041ba6affb8f3f06ea7da9c31ab3a6a52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/**************************************************************************
**
** This file is part of Qt Simulator
**
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** No Commercial Usage
**
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights.  These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/

#ifndef WIDGET_H
#define WIDGET_H

#include "multipointtouchui.h"

#include <QtGui/QGraphicsItem>
#include <QtGui/QtEvents>

class Application;
class QSharedMemory;
class QString;
class QMenuBar;
class MouseIndicator;
namespace QtSimulatorPrivate {
struct TouchEventData;
struct TouchPointData;
}

class Widget : public QGraphicsItem
{
public:
    Widget(QRect geometry, QImage::Format f, const QString &t, Application* who,
           int id, const QString &sharedMemoryName, QGraphicsItem *parent=0);
    ~Widget();

    virtual QRectF boundingRect() const;
    virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget=0);

    static const int WidgetType = UserType+1;
    virtual int type() const { return WidgetType; }

    bool createMemory();
    QImage::Format format;
    int widgetId;
    QString title;
    Application* owner;

    QRect geometry() const;
    void setGeometry(QRect g);

    void updateOffset(const QPoint &newOffset);
    void setFullscreen(bool full);
    bool isFullScreen() const;

    bool isWidgetVisible() const;
    void setWidgetVisible(bool visible);

    QMenuBar* menuBar() const { return mMenuBar; }
    void setMenuBar(QMenuBar* menuBar) { mMenuBar = menuBar; }
    bool maemo5Stacked() { return mMaemo5Stacked; }
    void setMaemo5Stacked(bool stacked) { mMaemo5Stacked = stacked; }
    Qt::WidgetAttribute orientation() { return mOrientation; }
    void setOrientation(Qt::WidgetAttribute orientation) { mOrientation = orientation; }
    void setMouseInputMode(MultiPointTouchUi::InputMode newMode);

protected:
    virtual void mousePressEvent(QGraphicsSceneMouseEvent* ev);
    virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* ev);
    virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* ev);
    virtual void mouseMoveEvent(QGraphicsSceneMouseEvent* ev);
    virtual void hoverMoveEvent(QGraphicsSceneHoverEvent* ev);
    virtual void keyPressEvent(QKeyEvent* ev);
    virtual void keyReleaseEvent(QKeyEvent* ev);
    virtual void event(QEvent* e);
    void handleMouseEvent(QEvent::Type type, QGraphicsSceneMouseEvent* ev);
    void handleKeyEvent(QKeyEvent* ev);

private:
    friend class WidgetManager;
    WidgetManager *mManager;
    friend class DisplayWidget;
    QSharedMemory *memory;

    int width;
    int height;
    QPoint offset;
    bool fullscreen;
    QMenuBar* mMenuBar;
    bool wantsUpdate;
    bool memoryFilled;
    bool mMaemo5Stacked;
    Qt::WidgetAttribute mOrientation;
    // can't use QGraphicsItem::isVisible because we need to support visible children of
    // invisible parents
    bool mWidgetVisible;
    QString mSharedMemoryName;

    //Multipoint-touch
    MultiPointTouchUi::InputMode mMouseInputMode;

    QGraphicsItem *mFilterItem;
};

#endif // WIDGET_H