view.cpp
54 lines
| 1.7 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
r1748 | /**************************************************************************** | ||
** | ||||
Titta Heikkala
|
r2776 | ** Copyright (C) 2015 The Qt Company Ltd | ||
Michal Klocek
|
r1748 | ** All rights reserved. | ||
Titta Heikkala
|
r2776 | ** For any questions to The Qt Company, please use contact form at http://qt.io | ||
Michal Klocek
|
r1748 | ** | ||
Titta Heikkala
|
r2740 | ** This file is part of the Qt Charts module. | ||
Michal Klocek
|
r1748 | ** | ||
Titta Heikkala
|
r2740 | ** Licensees holding valid commercial license for Qt may use this file in | ||
** accordance with the Qt License Agreement provided with the Software | ||||
** or, alternatively, in accordance with the terms contained in a written | ||||
Titta Heikkala
|
r2776 | ** agreement between you and The Qt Company. | ||
Michal Klocek
|
r1748 | ** | ||
** If you have questions regarding the use of this file, please use | ||||
Titta Heikkala
|
r2740 | ** contact form at http://qt.io | ||
Michal Klocek
|
r1748 | ** | ||
****************************************************************************/ | ||||
#include "view.h" | ||||
Titta Heikkala
|
r2714 | #include <QtWidgets/QGraphicsWidget> | ||
#include <QtGui/QResizeEvent> | ||||
#include <QtCore/QDebug> | ||||
Michal Klocek
|
r1748 | |||
Jani Honkonen
|
r2099 | View::View(QGraphicsScene *scene, QGraphicsWidget *form , QWidget *parent) | ||
: QGraphicsView(scene, parent), | ||||
m_form(form) | ||||
Michal Klocek
|
r1748 | { | ||
setDragMode(QGraphicsView::NoDrag); | ||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); | ||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); | ||||
} | ||||
void View::resizeEvent(QResizeEvent *event) | ||||
{ | ||||
if (scene()) | ||||
scene()->setSceneRect(QRect(QPoint(0, 0), event->size())); | ||||
if (m_form) | ||||
m_form->resize(QSizeF(event->size())); | ||||
QGraphicsView::resizeEvent(event); | ||||
} | ||||
void View::mouseMoveEvent(QMouseEvent *event) | ||||
{ | ||||
//BugFix somehow view always eats the mouse move event; | ||||
Michal Klocek
|
r1749 | QGraphicsView::mouseMoveEvent(event); | ||
Michal Klocek
|
r1748 | event->setAccepted(false); | ||
} | ||||
void View::mouseReleaseEvent(QMouseEvent *event) | ||||
{ | ||||
QGraphicsView::mouseReleaseEvent(event); | ||||
Jani Honkonen
|
r2099 | //BugFix somehow view always eats the mouse release event; | ||
Michal Klocek
|
r1748 | event->setAccepted(false); | ||
} | ||||