[Interest] Qt 4.8 (and Qt 5 too?) really need a digested file of to-be-shown copyright, licensing information

2014-04-01 Thread Jonas Thiem
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi *, I checked the Qt licensing a bit: http://qt-project.org/doc/qt-4.8/legal-easing.html Short conclusion: it is complex. Now I see the following problem (keep in mind IANAL): Any application linking to Qt falls under "work that uses the Library"

Re: [Interest] import QtQml.Models 2.0 error

2014-04-01 Thread zhxt
hi, Cheng Liang:  On Tuesday, April 1, 2014 9:05 PM, 程梁 wrote: Hi, there! I'm trying to develop with QML and Qt Creator 3.0. When I add the statement "import QtQml.Models 2.0", QTC says "module "QtQml.Models" version 2.0 is not installed". I tried with Qt 5.2.1 on Windows 7/8 (VS2010/VS2012

Re: [Interest] Blog is down?

2014-04-01 Thread Tomasz Siekierda
On 1 April 2014 18:38, Bob Hood wrote: > On 4/1/2014 9:54 AM, Jason H wrote: >> http://blog.qt.digia.com/ >> >> >> Error establishing a database connection > > Confirmed. Fear not, it's up again ;-) ___ Interest mailing list Interest@qt-project.org http

Re: [Interest] Blog is down?

2014-04-01 Thread Bob Hood
On 4/1/2014 9:54 AM, Jason H wrote: > http://blog.qt.digia.com/ > > > Error establishing a database connection Confirmed. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Blog is down?

2014-04-01 Thread Jason H
http://blog.qt.digia.com/ Error establishing a database connection ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] [Development] Qt5.2.1+eglfs / WebKit2 running on i.MX6q ?

2014-04-01 Thread Thomas Senyk
On Tuesday, 01 April, 2014 15:48:01 Michael Olbrich wrote: > Hi, > > On Tue, Apr 01, 2014 at 11:27:09AM +0200, Thomas Senyk wrote: > > On Wednesday, 26 February, 2014 12:51:30 BERTIN, NICOLAS wrote: > > > I'm trying to get WebKit2 running on a Linux/i.MX6Q board (sabresd). I > > > succeeded in bui

Re: [Interest] [Development] Qt5.2.1+eglfs / WebKit2 running on i.MX6q ?

2014-04-01 Thread Michael Olbrich
Hi, On Tue, Apr 01, 2014 at 11:27:09AM +0200, Thomas Senyk wrote: > On Wednesday, 26 February, 2014 12:51:30 BERTIN, NICOLAS wrote: > > I'm trying to get WebKit2 running on a Linux/i.MX6Q board (sabresd). I > > succeeded in building Qt5.2.1+eglfs and the WebKit1 based examples are > > running well

[Interest] import QtQml.Models 2.0 error

2014-04-01 Thread 程梁
Hi, there! I'm trying to develop with QML and Qt Creator 3.0. When I add the statement "import QtQml.Models 2.0", QTC says "module "QtQml.Models" version 2.0 is not installed". I tried with Qt 5.2.1 on Windows 7/8 (VS2010/VS2012) and Mac OS X(clang), all the same. Do you know what's happening?

Re: [Interest] QFileSystemWatcher

2014-04-01 Thread Graham Labdon
Thanks for the info -Original Message- From: interest-bounces+graham.labdon=avalonsciences@qt-project.org [mailto:interest-bounces+graham.labdon=avalonsciences@qt-project.org] On Behalf Of Koehne Kai Sent: 01 April 2014 11:24 To: Koehne Kai; sarah jones; interest@qt-project.org S

Re: [Interest] QFileSystemWatcher

2014-04-01 Thread Koehne Kai
(bringing this back to interest@ ...) > -Original Message- > From: sarah jones [mailto:qtsa...@outlook.com] > Sent: Tuesday, April 01, 2014 12:13 PM > To: Koehne Kai > Subject: RE: [Interest] QFileSystemWatcher > > Hi > I am using Qt5.2.1 on Windows 7 > I think that the problem may lie in

Re: [Interest] QFileSystemWatcher

2014-04-01 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=digia@qt-project.org > [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Of > sarah jones > Sent: Tuesday, April 01, 2014 11:47 AM > To: interest@qt-project.org > Subject: [Interest] QFileSystemWatcher > >

[Interest] QFileSystemWatcher

2014-04-01 Thread sarah jones
Hi I have encapsulated a QFileSystemWatcher object into a class to detect when a file of a given format appears in a given folder and emits a signal when this is the case. In another class I catch this signal and attempt to add it to a text edit widget in my ui. In my processing slot I have –

Re: [Interest] Qt5.2.1+eglfs / WebKit2 running on i.MX6q ?

2014-04-01 Thread Thomas Senyk
On Wednesday, 26 February, 2014 12:51:30 BERTIN, NICOLAS wrote: > Hey all, > > I'm trying to get WebKit2 running on a Linux/i.MX6Q board (sabresd). I > succeeded in building Qt5.2.1+eglfs and the WebKit1 based examples are > running well. > > Now, I'm trying to get WebKit2 running: the MiniBrowse

Re: [Interest] Highlighting selected text in QTextDocument::drawContents()

2014-04-01 Thread igor.mironchik
Don't know will it work with QTextDocument::drawContents() or not. I did it like it done in QTextEdit: p.save(); QAbstractTextDocumentLayout::PaintContext ctx = getPaintContext( q ); p.setClipRect( r, Qt::IntersectClip ); ctx.clip = r; doc->documentLayout()->draw( &p, ctx ); p.restore(); -O

Re: [Interest] Highlighting selected text in QTextDocument::drawContents()

2014-04-01 Thread Diego Iastrubni
Depends on the use case, but what about QTextDocument::setExtraSelections() with the correct QTextCursor? See: http://qt-project.org/doc/qt-4.8/qtextedit.html#setExtraSelections On Sat, Mar 29, 2014 at 10:27 PM, wrote: > Hi. > > How to highlight selected text in QTextDocument::drawContents() ?