Re: [Interest] Qt assistant example not working

2012-01-12 Thread Sujan Dasmahapatra
Hi Alex Assistant_adp is not required, that's the old way. Simpletextviewer is not implemented that way. Its using only 'assistant' and running as a process with the aruguments as .qhc file. Everythings seems correct as per the code but its not launching the assistant it's crashing. Kind regard

Re: [Interest] Qt assistant example not working

2012-01-12 Thread Alex Malyushytskyy
Debug void MainWindow::initializeAssistant() and find out why it fails. Mostly likely you don't have assistant_adp.exe in the QLibraryInfo::location(QLibraryInfo::BinariesPath); Alex On Thu, Jan 12, 2012 at 3:39 AM, Sujan Dasmahapatra wrote: > Dear Friends > > I am trying to build the ‘simplet

Re: [Interest] QtSVG deprecated

2012-01-12 Thread André Pönitz
On Wed, Jan 11, 2012 at 11:34:45PM -0200, Thiago Macieira wrote: > On Wednesday, 11 de January de 2012 15.34.34, Alex Malyushytskyy > wrote: > > > No you don't. You have something which tries to implement Svg > > > Tiny, but apparently is not complete or bug-free. > > > > I believe you are wrong.

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Jason H
MD5 summing & comparing would be the only way, and even then another program would be indistinguishable if it made the same changes. However that corner case should be a moot point. From: Bo Thorsen To: interest@qt-project.org Sent: Thursday, January 12, 201

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Bo Thorsen
Den 12-01-2012 14:56, Atlant Schmidt skrev: > All: > >> With this class you just do this: >> >> { >> SignalBlocker blocker(watcher); >> modifyTheFile(); >> } > >It seems to me that there's a race condition here. >Unless you're taking steps to deliberately lock-out >other proce

Re: [Interest] QtCreator

2012-01-12 Thread Bo Thorsen
Den 12-01-2012 16:46, Duane skrev: > I have creator installed on a widows desktop and can build with MSVC8 or > MingW tool chains. Is it possible to set this up to build and deploy to > an embedded linux or standard linux target? If so, how do I get setup > the toolchain? It is possible, yes. Yo

Re: [Interest] OT: Bug-free code (Was: QtSVG deprecated)

2012-01-12 Thread Thiago Macieira
On Thursday, 12 de January de 2012 13.15.09, Atlant Schmidt wrote: > (Compiler/toolchain validation is a huge area > of very serious discussion.) For example, I've found a serious issue with the toolchain today, relating to Qt 5. -- Thiago Macieira - thiago (AT) macieira.info - thiago (AT)

Re: [Interest] OT: Bug-free code (Was: QtSVG deprecated)

2012-01-12 Thread Atlant Schmidt
Andreas: > Ok, I shouldn't have said application when I really meant: 'this > piece of code' :). The above function is bug-free, executing it > in a buggy environment does not mean it suddenly has a bug. Do you *REALLY* know that? You might even know that your C(++) code doesn't have any bugs

Re: [Interest] OT: Bug-free code (Was: QtSVG deprecated)

2012-01-12 Thread Andreas Pakulat
On 12.01.12 08:50:47, Atlant Schmidt wrote: > > > My over 20 years experience shows that there is no bug free software, > > > there are bugs that either have not being found yet or just ignored. > > > > Well, one example of a bug-free application would be > > > > int main() > > { > > return 0; >

Re: [Interest] Deplying QML apps to Android (Qt 4.8)

2012-01-12 Thread Jason H
Thanks... I think I'm set up except that I don't see QtQuick3d Support. Any idea how I might add that? From: "gareth.stockw...@accenture.com" To: scorp...@yahoo.com; interest@qt-project.org Sent: Wednesday, January 11, 2012 5:26 AM Subject: RE: [Interest] De

[Interest] QtCreator

2012-01-12 Thread Duane
I have creator installed on a widows desktop and can build with MSVC8 or MingW tool chains. Is it possible to set this up to build and deploy to an embedded linux or standard linux target? If so, how do I get setup the toolchain? ___ Interest mailin

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Jason H
No. It is just an abstraction of your operating system's file system notification code. AFAIK, none of these native APIs support "do not notify for process X". From: Sujan Dasmahapatra To: interest@qt-project.org Sent: Thursday, January 12, 2012 7:26 AM Subj

Re: [Interest] OT: Bug-free code (Was: QtSVG deprecated)

2012-01-12 Thread Gopalakrishna Bhat
On Thu, Jan 12, 2012 at 7:20 PM, Atlant Schmidt wrote: > > > My over 20 years experience shows that there is no bug free software, > > > there are bugs that either have not being found yet or just ignored. > > > > Well, one example of a bug-free application would be > > > > int main() > > { > >

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Atlant Schmidt
All: > With this class you just do this: > > { > SignalBlocker blocker(watcher); > modifyTheFile(); > } It seems to me that there's a race condition here. Unless you're taking steps to deliberately lock-out other processes from modifying the file, then they could slip in immediate

[Interest] OT: Bug-free code (Was: QtSVG deprecated)

2012-01-12 Thread Atlant Schmidt
> > My over 20 years experience shows that there is no bug free software, > > there are bugs that either have not being found yet or just ignored. > > Well, one example of a bug-free application would be > > int main() > { > return 0; > } > > Sure it does not do anything useful, but its pretty mu

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Muthulingam Ammaiappan
Hi Konstantin, it is working nowi just installed the QtCreator 2.4.0... and it does automatically integrate the gdb with QtCreator IDE... Thanks & Regards, Muthulingam On Thu, Jan 12, 2012 at 6:00 PM, Muthulingam Ammaiappan < muthulinga...@gmail.com> wrote: > Hi Konstantin Tokarev, > > Than

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Robin Burchell
On Thu, Jan 12, 2012 at 2:26 PM, Sujan Dasmahapatra wrote: > QFileSystemWatcher intends to give signal if the file is modified outside of > the application right ??? Let me know if I am wrong. But I am modified the > file from within the application then why it should emit the signal. Tha

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread André Somers
Op 12-1-2012 13:26, Sujan Dasmahapatra schreef: > QFileSystemWatcher intends to give signal if the file is modified outside of > the application right ??? Wrong. It will notify you if a file is modified, period. It doesn't care about who did the modification. > Let me know if I am wrong. But I

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Sujan Dasmahapatra
QFileSystemWatcher intends to give signal if the file is modified outside of the application right ??? Let me know if I am wrong. But I am modified the file from within the application then why it should emit the signal. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aer

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Muthulingam Ammaiappan
Hi Konstantin Tokarev, Thanks for your Reply first i will install the Qt Creator2.4.0 and try... Regards, Muthulingam 2012/1/12 Konstantin Tokarev > 12.01.2012, 16:24, "Muthulingam Ammaiappan" : > > Hi Konstantin Tokarev,Thanks for your Quick Reply. > > i have installed the Qt 4.7.0

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Konstantin Tokarev
12.01.2012, 16:24, "Muthulingam Ammaiappan" : > Hi Konstantin Tokarev,Thanks for your Quick Reply. > i have installed the Qt 4.7.0 & QtCreator 2.0.1 by using > "qt-sdk-win-opensource-2010.05.exe"... > so  should i reinstall the Qt with new version??? You can, but don't need it. You can use an

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Muthulingam Ammaiappan
Hi Konstantin Tokarev, Thanks for your Quick Reply. i have installed the Qt 4.7.0 & QtCreator 2.0.1 by using "qt-sdk-win-opensource-2010.05.exe"... so should i reinstall the Qt with new version???... that will solve my problem(Integration of gdb & QtCreator)??? Thanks & Regards, Muthulinga

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Konstantin Tokarev
12.01.2012, 16:11, "Muthulingam Ammaiappan" : > Hi Friends,I am facing the problem to integrate the "gdb" debugger with > QtCreator 2.0.1... You should try Qt Creator 2.4.0 first. -- Regards, Konstantin ___ Interest mailing list Interest@qt-project.or

[Interest] Qt assistant example not working

2012-01-12 Thread Sujan Dasmahapatra
Dear Friends I am trying to build the 'simpletextviewer' example and run. Its build successfully. After launching the application I am clicking on help assistant I can see the assistant is coming and going off. The help assistant is not launching. I am using Qt4.5.2. Now I am trying to implem

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Andreas Pakulat
On 12.01.12 09:14:33, Bo Thorsen wrote: > Den 12-01-2012 08:35, Andreas Pakulat skrev: > > On 12.01.12 08:01:17, Sujan Dasmahapatra wrote: > >> Dear Friends > >> > >> I am using QFileSystemWatcher for knowing when the file is modified from > >> outside my application. I am seeing even if the file i

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread André Somers
Op 12-1-2012 9:14, Bo Thorsen schreef: > I just put my SignalBlocker implementation on my blog: > > http://www.fioniasoftware.dk/blog/?p=158 > > (Sorry for the plug but it was a bit long for a mail, and there might be > other interested in it.) > > With this class you just do this: > > { > Sign

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Bo Thorsen
Den 12-01-2012 08:35, Andreas Pakulat skrev: > On 12.01.12 08:01:17, Sujan Dasmahapatra wrote: >> Dear Friends >> >> I am using QFileSystemWatcher for knowing when the file is modified from >> outside my application. I am seeing even if the file is modified from >> the application this is giving me