UBBoardView.h 5.61 KB
Newer Older
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
1 2 3
/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
Claudio Valerio's avatar
Claudio Valerio committed
4
 * the Free Software Foundation, either version 2 of the License, or
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef UBBOARDVIEW_H_
#define UBBOARDVIEW_H_

#include <QtGui>
#include "core/UB.h"
#include "domain/UBGraphicsDelegateFrame.h"

class UBBoardController;
class UBGraphicsScene;
class UBGraphicsWidgetItem;
26
class UBRubberBand;
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
27 28 29

class UBBoardView : public QGraphicsView
{
30
    Q_OBJECT
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
31 32 33

    public:

34 35
        UBBoardView(UBBoardController* pController, QWidget* pParent = 0, bool isControl = false, bool isDesktop = false);
        UBBoardView(UBBoardController* pController, int pStartLayer, int pEndLayer, QWidget* pParent = 0, bool isControl = false, bool isDesktop = false);
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
36 37 38 39 40 41 42 43
        virtual ~UBBoardView();

        UBGraphicsScene* scene();

        void forcedTabletRelease();

        void setToolCursor(int tool);

44 45 46
        void rubberItems();
        void moveRubberedItems(QPointF movingVector);

47 48 49
        void setMultiselection(bool enable);
        bool isMultipleSelectionEnabled() { return mMultipleSelectionIsEnabled; }

Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
50 51 52 53 54
    signals:

        void resized(QResizeEvent* event);
        void hidden();
        void shown();
55
        void clickOnBoard();
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
56 57 58

    protected:

59
        bool itemIsLocked(QGraphicsItem *item);
60
        bool isUBItem(QGraphicsItem *item); // we should to determine items who is not UB and use general scene behavior for them.
61
        bool isCppTool(QGraphicsItem *item);
62
        void handleItemsSelection(QGraphicsItem *item);
63 64
        bool itemShouldReceiveMousePressEvent(QGraphicsItem *item);
        bool itemShouldReceiveSuspendedMousePressEvent(QGraphicsItem *item);
65
        bool itemHaveParentWithType(QGraphicsItem *item, int type);
66
        bool itemShouldBeMoved(QGraphicsItem *item);
67
        QGraphicsItem* determineItemToPress(QGraphicsItem *item);
68 69 70
        QGraphicsItem* determineItemToMove(QGraphicsItem *item);
        void handleItemMousePress(QMouseEvent *event);
        void handleItemMouseMove(QMouseEvent *event);
71

Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
72 73 74
        virtual bool event (QEvent * e);

        virtual void keyPressEvent(QKeyEvent *event);
75
        virtual void keyReleaseEvent(QKeyEvent *event);
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
        virtual void tabletEvent(QTabletEvent * event);
        virtual void mouseDoubleClickEvent(QMouseEvent *event);
        virtual void mousePressEvent(QMouseEvent *event);
        virtual void mouseMoveEvent(QMouseEvent *event);
        virtual void mouseReleaseEvent(QMouseEvent *event);
        virtual void wheelEvent(QWheelEvent *event);
        virtual void leaveEvent ( QEvent * event);

        virtual void focusOutEvent ( QFocusEvent * event );

        virtual void drawItems(QPainter *painter, int numItems,
                                    QGraphicsItem *items[],
                                    const QStyleOptionGraphicsItem options[]);

//        virtual void dragEnterEvent(QDragEnterEvent * event);
        virtual void dropEvent(QDropEvent *event);
        virtual void dragMoveEvent(QDragMoveEvent *event);

        virtual void resizeEvent(QResizeEvent * event);

        virtual void drawBackground(QPainter *painter, const QRectF &rect);

        virtual void showEvent(QShowEvent * event);
        virtual void hideEvent(QHideEvent * event);

    private:

        void init();

        inline bool shouldDisplayItem(QGraphicsItem *item)
        {
            bool ok;
            int itemLayerType = item->data(UBGraphicsItemData::ItemLayerType).toInt(&ok);
            return (ok && (itemLayerType >= mStartLayer && itemLayerType <= mEndLayer));
        }

        QList<QUrl> processMimeData(const QMimeData* pMimeData);

        UBBoardController* mController;

        int mStartLayer, mEndLayer;
        bool mFilterZIndex;

        bool mTabletStylusIsPressed;
        bool mUsingTabletEraser;

        bool mPendingStylusReleaseEvent;

        bool mMouseButtonIsPressed;
        QPointF mPreviousPoint;
        QPoint mMouseDownPos;

        bool mPenPressureSensitive;
        bool mMarkerPressureSensitive;
        bool mUseHighResTabletEvent;

        QRubberBand *mRubberBand;
        bool mIsCreatingTextZone;
        bool mIsCreatingSceneGrabZone;

        bool isAbsurdPoint(QPoint point);

		bool mVirtualKeyboardActive;
        bool mOkOnWidget;

        bool mWidgetMoved;
        QPointF mLastPressedMousePos;
        QGraphicsItem *movingItem;
        QMouseEvent *suspendedMousePressEvent;

146
        bool moveRubberBand;
147
        UBRubberBand *mUBRubberBand;
148 149
        
        QList<QGraphicsItem *> mRubberedItems;
150
        QSet<QGraphicsItem*> mJustSelectedItems;
151

Aleksei Kanash's avatar
Aleksei Kanash committed
152 153 154 155
        int mLongPressInterval;
        QTimer mLongPressTimer;

        bool mIsDragInProgress;
156
        bool mMultipleSelectionIsEnabled;
157 158
        bool bIsControl;
        bool bIsDesktop;
159
        bool mRubberBandInPlayMode;
Aleksei Kanash's avatar
Aleksei Kanash committed
160

Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
161 162
        static bool hasSelectedParents(QGraphicsItem * item);

Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
163 164 165 166 167 168 169
    private slots:

        void settingChanged(QVariant newValue);

	public slots:

		void virtualKeyboardActivated(bool b);
Aleksei Kanash's avatar
Aleksei Kanash committed
170
        void longPressEvent();
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
171 172 173 174

};

#endif /* UBBOARDVIEW_H_ */