1 Star 0 Fork 0

麒麟杯全国开源应用软件开发大赛/ScreenShot_Final

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
随亦 提交于 2021-08-25 19:41 . first commit
#include <QApplication>
#include <QQmlContext>
#include <QQmlApplicationEngine>
#include <QQuickView>
#include <QQuickItem>
#include "fullcapture.h"
#include "painteditem.h"
int main(int argc, char *argv[]){
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QApplication app(argc, argv);
QQmlApplicationEngine engine;
FullCapture *fullCut=new FullCapture();
engine.rootContext()->setContextProperty("fullCut",fullCut);
engine.addImageProvider(QLatin1String("screen"),fullCut->imgProvider);
//将涂鸦这个类注册到qml中
qmlRegisterType<PaintedItem>("qml.Controls", 1, 0, "APaintedItem");
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();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kylin-ossdc/ScreenShot_Final.git
git@gitee.com:kylin-ossdc/ScreenShot_Final.git
kylin-ossdc
ScreenShot_Final
ScreenShot_Final
main

搜索帮助