[Interest] Workaround for ShortCutOverride behaviour change?

2016-05-13 Thread Scott Kostyshak
Hi, Behavior has changed between 5.5.1 and 5.6.0 and I would like to confirm that it is indeed a bug, and also ask if anyone knows a workaround? The bug is posted here: https://bugreports.qt.io/browse/QTBUG-53272 Scott ___ Interest mailing list

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

2016-05-13 Thread Nye
On Fri, May 13, 2016 at 2:43 PM, d3fault wrote: > It's to work around the diamond inheritance problem, so yea admittedly > it's ugly. Know a cleaner way? I'm all ears. > Declare your signals directly into the classes that provide them and connect compatible methods,

Re: [Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Elvis Stansvik
2016-05-13 23:04 GMT+02:00 Thiago Macieira : > On sexta-feira, 13 de maio de 2016 20:33:53 PDT Elvis Stansvik wrote: >> 2016-05-13 19:41 GMT+02:00 Thiago Macieira : >> > You can't reuseaddr with TCP. >> >> Hmm, I thought that was quite common

Re: [Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Thiago Macieira
On sexta-feira, 13 de maio de 2016 20:33:53 PDT Elvis Stansvik wrote: > 2016-05-13 19:41 GMT+02:00 Thiago Macieira : > > You can't reuseaddr with TCP. > > Hmm, I thought that was quite common in TCP servers? To use > SO_REUSEADDR in order to avoid the IP/port combo

Re: [Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Elvis Stansvik
2016-05-13 19:18 GMT+02:00 Elvis Stansvik : > 2016-05-13 18:42 GMT+02:00 Elvis Stansvik : >> Hi all, >> >> I'm looking for a way to control the socket options used for the listening >> socket of a QWebSocketServer. >> >> Is there really no way of doing this

Re: [Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Elvis Stansvik
2016-05-13 19:41 GMT+02:00 Thiago Macieira : > On sexta-feira, 13 de maio de 2016 18:42:16 PDT Elvis Stansvik wrote: >> Hi all, >> >> I'm looking for a way to control the socket options used for the listening >> socket of a QWebSocketServer. >> >> Is there really no way

Re: [Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Thiago Macieira
On sexta-feira, 13 de maio de 2016 18:42:16 PDT Elvis Stansvik wrote: > Hi all, > > I'm looking for a way to control the socket options used for the listening > socket of a QWebSocketServer. > > Is there really no way of doing this short of setting up a native socket > myself and passing it to

Re: [Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Elvis Stansvik
2016-05-13 18:42 GMT+02:00 Elvis Stansvik : > Hi all, > > I'm looking for a way to control the socket options used for the listening > socket of a QWebSocketServer. > > Is there really no way of doing this short of setting up a native socket > myself and passing it to

Re: [Interest] Datagram-oriented QLocalSocket (e.g. AF_UNIX / SOCK_DGRAM)?

2016-05-13 Thread Elvis Stansvik
Den 13 maj 2016 5:58 em skrev "Thiago Macieira" : > > On sexta-feira, 13 de maio de 2016 13:32:32 PDT Elvis Stansvik wrote: > > Can I use QUdpSocket, but provide my own AF_UNIX / SOCK_DGRAM socket > > with setSocketDescriptor? Has anyone done this, something you could >

[Interest] Setting socket options for QWebSocketServer

2016-05-13 Thread Elvis Stansvik
Hi all, I'm looking for a way to control the socket options used for the listening socket of a QWebSocketServer. Is there really no way of doing this short of setting up a native socket myself and passing it to setSocketDescriptor? The option I wish to set is SO_REUSEADDR in UNIX terms, so I

Re: [Interest] Datagram-oriented QLocalSocket (e.g. AF_UNIX / SOCK_DGRAM)?

2016-05-13 Thread Thiago Macieira
On sexta-feira, 13 de maio de 2016 13:32:32 PDT Elvis Stansvik wrote: > Can I use QUdpSocket, but provide my own AF_UNIX / SOCK_DGRAM socket > with setSocketDescriptor? Has anyone done this, something you could > share? If so, any gotchas? I don't think anyone has tried, but given that creating

[Interest] iOS: You are creating QApplication before calling UIApplicationMain

2016-05-13 Thread NoRulez
Hello, I get the following error: "Error: You are creating QApplication before calling UIApplicationMain. If you are writing a native iOS application, and only want to use Qt for parts of the application, a good place to create QApplication is from within 'applicationDidFinishLaunching' inside

Re: [Interest] including config file with macdeployqt

2016-05-13 Thread Robert Iakobashvili
Sorry, I do not know this way: running macdeployqt is just a step in my script. You can copy by a post-building script command cp or use QMAKE_BUNDLE_DATA in your pro file to copy all you need in your app bundle. Kinda: SomeFeature.files = ./db/SomeFeature SomeFeature.path =

Re: [Interest] including config file with macdeployqt

2016-05-13 Thread Larry Martell
Thanks. That answers the second part of my question. Is there a way to get the config automagically included when I run macdeployqt? On Fri, May 13, 2016 at 7:50 AM, Robert Iakobashvili wrote: > Dear Larry, > I'd place it to Resources - so no issues at signing. > >

Re: [Interest] including config file with macdeployqt

2016-05-13 Thread Larry Martell
Yes, I know it's just a dir. I was looking for a way for the config file to be automagically included when the bundle is made with macdeployqt. And as far as the location goes, I was wondering if there is some standard place like ~/Library/... or something where the config file should live. On

Re: [Interest] including config file with macdeployqt

2016-05-13 Thread Robert Iakobashvili
Dear Larry, I'd place it to Resources - so no issues at signing. Additionally, if you need some configs specific for each Mac-user, ~/Library/Application Support is the right place to arrange and entry for your company and inside entries for your software. Kind regards, Robert On Fri, May 13,

Re: [Interest] including config file with macdeployqt

2016-05-13 Thread Gian Maxera
Mac bundle (after all) is just a directory. So, you can just copy the config file where you want inside the directory and access it getting the path relative to application dir path (QCoreApplication::applicationDirPath()). > On 13 May 2016, at 12:42, Larry Martell

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

2016-05-13 Thread d3fault
For completeness I've attached a minimal compiling + working example of a "Signals & Slots Interface" that requires the Qt4-style connect syntax in order to use, which also means the interface implementers must use the "slots:" section in their class declaration/header (as per the subject of these

[Interest] including config file with macdeployqt

2016-05-13 Thread Larry Martell
I am creating a bundle with macdeployqt to distribute my app. I want to have a config file that my app will read at startup. How can I include that config file in my bundle, and where is the proper place for it to live on the file system on the machine the app gets installed on?

[Interest] Datagram-oriented QLocalSocket (e.g. AF_UNIX / SOCK_DGRAM)?

2016-05-13 Thread Elvis Stansvik
Hi, Like the subject says, is there no class in Qt which will give me a local datagram-oriented socket (e.g. AF_UNIX + SOCK_DGRAM on UNIX systems)? I guess this is because it's not possible to make a cross-platform abstraction for it? Can I use QUdpSocket, but provide my own AF_UNIX / SOCK_DGRAM

Re: [Interest] Qt unified installer behind proxy with AV

2016-05-13 Thread Neubert Stefan
Thank you for your answer. I did it successfully like you suggested. Using QSdkReproChooser and adjusting _rootUrl = "https://ftp.fau.de/qtproject/;; (many other mirrows do not support https) in Downloader::useMirrow. Also copy libeay32.dll and ssleay32.dll to QSdkReproChooser exe-dir for

Re: [Interest] Qt unified installer behind proxy with AV

2016-05-13 Thread Carel Combrink
Regards, > Now my question: Is it possible to instruct the online installer to > download through https only? > > I have no experience with this specific issue but perhaps try the "Qt SDK Repo Chooser " I think need to follow the steps in the

[Interest] Qt unified installer behind proxy with AV

2016-05-13 Thread Neubert Stefan
Hi everyone, for a long time now I used the online installer to download and update the open source version of qt and creator behind our companies proxy. Lately we got a new proxy and the download of the meta.7z files now causes an icap error because of our antivirus unable to decompress the

Re: [Interest] [Development] Is Qt able to render emoji font using the SVGinOT ?

2016-05-13 Thread Eskil Abrahamsen Blomfeldt
Den 12.05.2016 23:08, skrev Gianluca: Hello, I’m wondering if Qt is able to render the coloured emoji font that use the SVGinOT (https://www.w3.org/2013/10/SVG_in_OpenType/) extension. Hi, No, none of the font backends we use support them. The only support for it that I have heard of is in

[Interest] Touch issues with Qt5.6/Qt5.7 beta and weston

2016-05-13 Thread Johannes Pointner
Hello, I have a setup with weston (wayland(egl vivante) 1.9, weston(desktopshell) 1.9 and libinput 1.14 , yocto krogoth, but I also tried wayland 1.10, weston 1.10 and libinput 1.2.4) on an i.MX6 and have some issues regarding the touchscreen. The first one is that If I touch a combobox the