Hello, I know the answers to some of your questions.
> Is there any ability to use Wt with qmake instead of CMake? Yes. You can use any build system for your pojects, even pure Makefille. > Does Wt support layout direction (RightToLeft/LeftToRight) for all widgets? Looks like. See WApplication::setLayoutDirection() http://www.webtoolkit.eu/wt/doc/reference/html/classWt_1_1WApplication.html#a44c5f0398b5539269be3961b26e95b08 The library sets "Wt-ltr" or "Wt-rtl" as style classes for the document body. You may use this if to override certain style rules for a Right-to-Left document. > How much is the difficult in case I used QtCreator as IDE for Wt (I'm Linux > developer)? If you write .pro file for qmake, then you can treat it as Qt project. I have not try this. > Does Wt has style engine just like Qt or I have to create the styles in > similar way to web based toolkits? Styles are generated automatically, but you are free to customize them. Style can be managed via C++ (see WCssDecorationStyle) or CSS. > I've already Qt based libraries how much is the difficult to use them in Wt? > do they need special dealing or just like usual c++ libraries? You can use Qt libraries as usual C++ libraries. There is project wtwithqt, for intergation Wt event loop and Qt event loop to use Wt and Qt from one event loop. https://github.com/kdeforche/wt/tree/master/examples/wtwithqt > Does Wt has or support any multi-language engine just like Qt translation or > gettext? There is translation based on XML files. See http://www.webtoolkit.eu/wt/doc/reference/html/classWt_1_1WMessageResourceBundle.html On Sun, May 5, 2013 at 5:02 AM, Muhammad Bashir Al-Noimi <[email protected]> wrote: > Hello, > > I've some questions about Wt which they concern me although Wt has great > features by comparing to other web kits: > > As I know Wt API inspired from Qt why Wt doesn't join to qt-project.org or > at least collaborate with them? > Is there any plan to create GUI designer OR at least modify existing GUI > designer (I found Qt designer quite well)? > Why Wt doesn't use LGPL or BSD like most open source toolkits? > Is there any ability to use Wt with qmake instead of CMake? > Does Wt support layout direction (RightToLeft/LeftToRight) for all widgets? > How much is the difficult in case I used QtCreator as IDE for Wt (I'm Linux > developer)? > Does Wt has style engine just like Qt or I have to create the styles in > similar way to web based toolkits? > I've already Qt based libraries how much is the difficult to use them in Wt? > do they need special dealing or just like usual c++ libraries? > Does Wt has or support any multi-language engine just like Qt translation or > gettext? > > Thanks for help in advanced :-) > > -- > Best Regards, > Muhammad Bashir Al-Noimi > > > ------------------------------------------------------------------------------ > Get 100% visibility into Java/.NET code with AppDynamics Lite > It's a free troubleshooting tool designed for production > Get down to code-level detail for bottlenecks, with <2% overhead. > Download for free and get started troubleshooting in minutes. > http://p.sf.net/sfu/appdyn_d2d_ap2 > _______________________________________________ > witty-interest mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/witty-interest > ------------------------------------------------------------------------------ Get 100% visibility into Java/.NET code with AppDynamics Lite It's a free troubleshooting tool designed for production Get down to code-level detail for bottlenecks, with <2% overhead. Download for free and get started troubleshooting in minutes. http://p.sf.net/sfu/appdyn_d2d_ap2 _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
