blob: 4ba74133a6a63042837dd0e61c5029704d67de48 (
plain)
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
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// This class is a simple container for a QtQuick plugin
//===========================================
#ifndef _LUMINA_DESKTOP_DESKTOP_PLUGIN_QUICK_H
#define _LUMINA_DESKTOP_DESKTOP_PLUGIN_QUICK_H
#include <QQuickWidget>
#include <QVBoxLayout>
#include "../LDPlugin.h"
#include <LuminaUtils.h>
class QuickDPlugin : public LDPlugin{
Q_OBJECT
public:
QuickDPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID){
this->setLayout( new QVBoxLayout());
this->layout()->setContentsMargins(0,0,0,0);
container = new QQuickWidget(this);
container->setResizeMode(QQuickWidget::SizeRootObjectToView);
connect(container, SIGNAL(statusChanged(QQuickWidget::Status)), this, SLOT(statusChange(QQuickWidget::Status)) );
this->layout()->addWidget(container);
container->setSource(QUrl::fromLocalFile( LUtils::findQuickPluginFile(ID.section("---",0,0)) ));
QApplication::processEvents(); //to check for errors right away
//this->setInitialSize(container->initialSize().width(), container->initialSize().height());
}
~QuickDPlugin(){}
virtual QSize defaultPluginSize(){
// The returned QSize is in grid points (typically 100 or 200 pixels square)
return QSize(2,2);
}
private:
QQuickWidget *container;
private slots:
void statusChange(QQuickWidget::Status status){
if(status == QQuickWidget::Error){
qDebug() << "Quick Widget Error:" << this->ID();
container->setSource(QUrl()); //clear out the script - experienced an error
}
}
};
#endif
|