-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
83 lines (68 loc) · 2.46 KB
/
main.cpp
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
#include <QApplication>
#include <QLabel>
#include <QPainter>
#include <QQmlApplicationEngine>
#include "drawingcanvas.h"
class MyWidget : public QWidget{
public:
MyWidget(){
}
protected:
void paintEvent(QPaintEvent* event) override{
QPainter painter(this);
// auto l1 = QPointF(20,20);
// auto l2 = QPointF(100, 100);
// auto w = 15; // rectangle width
// QLineF line = QLineF(l1, l2);
// QRectF rect = QRectF(0, -w/2, line.length(), w); // the rectangle will have the same width as the line's length
// painter.translate(line.p1());
// painter.rotate(-line.angle()); // rotate the rectangle
// rect.setWidth(line.length());
// rect.setHeight(w);
// painter.setPen(Qt::NoPen);
// painter.setBrush(Qt::blue);
// painter.drawRoundedRect(rect, 20,20);
// painter.resetTransform();
// painter.setPen(Qt::red);
// painter.drawLine(line); // draw the line
// painter.drawEllipse(l1, 10,10); // draw the origin
painter.setCompositionMode(QPainter::CompositionMode_DestinationOut);
for (qreal i = 5; i <= 200; i += 0.5){
QPointF centerPoint(i, i*i/10);
qreal centerRadius = 5;
QRadialGradient radialGrad(centerPoint, centerRadius);
radialGrad.setColorAt(0.000, QColor(0, 0, 0, 255));
radialGrad.setColorAt(0.5, QColor(0, 0, 0, 0.8 * 255));
radialGrad.setColorAt(1.000, QColor(0, 0, 0, 0.000));
QPen pen;
pen.setWidth(400);
pen.setColor("black");
pen.setBrush(radialGrad);
painter.setPen(pen);
painter.drawPoint(centerPoint);
}
}
};
//int main(int argc, char *argv[])
//{
// QApplication app(argc, argv);
// MyWidget widget;
// widget.resize(QSize(1000,1000));
// widget.show();
// return app.exec();
//}
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
qmlRegisterType<DrawingCanvas>("Drawing", 1, 0, "DrawingCanvas");
QQmlApplicationEngine engine;
const QUrl url(QStringLiteral("qrc:/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
engine.load(url);
return app.exec();
}