Re: [Interest] KD-Soap installation on Windows XP

2013-07-02 Thread Tomasz Olszak
2013/6/18 Olivier Austina > Hi, > I am trying to install KD-Soap on Windows XP. I downloaded the source file > from github :https://github.com/KDAB/KDSoap using the ZIP button. > I am following instructions in the install.txt file. How to run the > following command > git submodule update --init

Re: [Interest] Qt ifw, error message: "Could not write installer configuration "

2013-07-02 Thread Jenssen Tim
See https://bugreports.qt-project.org/browse/QTIFW-291, ignore the comments -> fixed in 1.4 Von: Alex Malyushytskyy Gesendet: ‎03.‎07.‎2013 03:27 An: Niclas Karlsson Cc: interest@qt-project.org

Re: [Interest] QIcon on/off doesn't work on QAction

2013-07-02 Thread Alex Malyushytskyy
First. Your code should create a memory leak. Cause addAction will make a copy of icon and you never delete result of colorize Look at declaration: QAction **addAction * ( const QIcon & *icon*, const QString & *text*, const QObject * *receiver*, const char * *member* )Second. You did not clarify wh

Re: [Interest] Qt ifw, error message: "Could not write installer configuration "

2013-07-02 Thread Alex Malyushytskyy
>>If I run the installer by right clicking on it and select "Run as administrator", the installation will finish without a problem. >> How can I make this work? Did not you mentioned how to fix a problem yourself? You have to run program which is changing files in system folders as an administrat

Re: [Interest] Redirect stdout to a file

2013-07-02 Thread Alan Ezust
On linux, you invoke an external command from QProcess that looks like bash -c command arg1 arg2 > outFile.txt and on windows you can do cmd /c command arg1 arg2 > outFile.txt and you can run this detached. On Tue, Jul 2, 2013 at 12:10 PM, Scott Aron Bloom wrote: > Windows and Linux…

Re: [Interest] Redirect stdout to a file

2013-07-02 Thread Scott Aron Bloom
Windows and Linux... I don't know if it detatches on linux.. I just know that if I manually kill the UI while the CLI version is running, Ill have to track it down in the task manager later.. Scott From: Yifei Li [mailto:yifl...@gmail.com] Sent: Tuesday, July 02, 2013 6:54 AM To: Scott Aron Bl

Re: [Interest] 4.8.5 WindowStateChanged

2013-07-02 Thread Thiago Macieira
On terça-feira, 2 de julho de 2013 09.14.58, John Weeks wrote: > In the list of changes in Qt 4.8.5 () I see this item: > > - Add WindowStateChanged event (qapplication_qpa.cpp) > > But I can't seem to find any documentation on it (Googling it turns up > references to QMdiSubWindow::WindowStateChan

Re: [Interest] Qt Multimedia - Record from Applications Output

2013-07-02 Thread Alan Ezust
Oops. you need pulseaudio for this to work on linux. On Tue, Jul 2, 2013 at 8:18 AM, Alan Ezust wrote: > In Qt5, you can record audio, with the Qt MultimediaKit library. This > contains a few features that were never added to Qt4's multimedia but were > available in Qt Mobility's MultimediaKit.

Re: [Interest] Redirect stdout to a file

2013-07-02 Thread Yifei Li
The child program could be any Lua script written by the user. -Yifei On Tue, Jul 2, 2013 at 9:59 AM, william.croc...@analog.com < william.croc...@analog.com> wrote: > Do you have control over the child program, here? > Do you have the source code? > Are you willing to change it? > > Bill > > On

Re: [Interest] Qt Multimedia - Record from Applications Output

2013-07-02 Thread Alan Ezust
In Qt5, you can record audio, with the Qt MultimediaKit library. This contains a few features that were never added to Qt4's multimedia but were available in Qt Mobility's MultimediaKit. You can see an example of recording audio in the examples/multimedia/spectrum and examples/multimedia/audioreco

Re: [Interest] Redirect stdout to a file

2013-07-02 Thread Yifei Li
Hi Scott, I'm working on a Mac. How about you? OS probably matters. Yifei On Mon, Jul 1, 2013 at 11:30 PM, Scott Aron Bloom wrote: > Yes that is exactly what I do.. > > ** ** > > *From:* Yifei Li [mailto:yifl...@gmail.com] > *Sent:* Monday, July 1, 2013 7:29 PM > > *To:* Scott Aron Bloo

Re: [Interest] Qt Multimedia - Record from Applications Output

2013-07-02 Thread Lucas Betschart
Hi Thanks for the answers. I looked at QMEL but it's also not captable of what I want to to. I'll create a suggestion at qt-project.org. I looked at the Qt Multimedia Source, but I'd will take some time until I understand it. Regards Lucas 2013/7/1 Samuel Gaist > Hi, > > You might be intere

[Interest] QDrag on iOS

2013-07-02 Thread Martin Haker
Hi, in the Qt 5.1 preview for iOS the QDrag is not implemented (qtbase/src/plugins/platforms/ios/qiosintegration.mm). Are there plans to do so in the future? We have existing code for desktop applications that makes use of QDrag and it would be convenient to be able to use it without changes on i

Re: [Interest] Redirect stdout to a file

2013-07-02 Thread Michael Sué
Unless you use a command-line type of program, the “normal” WINDOWS program - by policy - does not open “stdout” and “stderr”, as there is nothing to write the up-coming traffic to. So you will never have a chance to connect to them, as there is nothing to connect to, even if you program an indi