Re: [Interest] qt.io

2017-05-12 Thread Igor Mironchik
Found... 2017-05-12 21:09, Igor Mironchik пишет: Hello, What's happened with qt.io? How can I download Open Source Qt now? Thank you. --- This email has been checked for viruses by AVG. http://www.avg.com ___ Interest mailing list Interest@qt-p

[Interest] qt.io

2017-05-12 Thread Igor Mironchik
Hello, What's happened with qt.io? How can I download Open Source Qt now? Thank you. --- This email has been checked for viruses by AVG. http://www.avg.com ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinf

Re: [Interest] qt.io

2017-05-12 Thread Konstantin Podsvirov
Hello Igor! 12.05.2017, 23:06, "Igor Mironchik" : > Hello, > > What's happened with qt.io? How can I download Open Source Qt now? > > Thank you. No problem: https://www.qt.io/ -> Download Qt -> Desktop & Mobile Applications -> Get your open source package -> Download Now or just http://downlo

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread bralchenko
Patrick, you have to setGeometry(QRect screenGeometry) explicitly. screenGeometry should be queried from iOS directly, like this: const CGRect r = [[UIScreen mainScreen] bounds]; return QRect(0, 0, r.size.width, r.size.height); We had similar problem, black screen with AirPlay or with HDMI don

Re: [Interest] Qt 5.8 font detection vs Qt 5.3.2 font detection

2017-05-12 Thread Nikos Chantziaras
When you compiled Qt, did you make sure fontconfig support was enabled? Is the fontconfig development package (probably called "fontconfig-dev" or something similar) installed on the system? On 05/10/2017 06:29 PM, Nguyen Huu Minh wrote: Hello, My apologies if this question has been asked be

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread Patrick Stinson
Oh excellent. Which object do you call setGeometry on? > On May 12, 2017, at 1:13 PM, bralche...@ics.com wrote: > > Patrick, > > you have to setGeometry(QRect screenGeometry) explicitly. screenGeometry > should be queried from iOS directly, like this: > > const CGRect r = [[UIScreen mainScreen

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread bralchenko
On main window, in our case it was derived from QQuickView. Regards, Boris Ralchenko. > On May 12, 2017, at 4:33 PM, Patrick Stinson wrote: > > Oh excellent. Which object do you call setGeometry on? > > On May 12, 2017, at 1:13 PM, bralche...@ics.com > wro

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread Patrick Stinson
Do you mean QMainWindow? That is the class that I am deriving from. > On May 12, 2017, at 1:38 PM, bralche...@ics.com wrote: > > On main window, in our case it was derived from QQuickView. > > Regards, > Boris Ralchenko. > > > > > >> On May 12, 2017, at 4:33 PM, Patrick Stinson wrote:

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread bralchenko
Yes, I think that’s the one. Regards, Boris Ralchenko. > On May 12, 2017, at 5:08 PM, Patrick Stinson wrote: > > Do you mean QMainWindow? That is the class that I am deriving from. > > On May 12, 2017, at 1:38 PM, bralche...@ics.com > wrote: > >> On main

[Interest] Qt drag 'n drop indicator

2017-05-12 Thread Murphy, Sean
I'm setting up my application to allow the user to drop files onto my application to open them. I've got that part working just fine, but I'm trying to figure out how to customize the drop indicator as the user is drag the files onto my application. Right now I'm getting the attached image, whic