2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-09-01 15:12:01 +00:00
|
|
|
#include <QtMath>
|
2011-05-07 20:57:49 +00:00
|
|
|
#include <QtWidgets>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-11-23 08:31:03 +00:00
|
|
|
#include "mouse.h"
|
|
|
|
|
2019-09-01 15:12:01 +00:00
|
|
|
static constexpr int MouseCount = 7;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//! [0]
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
//! [0]
|
|
|
|
|
|
|
|
//! [1]
|
|
|
|
QGraphicsScene scene;
|
|
|
|
scene.setSceneRect(-300, -300, 600, 600);
|
|
|
|
//! [1] //! [2]
|
|
|
|
scene.setItemIndexMethod(QGraphicsScene::NoIndex);
|
|
|
|
//! [2]
|
|
|
|
|
|
|
|
//! [3]
|
|
|
|
for (int i = 0; i < MouseCount; ++i) {
|
|
|
|
Mouse *mouse = new Mouse;
|
|
|
|
mouse->setPos(::sin((i * 6.28) / MouseCount) * 200,
|
|
|
|
::cos((i * 6.28) / MouseCount) * 200);
|
|
|
|
scene.addItem(mouse);
|
|
|
|
}
|
|
|
|
//! [3]
|
|
|
|
|
|
|
|
//! [4]
|
|
|
|
QGraphicsView view(&scene);
|
|
|
|
view.setRenderHint(QPainter::Antialiasing);
|
|
|
|
view.setBackgroundBrush(QPixmap(":/images/cheese.jpg"));
|
|
|
|
//! [4] //! [5]
|
|
|
|
view.setCacheMode(QGraphicsView::CacheBackground);
|
|
|
|
view.setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
|
|
|
|
view.setDragMode(QGraphicsView::ScrollHandDrag);
|
|
|
|
//! [5] //! [6]
|
|
|
|
view.setWindowTitle(QT_TRANSLATE_NOOP(QGraphicsView, "Colliding Mice"));
|
|
|
|
view.resize(400, 300);
|
|
|
|
view.show();
|
|
|
|
|
|
|
|
QTimer timer;
|
2018-12-07 13:15:36 +00:00
|
|
|
QObject::connect(&timer, &QTimer::timeout, &scene, &QGraphicsScene::advance);
|
2011-04-27 10:05:43 +00:00
|
|
|
timer.start(1000 / 33);
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
//! [6]
|