Project

General

Profile

Bug #13674 » main.cpp

Steven Köhler, 03/28/2025 03:22 PM

 

#include <Wt/WApplication.h>
#include <Wt/WContainerWidget.h>
#include <Wt/WServer.h>
#include <Wt/WText.h>

class DemoApp : public Wt::WApplication
{
public:

DemoApp(const Wt::WEnvironment& env)
: Wt::WApplication{ env }
{
internalPathChanged().connect(this, &DemoApp::onPathChanged);
std::cout << "initial internal path: " << internalPath() << "\n";
auto* t = root()->addNew<Wt::WText>("<a href=\"#/path#fragment\">click me!</a>");
t->setInternalPathEncoding(true);
}

void onPathChanged(const std::string& path)
{
std::cout << "new internal path: " << path << "\n";
}
};

//!
//!
//!
int main(int argc, char** args)
{
Wt::WServer server(argc, args);
server.addEntryPoint(Wt::EntryPointType::Application, [](const Wt::WEnvironment& env) { return std::make_unique<DemoApp>(env); });
if (server.start())
{
server.waitForShutdown();
server.stop();
}
}
    (1-1/1)