Hello! > Changing the direction will affect on all child widgets in case I called it > for application instance? Should be so.
> I looked for this feature and I discoved that using qmake isn't easy as you > expect because Wt depends on boost which is using cmake so -theoretically- > I've run boost in qmake to be able to run Wt in qmake too which is very very > complicated procedure... is it? Boost uses self build tool (bjam), Wt uses cmake. You can use these libraries with build system you want. Add Wt libraries to LIBS variable of qmake .pro file: LIBS += -lwt -lwthttp -lboost_signals (to compile with fastcgi connector, replace -lwthttp with -lwtfcgi) After this (on linux at least) you can use Wt library from your project. It is implied that Wt is installed in proper location. > Is there any translation tool for parsing generated xml translation file > just like QtLinguist (*.ts files are xml files too)? Unfortunately, no such tool for Wt. On Mon, May 6, 2013 at 2:07 AM, Muhammad Bashir Al-Noimi <[email protected]> wrote: > Thanks for quick responding :-) > > On 05/05/2013 11:15 AM, Nagaev Boris wrote: > > Hello, > > I know the answers to some of your questions. > > 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. > > Awesome ;-) > Changing the direction will affect on all child widgets in case I called it > for application instance? > > > > 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. > > I looked for this feature and I discoved that using qmake isn't easy as you > expect because Wt depends on boost which is using cmake so -theoretically- > I've run boost in qmake to be able to run Wt in qmake too which is very very > complicated procedure... is it? > > > 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 > > Is there any translation tool for parsing generated xml translation file > just like QtLinguist (*.ts files are xml files too)? > > PS > Guys, do you know any idea about the rest of my questions? > > 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? > > > > -- > 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
