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
2021-05-20 18:27:45 +08:00

31 lines
732 B
C++

#include <QDebug>
#include <QQuickView>
#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:
QString name = "Snake.es5.js";
QString script = DoricUtils::readAssetFile("/doric/bundles", name);
QQuickView *view = new QQuickView();
view->setWidth(450);
view->setHeight(800);
QColor blue("blue");
view->setColor(blue);
view->show();
DoricPanel *panel = new DoricPanel();
panel->setParent(view);
panel->setWidth(450);
panel->setHeight(800);
panel->config(script, name, NULL);
break;
}
}