mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
27 lines
No EOL
651 B
C++
27 lines
No EOL
651 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QDialog>
|
|
#include <QWidget>
|
|
#include <string>
|
|
|
|
#include "zep.h"
|
|
#include "zep/mode_repl.h"
|
|
#include "zep/regress.h"
|
|
|
|
class ShaderEditorWindow : public QDialog {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
Zep::ZepWidget_Qt zepWidget;
|
|
Zep::IZepReplProvider replProvider;
|
|
static constexpr float fontSize = 14.0f;
|
|
|
|
public:
|
|
// Whether this backend supports shader editor
|
|
bool supported = true;
|
|
|
|
ShaderEditorWindow(QWidget* parent, const std::string& filename, const std::string& initialText);
|
|
void setText(const std::string& text) { zepWidget.GetEditor().GetMRUBuffer()->SetText(text); }
|
|
void setEnable(bool enable);
|
|
}; |