[Qt-creator] Append G++ location to path

2010-07-02 Thread Charles N Burns
A checkbox which allows Qt Creator's MinGW and other necessary paths
for command-line compiling would be a nice addition to the Qt Creator
installer. I often build Qt from command line and always have to
change this in the path every time I install a new version.
Alternatively or additionally, a batch file or icon which opens a
preconfigured command prompt (a la Visual Studio) would be a
convenient addition as well/

-- 
"Be kind, for everyone you meet is fighting a hard battle." --Plato
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] QtCreator 2.0.0. Is there's a way to force display of char arrays as (const char*) in the IDE watch widget?

2010-07-02 Thread André Pönitz
On Friday 02 July 2010 16:19:36 ext tech user wrote:
> Many thanks andre, but what we are looking for is a default behavior like 
> using gdbhelper or gdbmacros.
> We are using c++ classes to represent a tables in the database where we can 
> have 300 fields of type char[], so manual behavior is not really an option.

Then the easiest way would be to get a python enabled gdb and
"fix" share/qtcreator/gdbmacros/dumper.py near the location where
it mentions gdb.TYPE_CODE_ARRAY.

Andre'
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] QtCreator 2.0.0. Is there's a way to force display of char arrays as (const char*) in the IDE watch widget?

2010-07-02 Thread tech user
Many thanks andre, but what we are looking for is a default behavior like
using gdbhelper or gdbmacros.
We are using c++ classes to represent a tables in the database where we can
have 300 fields of type char[], so manual behavior is not really an option.

Regards
TechSign





On Fri, Jul 2, 2010 at 2:28 PM, André Pönitz wrote:

> On Thursday 01 July 2010 12:17:44 ext tech user wrote:
> > Hi all
> >
> > and thanks in advance.
> >
> > Is there's a way to force display of char arrays as  (const char*) in the
> IDE watch widget?
>
> > Environment
> > Qt Creator Version: 2.0.0
> > OS: Red Hat (RHEL5)
> > GDB: gdb 7.0.1 (no python scripts enabled)
> >
> > background:
> > We are working heavily with char arrays.
> > i.e
> > char a[100];
>
> You could create a new "Watcher" item (context menu of Locals&Watchers)
> and add   (char*)athere.
>
> Andre'
> ___
> Qt-creator mailing list
> Qt-creator@trolltech.com
> http://lists.trolltech.com/mailman/listinfo/qt-creator
>
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] Plugin to display compile errors warnings etc. inline

2010-07-02 Thread Liebe Markus (RtP2/TEF72)
Hello Daniel,

> > At the moment I connect the BuildManager::tasksChanged()
> signal to a slot
> >  where I query the BuildManager to get all the tasks. It
> would be nice if
> >  there was a signal like BuildManager::taskAdded(const
> >  ProjectManager::Task&).
> Yes, such a signal sounds reasonable.

Think so, too =)

> > If there is no such Interface at the moment, would it be
> possible for you
> >  to extend the BuildManager and add such an interface?
> Well, I suppose you could create a merge request with the
> changes you need.

As I am sitting behind a corporate firewall it is not possible for me at the 
moment to do a git push to gitorious.
And as a consequence I cannot create a merge request via gitorious.

So I decided to send the little patch containing the changes to the list. The 
patch is against QtCreator 2.0.0
It just adds the following new signals

BuildManager::taskAdded(const ProjectManager::Task&)
BuildManager::tasksCleared()
TaskWindow::tasksCleared()

Can you check if it is possible to add these small changes to qtcreator?

Mit freundlichen Grüßen / Best regards

Markus Liebe

Robert Bosch GmbH
Automotive Electronics, RtP2/TEF72
Postfach 13 42
72703 Reutlingen
GERMANY
www.bosch.com

Tel. 07121 35-35246
markus.li...@de.bosch.com

Sitz: Stuttgart, Registergericht: Amtsgericht Stuttgart, HRB 14000;
Aufsichtsratsvorsitzender: Hermann Scholl; Geschäftsführung: Franz Fehrenbach, 
Siegfried Dais;
Bernd Bohr, Rudolf Colm, Volkmar Denner, Gerhard Kümmel, Wolfgang Malchow, 
Peter Marks,
Peter Tyroller; Uwe Raschke


changesForInlineTaskDisplay.patch
Description: changesForInlineTaskDisplay.patch
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] QtCreator 2.0.0. Is there's a way to force display of char arrays as (const char*) in the IDE watch widget?

2010-07-02 Thread André Pönitz
On Thursday 01 July 2010 12:17:44 ext tech user wrote:
> Hi all
> 
> and thanks in advance.
> 
> Is there's a way to force display of char arrays as  (const char*) in the IDE 
> watch widget?

> Environment
> Qt Creator Version: 2.0.0
> OS: Red Hat (RHEL5)
> GDB: gdb 7.0.1 (no python scripts enabled)
>
> background:
> We are working heavily with char arrays.
> i.e
> char a[100];

You could create a new "Watcher" item (context menu of Locals&Watchers)
and add   (char*)athere.

Andre'
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] ActiveQt and MinGW

2010-07-02 Thread Piotr Rokicki
Robert Caldecott pisze:
> Apologies for posting this here guys but I am struggling to find the
> definitive answer to this and a Creator guru may know the answer.

> I am trying to develop a COM server using the latest Qt/Qt Creator SDK
> and the MinGW toolchain.  My first issue was that the code fails to
> build because I didn't have a copy of the MS MIDL compiler.  I installed
> the latest MS Windows SDK and now MIDL runs but complains because it
> can't find cl.exe (the MS compiler).  So I downloaded Visual Studio
> Express and added cl.exe to the PATH and now the MIDL step works but I
> get an 'Failed to register application' error (I am building the
> ActiveQt comapp sample).
> 
> So ... can I build ActiveQt apps using MinGW or will I have to use the
> MS toolchain (and the appropriate MSVC 2008 build of Qt)?  I develop on
> different machines and would like to avoid MSVC if possible but I think
> I'm out of luck...

I am absolutely not a qtcreator guru, but it works for us, for the
simple cases (we do not use QAxAggregated and QAxBindable classes)

For example, if i start qtcreator from .bat file:

call "C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
set PATH=C:\Qt\2010.03\qt\bin;C:\Qt\2010.03\mingw\bin;%PATH%
start qtcreator.exe

Our COM servers compiles with mingw32 and registers with the help of
Microsoft tools.

[...]


___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] Developing extension on Qt State Machine Framework

2010-07-02 Thread eike.ziller

On Jul 2, 2010, at 10:39 AM, ext Antonio Cano Gómez wrote:

> Hi, 
> 
> I am trying to develop extensions to the Qt State Machine Framework. Mainly 
> on its conexions with formal logic and model checking. 
> 
> Please could someone if I could do it somewhere closer to Qt community and 
> how to contact people with the same interest? 

Join qt-inter...@trolltech.com, our Qt irc channel at 
irc://irc.freenode.org/#qt-labs, and have a look at 
http://qt.gitorious.org/qt/pages/QtContributionGuidelines

Best regards,
-- 
Eike Ziller
Software Engineer
Nokia, Qt Development Frameworks

Nokia gate5 GmbH
Firmensitz: Invalidenstr. 117, 10115 Berlin, Germany
Registergericht: Amtsgericht Charlottenburg, Berlin: HRB 106443 B
Umsatzsteueridentifikationsnummer: DE 812 845 193
Geschäftsführer: Dr. Michael Halbherr, Karim Tähtivuori




___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


[Qt-creator] Developing extension on Qt State Machine Framework

2010-07-02 Thread Antonio Cano Gómez
Hi,

I am trying to develop extensions to the Qt State Machine Framework. Mainly on 
its conexions with formal logic and model checking.

Please could someone if I could do it somewhere closer to  Qt community and how 
to contact people with the same interest?

Thanks,

A. Cano

--
Ovi Mail: Making email access easy
http://mail.ovi.com

___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator