Re: [Interest] Is there any C++ libs for formatting HTML code?

2012-10-11 Thread 程梁
Thank you very much! And I found another library named HTML Tidy, both are excellent work and I will try to integrate one of these into my Qt application. Cheng Liang Nanjing, China http://www.devbean.info > Date: Thu, 11 Oct 2012 15:08:30 +0200 > Subject: Re: [Interest] Is there any C++ libs f

Re: [Interest] Is QMfcApp still working ?

2012-10-11 Thread techabc
I have the same question. Dose QMfcApp support MFC 10.0,11.0 against QT 5.0? 2012/10/11 ynon perek : > Hi All, > > I'm looking to integrate some old code into Qt and found about the old > QMfcApp that may solve my problem. > I was wondering if anyone had any experience with it with recent versions

Re: [Interest] sequential animations on ListView Elements

2012-10-11 Thread Ramakanthreddy_Kesireddy
As I would like to animate each item separately, I tried the below approach and code:- Mymodel would include item name, x coordinate and y cordinate ((relative to item’s position in the listview) . It would allow you to animate y from 0 to final value (item animated vertically, from the bottom

Re: [Interest] Is there any C++ libs for formatting HTML code?

2012-10-11 Thread Miha Wagner
Take a look at Scintilla (http://www.scintilla.org/). On Thu, Oct 11, 2012 at 8:53 AM, 程梁 wrote: > Hi, there! I'm trying to develop an HTML editor with QtWebKit. Now I want to > know if there is any C++ libraries for formatting HTML code? I found a > JavaScript library named beautify.js which cou

Re: [Interest] Representing to-many relationships in property system?

2012-10-11 Thread Nikos Chantziaras
On 11/10/12 01:07, Chris Meyer wrote: > The Qt property system easily represents properties (scalars) and > to-one relationships (objects) using the Q_PROPERTY macro. No, not really. This isn't SQL. It's C++. You cannot just declare relationships. You will need to implement them on your own.