Re: [Interest] Qt Installer Framework

2013-01-23 Thread Jenssen Tim
Just add Karsten, Niels or me or all of us three 😊 Von meinem Windows Phone gesendet Von: Иван Комиссаров Gesendet: ‎24.‎01.‎2013 08:11 An: Heimrich Karsten Cc: Weber Niels;

Re: [Interest] [Development] QGraphicScene with thousands of QGraphicItems freezes the APP

2013-01-23 Thread Samuel Rødal
On 01/24/2013 08:35 AM, Samuel Rødal wrote: > On 01/23/2013 08:02 PM, Jose wrote: >> Hello, >> >> I am developing a Qt-based application. The main part of the application >> if a QGraphicView widget >> whose scene is populated with thousands (sometimes hundreds of >> thousands) of QGraphicItems, mo

Re: [Interest] Qt Installer Framework

2013-01-23 Thread Иван Комиссаров
Here are they https://bugreports.qt-project.org/browse/QTIFW-207 https://codereview.qt-project.org/#change,45647 Whom should i add as a reviewer? Иван Комиссаров 23.01.2013, в 20:17, Karsten Heimrich написал(а): > Hi, > > Please file a bug report, and of course patches are welcome :) . Please

Re: [Interest] QtWebKit/QML on Mingw

2013-01-23 Thread Koehne Kai
> Subject: QtWebKit/QML on Mingw > >Hello, Hi Bruno, > I have this code working on Linux : > ... > But on 5.0.1 Qt build for Mingw , it keeps showing: " module "QtWebKit" is > not installed" > But QtWebKit works fine on QWidgets, and another components like QtDesktop > works nice. > The QtWebKit

Re: [Interest] Notes on porting exercise to Qt 5

2013-01-23 Thread Joshua Grauman
I'll add one more odd note about porting to Qt 5. I found that Qt::UniteClip is no longer an option in Qt5 as used in: painter.setClipRect(rect, Qt::UniteClip); I find this is a weird option to get rid of as Qt::IntersectClip is still there. Why one and not the other... Josh > On sexta-feira,

[Interest] Porting to Qt5/macx-xcode Mountain Lion

2013-01-23 Thread Joshua Grauman
Hello all, First a disclaimer, I know very little about Mac OS specifics. I only have a Mac to build my app for it. I am porting two apps to Mac OS Mountain Lion and Qt5. The apps have run fine on quite a few of the Qt4 series versions in Windows/Linux/Mac (Snow Leopard). They both run fine in

[Interest] QtWebKit/QML on Mingw

2013-01-23 Thread Bruno Cabral
Hello, I have this code working on Linux : import QtQuick 2.0 import QtWebKit 3.0 Rectangle{ id: rootangel color:"black" width: 1280 //parent.width height: 720 //parent.height //anchors.fill: parent WebView { url: "http://www.hulu.com"; width: rootangel.width height:

[Interest] How to port Qt App+third-party-library for Android with Necessitas?

2013-01-23 Thread Xiaognag Wang
Hi everyone, I need to port a Qt Application for Android platform with Necessitas, the Application dependents a third-party c++ library that compiled on Windows. I can port app for android with Necessitas, and alse can port the third-party c++ library for Android. But I am confused with this q

Re: [Interest] QtCreator, Mac OSX and LLDB?

2013-01-23 Thread André Pönitz
On Wed, Jan 23, 2013 at 09:02:16AM -0500, Michael Jackson wrote: > > On Jan 22, 2013, at 4:25 PM, André Pönitz wrote: > > > On Tue, Jan 22, 2013 at 08:50:30PM +, danny wrote: > >> I assumed it was common knowledge - you WILL hit this problem if > >> you try to trace into a non-trivial Qt appl

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread Jason H
Generally, I never need more than the fundamental types so signals/slots work. You also have to be careful of your database and database driver. Not all are multi-thread friendly, and Qt may impose additional constraints. From: Mandeep Sandhu To: "Interest@

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread Bo Thorsen
Den 23-01-2013 15:07, André Somers skrev: > Op 23-1-2013 13:08, Bo Thorsen schreef: >> Den 23-01-2013 08:42, Mandeep Sandhu skrev: >>> First I thought "I was doing it right" >>> >>> Then they said "you're doing it wrong" >>> (http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/) >>> >>> T

Re: [Interest] Qt Installer Framework

2013-01-23 Thread Karsten Heimrich
Hi, On 23.01.2013 16:44, Иван Комиссаров wrote: > I already found out, thanks. Names for localized licenses are constructed > using main file (license.txt) and base names of the *.qm files enumerated in > section. Not very intuitive, documentation should mention that > somehow. > > Also, i thi

Re: [Interest] Qt Installer Framework

2013-01-23 Thread Иван Комиссаров
I already found out, thanks. Names for localized licenses are constructed using main file (license.txt) and base names of the *.qm files enumerated in section. Not very intuitive, documentation should mention that somehow. Also, i think that UTF-8 codec should be used to read license files ins

Re: [Interest] QGLWidget (Qt5) + enter/leave event on OSX

2013-01-23 Thread Thiago Macieira
On quarta-feira, 23 de janeiro de 2013 09.39.12, Simon Drouin wrote: > Since upgrading to Qt5 on OSX (Mountain Lion), my QGLWidget does't get the > enter and leave events anymore. Anybody else experienced that problem? > > I suspect other kinds of widgets have the same problem because the cursor >

Re: [Interest] Does Qt5 support SIMD instructions?

2013-01-23 Thread Thiago Macieira
On quarta-feira, 23 de janeiro de 2013 10.38.19, Silvola Taito wrote: > Hi All, > > Does anyone know if Qt 5 supports SIMD instructions? I noticed this blog > post for Qt 4.x > http://blog.qt.digia.com/blog/2010/08/24/improving-the-rendering-performanc > e-with-more-simd/ Everything that applied

Re: [Interest] Qt Installer Framework

2013-01-23 Thread Karsten Heimrich
Hi, On 23.01.2013 14:41, Иван Комиссаров wrote: > Hm, that's sad:) > > Next question - how can i retranslate my license? In the tutorial example, > retranslated license is simply put near the license.txt. I did the same > thing, but my license is not loaded. > I also tried to add new license ent

[Interest] QGLWidget (Qt5) + enter/leave event on OSX

2013-01-23 Thread Simon Drouin
Since upgrading to Qt5 on OSX (Mountain Lion), my QGLWidget does't get the enter and leave events anymore. Anybody else experienced that problem? I suspect other kinds of widgets have the same problem because the cursor is not always behaving properly in QtCreator.

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread André Somers
Op 23-1-2013 13:08, Bo Thorsen schreef: > Den 23-01-2013 08:42, Mandeep Sandhu skrev: >> First I thought "I was doing it right" >> >> Then they said "you're doing it wrong" >> (http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/) >> >> Then I thought "I _finally_ got it right"!! >> >> No

Re: [Interest] QtCreator, Mac OSX and LLDB?

2013-01-23 Thread Michael Jackson
On Jan 22, 2013, at 4:25 PM, André Pönitz wrote: > On Tue, Jan 22, 2013 at 08:50:30PM +, danny wrote: >> I assumed it was common knowledge - you WILL hit this problem if you >> try to trace into a non-trivial Qt application on Mac. It was >> discussed previously on the mailing list and the Qt

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread Mandeep Sandhu
> So if someone just says he prefers one approach over all the others, > it's because he doesn't fully understand the pros and cons for the > choices. And that's why your question is wrong. There is no right > choice. Which fortunately for you is exactly what you had in the mail > subject :) Fortu

Re: [Interest] Qt Installer Framework

2013-01-23 Thread Иван Комиссаров
Hm, that's sad:) Next question - how can i retranslate my license? In the tutorial example, retranslated license is simply put near the license.txt. I did the same thing, but my license is not loaded. I also tried to add new license entries (with xml:lang attribute) into the package.xml, but as

Re: [Interest] Qt Installer Framework

2013-01-23 Thread Karsten Heimrich
Hi Iwan, On 23.01.2013 13:09, Иван Комиссаров wrote: > Hello. Is there anybody familiar with the Qt Installer Framework? I want to > create simple offline installer, but i can't remove "Package manager" and > "Update components" from the uninstaller (i.e. maintenance tool). Can anyone > help me

[Interest] Qt Installer Framework

2013-01-23 Thread Иван Комиссаров
Hello. Is there anybody familiar with the Qt Installer Framework? I want to create simple offline installer, but i can't remove "Package manager" and "Update components" from the uninstaller (i.e. maintenance tool). Can anyone help me? Иван Комиссаров __

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread Bo Thorsen
Den 23-01-2013 08:42, Mandeep Sandhu skrev: > First I thought "I was doing it right" > > Then they said "you're doing it wrong" > (http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/) > > Then I thought "I _finally_ got it right"!! > > Now they say "You were not doing so wrong" > (http:/

Re: [Interest] Does Qt5 support SIMD instructions?

2013-01-23 Thread Samuel Rødal
On 01/23/2013 11:38 AM, Silvola Taito wrote: > Hi All, > > Does anyone know if Qt 5 supports SIMD instructions? I noticed this blog post > for Qt 4.x > http://blog.qt.digia.com/blog/2010/08/24/improving-the-rendering-performance-with-more-simd/ What do you mean by "supports"? Qt uses NEON, SSE,

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread Sze Howe Koh
On 23 January 2013 16:30, Konstantin Tokarev wrote: > 23.01.2013, 12:29, "alexander golks" : >> but if you connect them queued, then they are executed in the thread, or not? > > Of course no (unless you are using moveToThread(this) which you shouldn't). @Alexander: No. To expand on what Konstant

[Interest] Does Qt5 support SIMD instructions?

2013-01-23 Thread Silvola Taito
Hi All, Does anyone know if Qt 5 supports SIMD instructions? I noticed this blog post for Qt 4.x http://blog.qt.digia.com/blog/2010/08/24/improving-the-rendering-performance-with-more-simd/ Br, --Taito ___ Interest mailing list Interest@qt-project.

Re: [Interest] Qt5 on MacOS X: State of the Toolbar

2013-01-23 Thread Sorvig Morten
On Jan 22, 2013, at 4:45 PM, Sensei wrote: > Dear all, > > is there any news on the toolbar on MacOS X? The last news reported that > an alternative to setUnifiedTitleAndToolBarOnMac was using an external > code as in > > http://qt.gitorious.org/qtplayground/qtmacextras > > Is there a

[Interest] Multiple QT_QWS_FONTDIRs

2013-01-23 Thread Lucas.Betschart
How can I have multiple font-directorys for a Qt-Application? I'd like to have one with the default (and fallback) fonts and one for the localized once (e.g. Arab-Fonts), both in different places. ___ Interest mailing list Interest@qt-project.org http:/

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-23 Thread Samuel Rødal
On 01/21/2013 07:33 PM, Wilhelm wrote: > Hi all, > > if I compile this stripped down minimal example > - > #include > #include > > int main(int argc, char *argv[]) > { > QApplication a(argc, argv); > QFileDialog fd(0, "Load from file", > QDir::currentP

Re: [Interest] Memory Leak in Graphic Card. OpenGL.

2013-01-23 Thread Samuel Rødal
On 01/22/2013 12:47 PM, Guido Seifert wrote: > Hi, could anyone help me with my OpenGL problem? Either it is a bug in the Qt > OpenGL libs, or it is me. Most likely it is me. I am quite the beginner with > OpenGL. > > The code: > http://pastebin.com/wQByE92h It seems a bit dubious that you have

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread Konstantin Tokarev
23.01.2013, 12:29, "alexander golks" : > Am Wed, 23 Jan 2013 11:56:55 +0400 > schrieb Konstantin Tokarev : > >>>  My rule of thumb is that, if you're doing a simple but compute >>>  intensive task where you don't want communication via signal/slots >>>  (probably thats what the author of the last

Re: [Interest] QThreads: There's no one way to "do it right"! :)

2013-01-23 Thread alexander golks
Am Wed, 23 Jan 2013 11:56:55 +0400 schrieb Konstantin Tokarev : > > My rule of thumb is that, if you're doing a simple but compute > > intensive task where you don't want communication via signal/slots > > (probably thats what the author of the last post meant by not needing > > event loop), go wi

Re: [Interest] how to define string variable in *.pro based on other string variables?

2013-01-23 Thread Vincent Cai
Thanks a lot! From: 1+1=2 [mailto:dbzhang...@gmail.com] Sent: 2013年1月23日 16:02 To: Mandeep Sandhu Cc: Vincent Cai; interest@qt-project.org Subject: Re: [Interest] how to define string variable in *.pro based on other string variables? You should use: TSA_LibFullName = $$TSA_LibPath/$${TSA_LibNa

Re: [Interest] how to define string variable in *.pro based on other string variables?

2013-01-23 Thread 1+1=2
You should use: TSA_LibFullName = $$TSA_LibPath/$${TSA_LibName}.lib because $$TSA_LibName.lib equals to $${TSA_LibName.lib}, which is empty. On Wed, Jan 23, 2013 at 3:59 PM, Mandeep Sandhu wrote: > On Wed, Jan 23, 2013 at 1:23 PM, Vincent Cai wrote: > > Dear, > > > > > > > > I have