Re: [Interest] QML and application fonts

2014-11-10 Thread Rutledge Shawn
On 10 Nov 2014, at 08:30, Harri Pasanen wrote: > Hi, > > I've been playing with the font support in Qt. > In C++ I'm able to define and select a custom application font with > font.setFamily("MyCoolFont"), > but on the QML side something like > > Text { > anchors.centerIn: parent > te

Re: [Interest] Regarding Internet Radio using QtQuick 2.x

2014-11-10 Thread Mark Gaiser
On Mon, Nov 10, 2014 at 7:13 AM, Jha Sonakumar wrote: > Hi All, > > Could you please guide me to create Internet radio App using QtQuick 2.x. > > As my system has not Radio Tuner h/w,that's why i need to develop the > Internet Radio app. > > > > Best Regards > > SonaKumar > I think you might be

Re: [Interest] Opening Qt/Qml window inside host app

2014-11-10 Thread Tim Blechmann
> In general, for VST2 your implementation of AEffEditor::open() should > create the thread creating the application object and invoking > exec(). That is the latest point you can use before it has to be > created. out of curiosity: doesn't QApplication::exec have to be created from the main threa

Re: [Interest] Strange behaviour of QByteArray reserve/reallocation mechansim

2014-11-10 Thread Bo Thorsen
Hi Bernhard, Den 09-11-2014 kl. 10:34 skrev Bernhard: > I just experienced a strange behavior of QByteArray regarding its internal > reallocation behavior. Actually that behavior stops me from using > capacity()/reserve() to optimize the allocation behavior and its seem to me > that under current

Re: [Interest] Strange behaviour of QByteArray reserve/reallocation mechansim

2014-11-10 Thread Bernhard
> QByteArray a, b; > a.reserve(1000); > a = b; > > There's no way you will ever preserve the reserve(), because that would > conflict with the implicit sharing. This is no problem since I don't do this. But I see your point. This surely limits usability of reserve(). > So in your case you use an

Re: [Interest] Regarding Internet Radio using QtQuick 2.x

2014-11-10 Thread Jha Sonakumar
Hi Mark, i want a sample Internet radio player, as you have referred it'll work with Radio Tuner h/w integrated . From: Mark Gaiser Sent: Monday, November 10, 2014 1:41 PM To: Jha Sonakumar Cc: interest@qt-project.org Interest Subject: Re: [Interest]

Re: [Interest] Regarding Internet Radio using QtQuick 2.x

2014-11-10 Thread Reinhardt Behm
On Monday 10 November 2014 06:13:50 Jha Sonakumar wrote: > Hi All, > > Could you please guide me to create Internet radio App using QtQuick 2.x. > > As my system has not Radio Tuner h/w,that's why i need to develop the > Internet Radio app. > OK, what are you willing to pay? Or do you expect

Re: [Interest] Strange behaviour of QByteArray reserve/reallocation mechansim

2014-11-10 Thread Thiago Macieira
On Sunday 09 November 2014 10:34:28 Bernhard wrote: > Hi there! > > I just experienced a strange behavior of QByteArray regarding its internal > reallocation behavior. Actually that behavior stops me from using > capacity()/reserve() to optimize the allocation behavior and its seem to me > that un

[Interest] QML ListView anchoring fails

2014-11-10 Thread ashish dabhade
Hi All, Why is it that anchoring (fill) ListView to parent fails in following example ? ApplicationWindow { id: main visible: true height: 300 width: 300 Rectangle { anchors.fill: parent ListView { anchors.fill: parent model: ListModel

Re: [Interest] QML and application fonts

2014-11-10 Thread Harri Pasanen
On 10/11/2014 09:02, Rutledge Shawn wrote: > On 10 Nov 2014, at 08:30, Harri Pasanen wrote: > >> Hi, >> >> I've been playing with the font support in Qt. >> In C++ I'm able to define and select a custom application font with >> font.setFamily("MyCoolFont"), >> but on the QML side something like >>

[Interest] git pull and git checkout in Qt source tree

2014-11-10 Thread Stanislav Baiduzhyi
Hi All, Tell me please if I missed something, links are appreciated too. I've cloned Qt5 source tree, initialized the project, it cloned all subprojects. It was month ago, now I want to pull latest changes and checkout branch 5.4.0, to dig into the code. What is the proper way to do that? I've be

Re: [Interest] git pull and git checkout in Qt source tree

2014-11-10 Thread Kalinowski Maurice
Qtrepotools has qt5_tool which can take care of that. Calling it without any arguments gives you a list of options. Maurice Von: interest-bounces+maurice.kalinowski=theqtcompany@qt-project.org [mailto:interest-bounces+maurice.kalinowski=theqtcompany@qt-project.org] Im Auftrag von Sta

Re: [Interest] git pull and git checkout in Qt source tree

2014-11-10 Thread Stanislav Baiduzhyi
Thanx Maurice, looks like that's what I needed, will try that out. On Mon, Nov 10, 2014 at 11:57 AM, Kalinowski Maurice < maurice.kalinow...@theqtcompany.com> wrote: > Qtrepotools has qt5_tool which can take care of that. Calling it without > any arguments gives you a list of options. > > > > Ma

Re: [Interest] [Qt4.8] UI events coming through despite QEventLoop::ExcludeUserInputEvents

2014-11-10 Thread Andreas Pakulat
Hi, On Mon, Nov 10, 2014 at 11:35 AM, René J.V. wrote: > Hi, > > What about this backtrace snippet I got this morning? > > #0 0x751d1c6d in poll () at ../sysdeps/unix/syscall-template.S:81 > #1 0x7fffeeda0fe4 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 > #2 0x7fffeeda

Re: [Interest] [Qt4.8] UI events coming through despite QEventLoop::ExcludeUserInputEvents

2014-11-10 Thread René J . V . Bertin
On Monday November 10 2014 13:57:46 Andreas Pakulat wrote: Hi > Without Qt sources thats impossible to say for sure, but it also receives > flags and it calls another function which again has no 'gui' in its name, > which then calls into glib. Who ("It") or what other function do you mean? > Als

Re: [Interest] [Qt4.8] UI events coming through despite QEventLoop::ExcludeUserInputEvents

2014-11-10 Thread Andreas Pakulat
Hi, On Mon, Nov 10, 2014 at 2:23 PM, René J.V. wrote: > On Monday November 10 2014 13:57:46 Andreas Pakulat wrote: > Hi > > > Without Qt sources thats impossible to say for sure, but it also receives > > flags and it calls another function which again has no 'gui' in its name, > > which then cal

Re: [Interest] git pull and git checkout in Qt source tree

2014-11-10 Thread manish sharma
there are some instructions in below link :- http://qt-project.org/wiki/Building_Qt_5_from_Git read 'Getting updates' and 'Using latest branches in the submodules' section. On Mon, Nov 10, 2014 at 4:32 PM, Stanislav Baiduzhyi < baiduzhyi.de...@gmail.com> wrote: > Thanx Maurice, looks like that

[Interest] Qt 5.4 high dpi support on Windows

2014-11-10 Thread Douglas . Lee
Hi all, I'm trying to follow the documentation ( http://doc-snapshot.qt-project.org/qt5-5.4/highdpi.html) about how to use qt.conf to change the dpiawareness setting of the Window platform plugin. What I came up with is that I should have a qt.conf file next to my exe with the following content

Re: [Interest] Qt 5.4 high dpi support on Windows

2014-11-10 Thread René Berber
On 11/10/2014 4:15 PM, douglas@teledynelecroy.com wrote: > What I came up with is that I should have a qt.conf file next > to my exe with the following contents: > [Platforms] > WindowsArguments = dpiawareness=0 It doesn't have to be outside the application, qt.conf can be embedded in the app

Re: [Interest] QML ListView anchoring fails

2014-11-10 Thread Nevala Samuel
Hi, It seems that delegates are already created when ListView is still re-sizing and that messes up the populate transition leaving some delegates to opacity zero. It is a bug can you report it @ https://bugreports.qt-project.org/? please. Assigning model after ListView has re-sized works w

Re: [Interest] QML ListView anchoring fails

2014-11-10 Thread ashish dabhade
Hi, Thanks for your reply and the current workround. Reported the bug. Please check https://bugreports.qt-project.org/browse/QTBUG-42548 On Tue, Nov 11, 2014 at 12:00 PM, Nevala Samuel < samuel.nev...@theqtcompany.com> wrote: > Hi, > > > It seems that delegates are already created when ListVie