#include "Hello.h" #include "BoostLog.h" #include #include #include #include #include Hello::Hello(const Wt::WEnvironment &env, bool embedded) : Wt::WApplication(env) { setTitle("Hello world"); Wt::WContainerWidget *top = nullptr; if (!embedded) { top = root(); } else { std::unique_ptr topPtr = std::make_unique(); top = topPtr.get(); const std::string *div = env.getParameter("div"); if (div) { setJavaScriptClass(*div); bindWidget(std::move(topPtr), *div); } else { LOG(error) << "Missing: parameter: 'div'"; } LOG(info) << "url: " << url(); LOG(info) << "relative resources url: " << relativeResourcesUrl(); LOG(info) << "resources url: " << resourcesUrl(); url(); } if (!embedded) { root()->addWidget(std::make_unique("

Note: you can also run this application " "from within a web page.

")); } top->addWidget(std::make_unique("Your name, please ? ")); m_nameEdit = top->addWidget(std::make_unique()); m_nameEdit->setFocus(); auto b = top->addWidget(std::make_unique("点击我!")); b->setMargin(5, Wt::Side::Left); top->addWidget(std::make_unique()); m_greeting = top->addWidget(std::make_unique()); b->clicked().connect(this, &Hello::greet); m_nameEdit->enterPressed().connect(this, &Hello::greet); } void Hello::greet() { m_greeting->setText("Hello there, " + m_nameEdit->text()); }