[Qt-creator] Double templates in function declaration

2009-12-16 Thread Eirik Ulvik
Found this small bug. I have a function that takes arguments with double templates. I declare it in the .h file. When I then want to write the implementation QtCreator pops up with the function signature for autocompletion. The problem with the autocomplete is that the space between the two las

[Qt-creator] Debugger will not stop at break point in OS X 10.5.8 with QtCreator 1.3

2009-12-16 Thread Michael Jackson
I am trying to debug an application being built with QtCreator. The backend build is being run by CMake. I go into the Project settings, set the active executable and debug executable to the program I want to debug. Place a breakpoint at the first line inside "main()" and then hit "F5". The applica

Re: [Qt-creator] Debugger will not stop at break point in OS X 10.5.8 with QtCreator 1.3

2009-12-16 Thread Andre Poenitz
On Wed, Dec 16, 2009 at 10:53:19AM -0500, Michael Jackson wrote: > I am trying to debug an application being built with QtCreator. The backend > build is being run by CMake. I go into the Project settings, set the active > executable and debug executable to the program I want to debug. Place a > br

[Qt-creator] Debugging problem Creator

2009-12-16 Thread Sujan Dasmahapatra
Friens I am trying to debug my application in QT-Creator. I have configured QTfor VC++ at this location c:\Qt\2009.04\qt Now I am also using qt-creator and my application is built successfully in creator in debug mode. But when I am putting a break point and pree F5 it gives a message as Cannot d

Re: [Qt-creator] Debugger will not stop at break point in OS X 10.5.8 with QtCreator 1.3

2009-12-16 Thread Michael Jackson
On 12/16/09 12:28 PM, in article 20091216172839.gc3...@tu-chemnitz.de, "Andre Poenitz" wrote: > On Wed, Dec 16, 2009 at 10:53:19AM -0500, Michael Jackson wrote: >> I am trying to debug an application being built with QtCreator. The backend >> build is being run by CMake. I go into the Project sett

[Qt-creator] Syntax Highlighting for Our own classes

2009-12-16 Thread Michael Jackson
Are there any plans on the road map to allow for syntax coloring of our own classes? I noticed that Qt classes are a different color but my own classes are just the color of plain text. Or is this a case of "user error". The indexing does seem to be working, even with boost thrown in the mix. Than

[Qt-creator] Add new project templates

2009-12-16 Thread Tiago Correia
Hi, I'd like to add new templates for projects, when creating a new project. How can i do this? A project that is very useful for me is, for creating a simple C or C++ program, that doesn't use Qt. I've always to edit the pro file. If this could be done, I can see Qt Creator as tool for helping n

[Qt-creator] Dependencies in Qt Creator

2009-12-16 Thread John Vilburn
I have a .pro file that looks like this: TEMPLATE = subdirs CONFIG += ordered SUBDIRS = Project1 \ Project2 \ Project3 Some of the .h files in Project1 are used in Project2 and Project3. When I change one of those header files and do a build, only the files in Project1 get r

Re: [Qt-creator] Dependencies in Qt Creator

2009-12-16 Thread Coda Highland
You can use PRE_TARGETDEPS in the subdirs' .pro files to watch for individual files to be modified. /s/ Adam On Wed, Dec 16, 2009 at 7:21 PM, John Vilburn wrote: > I have a .pro file that looks like this: > > TEMPLATE = subdirs > CONFIG += ordered > SUBDIRS = Project1 \ >          Project2 \ >  

Re: [Qt-creator] Dependencies in Qt Creator

2009-12-16 Thread John Vilburn
Adam, Thank you for the response. The problem I see with that approach is that whenever I add or remove a new header in one project I have to remember to modify PRE_TARGETDEP in the other project. I guess I could put the headers in a .pro.inc file and include that in both .pro files. But agai

[Qt-creator] SIGGRAPH AISA 09

2009-12-16 Thread paulo
Hi, i'm currently at SIGGRAPH ASIA 09, where there is a QT stand. I was wondering if any qt-creator developer was around. =D ___ Qt-creator mailing list Qt-creator@trolltech.com http://lists.trolltech.com/mailman/listinfo/qt-creator

Re: [Qt-creator] Dependencies in Qt Creator

2009-12-16 Thread Coda Highland
Well, usually when you're dealing with projects like this putting a dependency on the target file is generally sufficient, since that target file (in its own project file) has a dependency on the header files. (This is, by the way, the canonical workaround for dealing with dependency tracking on st