UPDATE 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 では、テキスト領域が優先されます。私は数日間これをやろうとしてきましたが、あまり成功していません.
ACE を HTML ページに問題なく埋め込むことができました。彼らのサイトには「コピーしてページに貼り付けるだけ」と書かれており、本当に簡単です。ただし、WT を介してコンテナーにローカルにロードする必要があります。彼らのレポジトリを GIT から自分のマシンにダウンロードし、使用してみました
require("lib/ace/ace.js");
と
doJavaScript(...);
さまざまなコマンドを使用しても成功しません... Java と HTML は C++ ほど得意ではないので、Java/HTML が多く含まれる場合は、できるだけ詳細を尋ねます。よろしくお願いします!