Questions tagged [wt]

Wt (pronounced as witty) is a C++ library for developing interactive web applications.

Wt (pronounced as witty) is a C++ library for developing interactive web applications. The framework is structured around widgets using signals and slots to drive interaction in the application. The framework comes with automatic fall-back for browsers which don't support the level of Javascript used in creating the application interface, such as web crawlers. WebSocket connections are supported out of the box. The framework provides extended built-in security, including XSS, CSRF and application logic attack prevention.

Bug reports, feature requests and official support requests should be posted here.

201 questions
0
votes
2 answers

How to launch a Wt Client?

I have just started a development using wt(with c++ binding). And i have could done till now, is reading a very few documentation and a little no of sample programs(written in c++ and wt). After that I installed wt on my machine amd tried to run one…
manmatha.roy
  • 577
  • 1
  • 9
  • 22
0
votes
1 answer

Embedding Ventus in WT

Hello fellow programmers! My goal is to embed a Ventus window manager (http://www.rlamana.es/ventus/), repo here (https://github.com/rlamana/Ventus) in a WT page (http://www.webtoolkit.eu/wt) and get the "Simple Example" running. I have the ventus…
user2115945
  • 223
  • 3
  • 12
0
votes
1 answer

Derived Class Constructor Syntax Wt

Hello fellow C++Programmers, today I was tinkering around with the excellent Wt framework Wt - a C++ library for developing web applications: http://www.webtoolkit.eu/wt. Slowly but steadily I'm making progress. One thing that made me curious…
jules
  • 1,897
  • 2
  • 16
  • 19
0
votes
1 answer

WT widget not updating in boost thread

I have run into an interesting problem with WT, I have solved it, but I do not understand WHY my solution solved the problem. I've dug through WT documentation for the widgets and have come up empty handed so far, so maybe someone who knows more…
user2115945
  • 223
  • 3
  • 12
0
votes
1 answer

Why does my edited WtWithQt example crash?

I am developing an application using Qt for main logic and Wt for user interface. However I came to a problem I couldn't solve. I've applied it to the wtwithqt example. I've only changed "passGreet" function to call the signal asynchronously instead…
TrueFurby
  • 457
  • 4
  • 19
0
votes
2 answers

Wt Compilation Issues

I am beginning to learn how to write Wt applications, but I am receiving a compilation error which I do not understand how to fix. When compiling, I receive an error that says g++ -lwthttp -lwt hello.cpp /usr/bin/ld:…
user1876508
  • 12,864
  • 21
  • 68
  • 105
0
votes
1 answer

Compiling wtwithqt example with QtCreator(qmake)

I am working on a network management application with Qt and I chose to use Wt for UI, because with it I will not have to deal with any of web parts (PHP, AJAX, HTML/CSS) and it'll be usable on all platforms. I successfully managed to compile and…
TrueFurby
  • 457
  • 4
  • 19
0
votes
1 answer

How to creat Wt project in Mac and Netbeans

I have successfully built and installed Wt on my Mac, now I need to build sample apps and run it. I am unable to locate required libs on my machine. In example doc it says to do following: g++ -o hello hello.cc -lwthttp -lwt $ ./hello --docroot .…
Volatil3
  • 14,253
  • 38
  • 134
  • 263
0
votes
1 answer

access wt on amazon ec2 with elastic ip

I source-compiled the latest wt on a micro instance of ec2 with ubuntu running when I lunch one of the examples: 1:23:15.~/progs/wt-3.2.3-rc1/examples/widgetgallery >../../build/examples/widgetgallery/widgetgallery.wt --docroot . --http-address…
kirill_igum
  • 3,953
  • 5
  • 47
  • 73
0
votes
1 answer

cross-compile for amazon ec2 micro

I'm trying to install latest wt on amazon ec2 micro (free tier). it runs out of memory during the compilation. How can I compile the wt on another system (i have i7 laptop with 8gb of ram)? I was hoping that I can run cmake with some option and…
kirill_igum
  • 3,953
  • 5
  • 47
  • 73
0
votes
1 answer

Keeping Class Info In Database

I have several classes (same base class) and only some users allowed to instantiate some. I need to keep allowed classes for a user in a database. I definitely need some suggestions. Because I think, I should not need to have a list of class names…
Ali Burak Kulakli
  • 562
  • 1
  • 5
  • 16
0
votes
2 answers

How to obtain user's choice in a radio buttons group box for further processing?

I just finished with my web application's GUI part, which relies heavily on groups of radio buttons to provide an option mechanism. I am looking to collect user choices from radio button groups in order to provide input parameters in certain…
Kapoios
  • 688
  • 7
  • 22
-1
votes
1 answer

std::vector is not getting modified in a lambda function. But I don't get any error as well

This is my code: HelloApplication::HelloApplication(const Wt::WEnvironment& env) : Wt::WApplication(env) { setTitle("Data Interpolation"); Wt::WText *InitialExplanation = root()->addWidget(std::make_unique()); …
vashist99
  • 11
  • 2
-1
votes
1 answer

Problems when compiling older version of Wt on Mac OS

We have an old project that we usually build on Linux in a virtual machine. Working on this project is a chore since it currently only builds and runs in the virtual machine. We aren’t ready yet to invest the resources necessary to rewrite the…
-1
votes
1 answer

Any commercial grade web site built using emweb Wt C++ toolkit?

Wt C++ webtool kit (https://www.webtoolkit.eu/wt) has been in existence for a decade. I want to know if any commercial grade website, apart from their homepage, that is in existence today that I can access to ascertain its capability. I seeking to…
1 2 3
13
14