PythonQtConsoleViewStep for testing purposes.
This commit is contained in:
parent
2c3b56c803
commit
0a5faa4888
21
src/libcalamaresui/PythonQtConsoleViewStep.cpp
Normal file
21
src/libcalamaresui/PythonQtConsoleViewStep.cpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#include "PythonQtConsoleViewStep.h"
|
||||||
|
|
||||||
|
using namespace Calamares;
|
||||||
|
|
||||||
|
PythonQtConsoleViewStep::PythonQtConsoleViewStep( PythonQtObjectPtr cxt,
|
||||||
|
QObject* parent )
|
||||||
|
: ViewStep( parent )
|
||||||
|
{
|
||||||
|
m_cxt = cxt;
|
||||||
|
qDebug() << "SMO" << PythonQtConsoleViewStep::staticMetaObject.className();
|
||||||
|
PythonQt::self()->registerClass( &PythonQtConsoleViewStep::staticMetaObject, "Calamares" );
|
||||||
|
m_console = new PythonQtScriptingConsole( nullptr, m_cxt );
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget*
|
||||||
|
PythonQtConsoleViewStep::widget()
|
||||||
|
{
|
||||||
|
return m_console;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
38
src/libcalamaresui/PythonQtConsoleViewStep.h
Normal file
38
src/libcalamaresui/PythonQtConsoleViewStep.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
#ifndef PYTHONQTCONSOLEVIEWSTEP_H
|
||||||
|
#define PYTHONQTCONSOLEVIEWSTEP_H
|
||||||
|
|
||||||
|
|
||||||
|
#include "viewpages/ViewStep.h"
|
||||||
|
|
||||||
|
#include <PythonQt.h>
|
||||||
|
#include <gui/PythonQtScriptingConsole.h>
|
||||||
|
|
||||||
|
|
||||||
|
class PythonQtConsoleViewStep : public Calamares::ViewStep
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
PythonQtConsoleViewStep( PythonQtObjectPtr cxt,
|
||||||
|
QObject* parent = nullptr );
|
||||||
|
|
||||||
|
virtual QString prettyName() const override { return tr( "PythonQt Console" ); }
|
||||||
|
|
||||||
|
virtual QWidget* widget() override;
|
||||||
|
|
||||||
|
virtual void next() override {}
|
||||||
|
virtual void back() override {}
|
||||||
|
|
||||||
|
virtual bool isNextEnabled() const override { return true; }
|
||||||
|
virtual bool isBackEnabled() const override { return true; }
|
||||||
|
|
||||||
|
virtual bool isAtBeginning() const override { return true; }
|
||||||
|
virtual bool isAtEnd() const override { return true; }
|
||||||
|
|
||||||
|
virtual QList< Calamares::job_ptr > jobs() const override { return QList< Calamares::job_ptr >(); }
|
||||||
|
|
||||||
|
private:
|
||||||
|
PythonQtObjectPtr m_cxt;
|
||||||
|
PythonQtScriptingConsole* m_console;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // PYTHONQTCONSOLEVIEWSTEP_H
|
Loading…
Reference in New Issue
Block a user