更新 3 下面的最终工作代码。您需要 src 文件夹中的 ace.js!它不适用于库,您需要他们网站上的预打包版本。
WText *editor = new WText(root());
editor->setText("function(){\n hello.abc();\n}\n");
editor->setInline(false);
上面的代码可以设置ACE窗口的内容。
MyClass::MyClass(const WEnvironment& env)
: WApplication(env)
{
wApp->require("ace-builds/src/ace.js");
// A WContainerWidget is rendered as a div
WContainerWidget *editor = new WContainerWidget(root());
editor->resize(500, 500);
std::string editor_ref = editor->jsRef(); // is a text string that will be the element when executed in JS
std::string command =
editor_ref + ".editor = ace.edit(" + editor_ref + ");" +
editor_ref + ".editor.setTheme(\"ace/theme/monokai\");" +
editor_ref + ".editor.getSession().setMode(\"ace/mode/javascript\");";
editor->doJavaScript(command);
JSignal <std::string> *jsignal = new JSignal<std::string>(editor, "textChanged");
jsignal->connect(this, &MyClass::textChanged);
WPushButton *b = new WPushButton("Save", root());
command = "function(object, event) {" +
jsignal->createCall(editor_ref + ".editor.getValue()") +
";}";
b->clicked().connect(command);
}
void MyClass::textChanged(std::string incoming)
{
}
更新 2 这是我的项目在 atm 的样子,仍然得到一个白色屏幕,右上角有来自 WT 的红色“正在加载...”消息。更多注释如下。
MyClass::MyClass(const WEnvironment& env)
: WApplication(env)
{
wApp->require("lib/ace/ace.js");
// A WContainerWidget is rendered as a div
WContainerWidget *editor = new WContainerWidget(root());
editor->resize(500, 500);
std::string editor_ref = editor->jsRef(); // is a text string that will be the element when executed in JS
std::string command =
editor_ref + ".editor = ace.edit(" + editor_ref + ");" +
editor_ref + ".editor.setTheme(\"ace/theme/monokai\");" +
editor_ref + ".editor.getSession().setMode(\"ace/mode/javascript\");";
editor->doJavaScript(command);
JSignal <std::string> *jsignal = new JSignal<std::string>(editor, "textChanged");
jsignal->connect(this, &MyClass::textChanged);
WPushButton *b = new WPushButton("Save", root());
command = "function(object, event) {" +
jsignal->createCall(editor_ref + ".editor.getValue()") +
";}";
b->clicked().connect(command);
}
void MyClass::textChanged(std::string incoming)
{
}
"command" 变量在用于 editor->doJavaScript(command) 时等于以下内容
"Wt3_3_0.$('oy4ycjy').editor = ace.edit(Wt3_3_0.$('oy4ycjy'));Wt3_3_0.$('oy4ycjy').editor.setTheme('ace/theme/monokai');Wt3_3_0.$('oy4ycjy').editor.getSession().setMode('ace/mode/javascript');"
"command" 变量在用于 b->clicked().connect(command) 时等于以下内容;
"function(object, event) {Wt.emit('oy4ycjy','textChanged',Wt3_3_0.$('oy4ycjy').editor.getValue());;}"
更新 1
将建议的代码添加到我的构造函数中,但是页面不会从纯白屏幕更改。我在这个 WT 项目中什么也没做,只有这段代码在运行。
wApp->require("lib/ace/ace.js");
// A WContainerWidget is rendered as a div
WContainerWidget *editor = new WContainerWidget(root());
std::string editor_ref = editor->jsRef(); // is a text string that will be the element when executed in JS
editor->doJavaScript(
editor_ref + ".editor = ace.edit('" + editor_ref + "');" +
editor_ref + ".editor.setTheme('ace/theme/monokai');" +
editor_ref + ".editor.getSession().setMode('ace/mode/javascript');"
);
editor_ref 的值是 "Wt3_3_0.$('oumvrgm')" 减去引号。
还尝试添加下面的代码,页面仍然空白。
JSignal <std::string> *jsignal = new JSignal<std::string>(editor, "textChanged");
jsignal->connect(this, &MyClass::textChanged);
WPushButton *b = new WPushButton("Save", root());
b->clicked().connect("function(object, event) {" +
jsignal->createCall(editor->jsRef() + ".editor.getValue()") +
";}");
我还发现注释掉
editor_ref + ".editor = ace.edit('" + editor_ref + "');" +
使按钮出现,但屏幕右上角有一个红色的“正在加载...”注释,因此 WT 正在等待某些东西。
我目前将 textChanged 作为无操作功能。
原帖
所以,我的问题是这个。如何在 WT http://www.webtoolkit.eu/wt中获得 ACE http://ace.ajax.org/#nav=about。更具体地说,在 WT Wt::WTextArea 或 Wt::WTabWidget 中的 ACE,文本区域将是首选。这几天我一直在尝试这样做,但并没有取得太大的成功。
我已经能够在 HTML 页面中嵌入 ACE 没有问题,因为他们的网站说“只需将其复制并粘贴到您的页面中”,这真的很简单。但是,我需要通过 WT 在本地将其加载到容器中。我将他们的存储库从 GIT 下载到我的机器并尝试使用
require("lib/ace/ace.js");
和
doJavaScript(...);
各种命令都没有成功...我在 Java 和 HTML 方面的能力不如 C++,所以如果这涉及到很多 Java/HTML,我会要求尽可能多的细节。提前谢谢小伙伴们!