OCT
5
2008
|
Going on the web with QtSo I have been working underground for a while on a web framework based on Qt but its gotten out of control and I need more help on it. The initial goal was to write a creole 1.0 compliant wiki based on Qt, but soon it grew into a full framework because of the lack of good C++ tools to do web development. So far I have the following features working: What is not working that I need help on: I have some demos of what I have so far on a home server so be gentle. http://geiseri.my-ip.org/cgi-bin/helloworld.cgi is a simple text edit that updates the UI via a Qt slot. http://geiseri.my-ip.org/cgi-bin/selections.cgi is an example of dynamically populating a selection box control via a Qt slot as well as form submission. So if anyone is interested please sign up. Also yes, I know about Wt, but I found out about it after I started the project and decided to keep going. |
![]() |
Comments
Nanogear?
I guess I'd best mention Nanogear (http://code.google.com/p/nanogear/) (http://blog.binaryhelix.net/2008/08/kexi-and-web-forms-future.html). Nanogear is currently very young, but you might consider working with the developers (mainly me and Mr. Villani). We could do more REST plumbing work, and you could focus more on the web/Qt bridge you already started. Albeit, you couldn't integrate the technology into Nanogear proper (only STD and Boost dependencies allowed), but you could always make use of Ng for things you don't want to reinvent.
that might be a good idea
I am looking for any help I can get on the front end logic. I have been looking at YUI because I will be damned if I will write YA Tab Widget for the web :) The end goal is that someone can write a form based application with Qt and take it to the web quickly with out having to learn all the ajax stuff needed to make a usable web application.
Exactly
We're currently working on the REST API, and you are currently working on widget implementation. Eventually we'll each have to do what the other is doing.
Need some help, and perhaps an email address to continue
I've been looking at your software for awhile now and need to know: where in the QCGICore AppServer and AppController classes can my bridge code go? My idea has been that the web service developer would have Nanogear pass the request to the Qt code and retrieve a response to serve to the client.
What I'm asking is: Where does your system get input from the server? I can't find the CGI implementation code.
Wt?
Wt is a nice C++ Qt-like development environment for Web apps, although it doesn't use Qt.
It should be possible to adapt it to use Qt code for signals/slots instead of boost::signal and QVariants instead of boost::any and so on. When someone asked why Wt didn't use Qt in the talk at this years Akademy, the developer Koen Deforche said that it was for licensing reasons rather than technical reasons. As Wt is dual licensed like Qt, and it would have been too expensive to require every commercial developer to buy a Qt license.
Very interesting
I'd be very interested to check out what you have done so far but geiseri.my-ip.org is unavailable from where I am.
Is your code squarely based on the Qt networking stack?
Wt is mature but it requires boost and asio as dependencies whereas I am particularly interested in a Qt-only web library.
Subversion access
I have subversion up at: http://svn.geiseri.com/svn/projects/creole/ The examples are found in the demos directory.
Its purely Qt based, and only uses QMake to build.