This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/demo/DoricDemoBridge.cpp

31 lines
700 B
C++
Raw Normal View History

2021-02-04 16:59:58 +08:00
#include <QDebug>
2021-02-09 17:42:11 +08:00
#include <QQuickItem>
#include <QQuickView>
2021-02-04 16:59:58 +08:00
#include "DoricDemoBridge.h"
#include "DoricPanel.h"
#include "utils/DoricUtils.h"
DoricDemoBridge::DoricDemoBridge(QObject *parent) : QObject(parent) {}
void DoricDemoBridge::navigate(QVariant route) {
switch (route.toInt()) {
case 0:
2021-02-09 10:38:27 +08:00
QString name = "Snake.es5.js";
2021-02-04 16:59:58 +08:00
QString script = DoricUtils::readAssetFile("/doric/bundles", name);
2021-02-09 17:42:11 +08:00
QQuickView *view = new QQuickView();
view->setWidth(960);
view->setHeight(720);
QColor color("blue");
view->setColor(color);
view->show();
view->rootObject();
DoricPanel *panel = new DoricPanel();
panel->config(script, name, NULL);
2021-02-04 16:59:58 +08:00
break;
}
}