Re: [Interest] bug with # in URL when using setUrl?

2016-03-18 Thread Larry Martell
On Wed, Mar 16, 2016 at 12:04 PM, Konstantin Tokarev wrote: > > > 16.03.2016, 18:39, "Larry Martell" : >> On Wed, Mar 16, 2016 at 6:29 AM, Konstantin Tokarev >> wrote: >>> 16.03.2016, 02:15, "Larry Martell" : -How can I debug the Angular code? >>> >>> QtWebKit has developer tools. Yo

Re: [Interest] Are slots even needed these days?

2016-03-18 Thread André Somers
Op 17/03/2016 om 08:35 schreef Till Oliver Knoll: Am 16.03.2016 um 22:37 schrieb André Pönitz : On Wed, Mar 16, 2016 at 02:31:33PM +, Gian Maxera wrote: I can connect to Foo::bar either way. If I don't intend to ever use the old-style connect syntax, is there a reason to have "public sl

Re: [Interest] Are slots even needed these days?

2016-03-18 Thread Constantin Makshin
Yes, but, as you said, it's just a hack meant to circumvent C++'s member visibility system. A rather ugly hack easily detectable by simply grepping the source code (in a pre-commit hook, for example -- presence of QMetaObject::invokeMethod() calls outside some parts of Qt itself may be a good sign

[Interest] Are slots even needed these days?

2016-03-18 Thread Nikos Chantziaras
Since in modern Qt you connect signals to functions/lambdas, is there a reason to declare slots anymore? In other words, is there any difference between: class Foo: public QObject { Q_OBJECT public slots: void bar(); }; and: class Foo: public QObject { Q_OBJECT pu

Re: [Interest] User Auth Confirmation on account.qt.io

2016-03-18 Thread Nikos Chantziaras
On 17/03/16 16:32, Jason H wrote: Just curious why this is always happening to me. I'm not seeing why I need to confirm it every time? I do have multiple qt.io accounts, but I use incognito mode to maintain seperate logins when needed. Incognito mode deleted all your session information when

Re: [Interest] bug with # in URL when using setUrl?

2016-03-18 Thread Thiago Macieira
On quinta-feira, 17 de março de 2016 09:39:44 PDT Larry Martell wrote: > GET https://code.jquery.com/jquery-2.1.4.min.js SSL handshake failed > > A couple of days back Thiago said: > > Check if you have OpenSSL available. It might be that the requests fail > > because they are HTTPS and there's no

Re: [Interest] Are slots even needed these days?

2016-03-18 Thread Thiago Macieira
On quinta-feira, 17 de março de 2016 08:56:57 PDT Till Oliver Knoll wrote: > That's an entire different view than what I've had so far (since so far I've > never used those new "PFM"-style connections. What does it even mean? > "Printing with Manual Formatting"? ;)) PMF = Pointer to Member Functio

Re: [Interest] bug with # in URL when using setUrl?

2016-03-18 Thread Larry Martell
On Thu, Mar 17, 2016 at 8:11 AM, Larry Martell wrote: > On Thu, Mar 17, 2016 at 6:41 AM, Konstantin Tokarev wrote: >> >> >> 17.03.2016, 07:13, "Larry Martell" : >>> On Wed, Mar 16, 2016 at 12:04 PM, Konstantin Tokarev >>> wrote: 16.03.2016, 18:39, "Larry Martell" : > On Wed, Mar 16,

Re: [Interest] [OS X] Qt 5.6.0 minimal build configuration (error compiling qlatincodec.cpp)

2016-03-18 Thread Thiago Macieira
On quinta-feira, 17 de março de 2016 20:48:19 PDT René J. V. Bertin wrote: > Thiago Macieira wrote: > > The proper way of adding options is to modify the mkspec's qmake.conf file > > qmake.conf or .qmake.conf? mkspec/macx-clang/qmake.conf > >> Checking my build scripts, I can confirm that CFLAGS

Re: [Interest] Are slots even needed these days?

2016-03-18 Thread Constantin Makshin
Another thing I personally don't like in the new connection syntax is that it forces signals to be public, making it possible to do all type of wonders by faking/simulating events on behalf of other objects. For example: QLineEdit* edit = new QLineEdit("foo"); // ... edit->textChanged("bar"); On

[Interest] mediaplayer or soundeffect

2016-03-18 Thread Kevin Mcintyre
Hello - First time posting to QT mailing list so forgive me if this is the wrong channel. I have a simple QML application listening on a websocket, and want to play a chime on message. Initially I tried SoundEffect but my wav file didn't play correctly, so I opted for MediaPlayer which works, but

Re: [Interest] bug with # in URL when using setUrl?

2016-03-18 Thread Larry Martell
On Wed, Mar 16, 2016 at 6:29 AM, Konstantin Tokarev wrote: > > > 16.03.2016, 02:15, "Larry Martell" : >> -How can I debug the Angular code? > > QtWebKit has developer tools. You need to create QWebInspector, set QWebPage > to it, > and enable QWebSettings::DeveloperExtrasEnabled > > You will get

Re: [Interest] Qt3D : Invalid mvp matrix with orthographic camera

2016-03-18 Thread Xavier Bigand
Sorry I found my bug, I forget to change the up vector. Does the up vector be given with the view center to avoid this kind of forget? I also think that it can be helpfull if there was asserts on computations resulting in nan values. 2016-03-16 15:48 GMT+01:00 Xavier Bigand : > Hi, > > I have s

Re: [Interest] Are slots even needed these days?

2016-03-18 Thread André Somers
Op 16/03/2016 om 16:12 schreef Michael Sué: Hi, is there a reason to have "public slots:" anymore? If you build dialogs in Qt Designer, I do. you will like the function "connectSlotsByName" - called in the generated ui code - to work properly i.e. connect correctly just by the names you g

[Interest] [OS X] building QtWebKit 5.6.0

2016-03-18 Thread René J . V . Bertin
Hi, I've been trying in vain to build QtWebKit 5.6.0 from the official source tarball, using my own Qt 5.6.0 build. The included documentation isn't very helpful. I'd prefer to invoke qmake and make myself, but that leads me to missing symbol linker errors. When I use the provided script (insi