[Qt-creator] Ability to specify custom tools

2010-07-21 Thread Litkevich Yuriy

 Please make the possibility of creating custom tools.
Example:
Specify field Name = Make debug
Specify field Command = make debug
...
This name appears in the Tools menu.
When I click on the Make debug item, the corresponding command is 
executed.


It would be very convenient to realize the establishment of custom 
tools. Which would appear as a submenu.



Attached screenshot of Programmer's Notepad 2, which I use to write 
programs.






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


Re: [Qt-creator] Ability to specify custom tools

2010-07-21 Thread Danny Price
If you want a custom tool to run automatically as part of a build, qmake has
the QMAKE_POST_LINK variable to which you can pass a command line program
name and options.

On Wed, Jul 21, 2010 at 8:06 AM, Litkevich Yuriy lit-u...@yandex.ru wrote:

  Please make the possibility of creating custom tools.
 Example:
 Specify field Name = Make debug
 Specify field Command = make debug
 ...
 This name appears in the Tools menu.
 When I click on the Make debug item, the corresponding command is
 executed.

 It would be very convenient to realize the establishment of custom tools.
 Which would appear as a submenu.


 Attached screenshot of Programmer's Notepad 2, which I use to write
 programs.






 ___
 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] Last two weeks in Berlin

2010-07-21 Thread anshul mehta
Hi..thanks for the update..I'm really looking forward to qt creator 2.2,I
just started working with 2.0 and debugging helpers is an awesome thing..
Also looking forward to
http://share.ovi.com/media/tobias.hunger.Qtcreator/tobias.hunger.10001

Cheers!
Anshul

On Wed, Jul 21, 2010 at 8:16 AM, alan.westbr...@nokia.com wrote:

 Hi Tobias,

 I don't know why no one else has replied to this, but thanks for the
 updates, it all sounds great!

 Thanks,
 Alan


 On Jul 19, 2010, at 5:46 AM, ext Tobias Hunger wrote:

  Hello everybody!
 
  We do reports gere at Nokia to communicate our recent achievements to
  our higher ups and coworkers. I have thought that these reports would be
  a great way to communicate to the wider Qt creator community and
  volunteered to edit the Qt Creator team's report for public consumption.
  So here is the first Last two weeks in Berlin:
 
 
 
  Summer has come to Germany, raising the mercury to 33.3 degrees
  (celsius) in the Berlin office. Nevertheless, we introduced a lot of
  cool features in the Qt Creator master branch (which will become Qt
  Creator 2.2).
 
  * the find tool bar saw small improvements (text instead of icons for
the replace stuff, etc)
 
  * Wizard for deploy-able QML applications:
New QML Project now creates something which is immediately
runnable on Symbian devices
 
  * qml js debugging and qml live preview improvements
 
  * Refactoring started to improve deployment of project to devices
 
  * Qt Creator Manual was updated to cover all the new features in 2,1
 
  * Help tooltips for objects and include files were introduced
See
  http://share.ovi.com/media/tobias.hunger.Qtcreator/tobias.hunger.10003and
http://share.ovi.com/media/tobias.hunger.Qtcreator/tobias.hunger.10002
 
  * Outline view for documents was added
 
  * Class browser contributed by Denis Mingulov was merged. Thanks Denis,
this is a awesome contribution of something many users wanted to have
for a long time now!
 
  * Awesome extraAdditionalFormats in the base texteditor to provide
really fast semantic highlighting
 * This makes creator fast enough for us to enable highlighting of
   local variables and class members now!
   See:
  http://share.ovi.com/media/tobias.hunger.Qtcreator/tobias.hunger.10001
 
  * quick fix for completing enum based switch statements (so all enum
 values are explicitly checked). Just press Alt-Enter while the
 cursor is on the switch statement!
 
  * Finding  Fixing bugs, bugs, bugs
 
 
 
  To be continued... (at least if I don't get lots of flames:-).
 
  Best Regards,
  Tobias
 
  --
  Tobias Hunger
  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 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


[Qt-creator] VTK with Qt creator

2010-07-21 Thread Jothy
Hi Guys,

I want to use vtk with Qt creator,. I have built vtk and had it installed in
C:\VTK and it has vtk\bin,vtk\lib,vtk\plugin,vtk\include.

Now, how to use them in Qt creator

I found after some search, I have to add

LIBS += -LC:\Program Files\VTK -lvtkCommon -lvtksys -lQVTK -lvtkQtChart
-lvtkViews -lvtkWidgets -lvtkInfovis -lvtkRendering -lvtkGraphics
-lvtkImaging -lvtkIO -lvtkFiltering -lvtklibxml2 -lvtkDICOMParser -lvtkpng
-lvtkpng -lvtktiff -lvtkzlib -lvtkjpeg -lvtkalglib -lvtkexpat -lvtkverdict
-lvtkmetaio -lvtkNetCDF -lvtksqlite -lvtkexoIIc -lvtkftgl -lvtkfreetype
-lvtkHybrid

INCLUDEPATH += C:\Program Files\VTK

to the *.pro file.


Is this correct?

I am yet to try this!

Thank you

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


Re: [Qt-creator] Ability to specify custom tools

2010-07-21 Thread Coda Highland
I wouldn't want, for instance, make docs to be run as part of my
normal build process. I would also like to see this feature to deal
with non-trivial Makefile-based projects, so custom steps could be
added to invoke stuff that the built-in functions don't touch.

/s/ Adam

On Wed, Jul 21, 2010 at 3:02 AM, Danny Price deepblue...@googlemail.com wrote:
 If you want a custom tool to run automatically as part of a build, qmake has
 the QMAKE_POST_LINK variable to which you can pass a command line program
 name and options.

 On Wed, Jul 21, 2010 at 8:06 AM, Litkevich Yuriy lit-u...@yandex.ru wrote:

  Please make the possibility of creating custom tools.
 Example:
 Specify field Name = Make debug
 Specify field Command = make debug
 ...
 This name appears in the Tools menu.
 When I click on the Make debug item, the corresponding command is
 executed.

 It would be very convenient to realize the establishment of custom tools.
 Which would appear as a submenu.


 Attached screenshot of Programmer's Notepad 2, which I use to write
 programs.






 ___
 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



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


[Qt-creator] Latest Windows Build?

2010-07-21 Thread Robert Caldecott
The most up-to-date Windows build of Qt Creator I can find is from July 12th
- is this correct?  Are there plans for a regular nightly Windows build?
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


Re: [Qt-creator] Latest Windows Build?

2010-07-21 Thread Coda Highland
I believe earlier on the ML it was stated that the Windows builds are
currently failing autotests or something.

/s/ Adam

On Wed, Jul 21, 2010 at 9:21 AM, Robert Caldecott
robert.caldec...@gmail.com wrote:
 The most up-to-date Windows build of Qt Creator I can find is from July 12th
 - is this correct?  Are there plans for a regular nightly Windows build?

 ___
 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


[Qt-creator] How to set LIBS in pro file?

2010-07-21 Thread Jothy
Hi Guys,

I have managed to build Qt creator from src, now I am using it with vtk. I
have built and installed vtk in C:\VTK and I have bin,lib,include.

I set INCLUDEPATH += C:\VTK\include\vtk-5.6



I set LIBS += -L\C:\VTK\lib\vtk-5.6 -llibQVTK.dll.a -llibvtkCommon.dll.a

and its able to find the files in include dir, but it say unable to find
dir/file QVTK.

What's wrong?

Thanks,

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


Re: [Qt-creator] How to set LIBS in pro file?

2010-07-21 Thread Karl Ruetz




try this:  -lQVTK

Karl

On 7/21/2010 11:21 AM, Jothy wrote:

  Hi Guys,
  
I have managed to build Qt creator from src, now I am using it with
vtk. I have built and installed vtk in C:\VTK and I have
bin,lib,include.
  
I set INCLUDEPATH += C:\VTK\include\vtk-5.6
  
  
  
I set LIBS += -L\C:\VTK\lib\vtk-5.6 -llibQVTK.dll.a -llibvtkCommon.dll.a
  
and its able to find the files in include dir, but it say unable to
find dir/file QVTK.
  
What's wrong?
  
Thanks,
  
Jothy
  
  
  
  

___
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] How to set LIBS in pro file?

2010-07-21 Thread Danny Price
You don't pass the 'lib' and '.a' parts to the variable, only the library name.

On 21 Jul 2010, at 17:21, Jothy wrote:

 Hi Guys,
 
 I have managed to build Qt creator from src, now I am using it with vtk. I 
 have built and installed vtk in C:\VTK and I have bin,lib,include.
 
 I set INCLUDEPATH += C:\VTK\include\vtk-5.6
 
 
 
 I set LIBS += -L\C:\VTK\lib\vtk-5.6 -llibQVTK.dll.a -llibvtkCommon.dll.a
 
 and its able to find the files in include dir, but it say unable to find 
 dir/file QVTK.
 
 What's wrong?
 
 Thanks,
 
 Jothy
 
 
 ___
 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