Re: [Interest] [Announce] Qt 5.2.1 & Qt Creator 3.0.1 released

2014-02-05 Thread Till Oliver Knoll
Am 05.02.2014 um 15:27 schrieb List for announcements regarding Qt releases and development : > We are happy to announce that Qt 5.2.1 For those Mac developers who were eagerly waiting for the "unified (aka native) tool bar" to return in Qt 5 and missed that one crucial line in the change no

Re: [Interest] Blur part of rectangle possible?

2014-02-05 Thread Mark Gaiser
On Thu, Feb 6, 2014 at 1:28 AM, Mark Gaiser wrote: > On Thu, Feb 6, 2014 at 12:52 AM, Josh Faust wrote: >>> >>> >>> I've tried that. You get quite funny results :) >>> But in reality having your full ListView crammed into a small version >>> isn't looking good. The intention is to blur just a sma

Re: [Interest] Blur part of rectangle possible?

2014-02-05 Thread Mark Gaiser
On Thu, Feb 6, 2014 at 12:52 AM, Josh Faust wrote: > >> I've tried that. You get quite funny results :) >> But in reality having your full ListView crammed into a small version >> isn't looking good. The intention is to blur just a small part of the >> listview and doing this trick makes it look

Re: [Interest] Blur part of rectangle possible?

2014-02-05 Thread Mark Gaiser
On Wed, Feb 5, 2014 at 11:48 PM, Josh Faust wrote: >> That could probably work if i want to blur an image. >> In this case i want to blur the bottom part of a ListView where i want >> to overlay a search field and blur the background. >> That case makes splitting it a bit difficult ;) > > > You ca

Re: [Interest] Blur part of rectangle possible?

2014-02-05 Thread Josh Faust
> > That could probably work if i want to blur an image. > In this case i want to blur the bottom part of a ListView where i want > to overlay a search field and blur the background. > That case makes splitting it a bit difficult ;) > You can use sourceRect on ShaderEffectSource, and then apply t

Re: [Interest] Grabbing frames from the camera

2014-02-05 Thread Tr3wory
Thanks the info. Tr3w On Tue, Feb 4, 2014 at 4:23 PM, Lopes Yoann wrote: > I think this is simply bad API design... It should be > QAbstractVideoSurface::present(QVideoFrame &frame) instead. > It's absolutely safe to ignore the const-ness of the video frame. > > Yoann Lopes > Senior Software E

Re: [Interest] qmlx11 plugin

2014-02-05 Thread Thiago Macieira
Em qua 05 fev 2014, às 14:59:23, Rutledge Shawn escreveu: > Personally I wish we had some of that as QPA APIs (at least window list and > window icons), but of course it assumes that we can do the same thing on > the other platforms. In my experience, the window list is tricky stuff on > X11 thoug

Re: [Interest] qmlx11 plugin

2014-02-05 Thread Damian Ivanov
Maybe not a feature for Qt directly, but it is a plug-in and what I want to do with the plugin is actually a task manager :) 2014-02-05 Thiago Macieira : > Em qua 05 fev 2014, às 14:59:23, Rutledge Shawn escreveu: >> Personally I wish we had some of that as QPA APIs (at least window list and >> wi

Re: [Interest] qmlx11 plugin

2014-02-05 Thread Thiago Macieira
Em qua 05 fev 2014, às 19:29:37, Damian Ivanov escreveu: > Maybe not a feature for Qt directly, but it is a plug-in and what I > want to do with the plugin is actually a task manager :) Sure, that is a welcome thing, thanks for making the effort. I was just reacting to making this part of QPA. --

Re: [Interest] QtQuick and linuxfb

2014-02-05 Thread Agocs Laszlo
Hello, If you mean Qt Quick 2 (scenegraph and QQuickWindow and friends), then no, linuxfb is not sufficient since OpenGL is a hard requirement here. Use the eglfs platform plugin instead (if possible). Qt Quick 1 should be functional with linuxfb but you should not be basing any new developmen

Re: [Interest] Draw a shadow around a Rectangle using DropShadow. Should be possible, right?

2014-02-05 Thread Mark Gaiser
On Wed, Feb 5, 2014 at 5:09 PM, Till Oliver Knoll wrote: > Am 05.02.2014 um 16:35 schrieb Mark Gaiser : > >>> ... >>> On one hand, it makes sense because the Image is smaller than the >>> RectangularGlow (so the Image is "inside" the RectangularGlow). >>> >>> ... >> >> I can't get it to work with

Re: [Interest] Draw a shadow around a Rectangle using DropShadow. Should be possible, right?

2014-02-05 Thread Till Oliver Knoll
Am 05.02.2014 um 16:35 schrieb Mark Gaiser : >> ... >> On one hand, it makes sense because the Image is smaller than the >> RectangularGlow (so the Image is "inside" the RectangularGlow). >> >> ... > > I can't get it to work with a rectangle.. > > import QtQuick 2.0 > import QtGraphicalEffects

[Interest] Installer fustrations 5.x- 5.2.1 inclusive.

2014-02-05 Thread Jason H
You should change the installer to NOT run Qt Creator if you are installing with super-user perms. You already know this, because with root, you default the install to /opt without it you put it in the user’s directory. If you launch creator from the installer with root, you end up creating the

Re: [Interest] Blur part of rectangle possible?

2014-02-05 Thread Mark Gaiser
On Wed, Feb 5, 2014 at 4:09 PM, Bo Thorsen wrote: > Den 05-02-2014 13:21, Mark Gaiser skrev: > >> Hi, >> >> The blur examples [1] all use a source rectangle and fully blur it. >> But what i want to do is only blur the bottom 20 pixels of an rectangle. >> How do i do that? > > > A few ideas to test

Re: [Interest] Draw a shadow around a Rectangle using DropShadow. Should be possible, right?

2014-02-05 Thread Mark Gaiser
On Wed, Feb 5, 2014 at 4:11 PM, Sze Howe Koh wrote: > On 5 February 2014 22:31, Mark Gaiser wrote: >> Hi, >> >> I "thought" i could just use any of the QtGraphicalEffects and apply >> them to any item. >> But when i try to apply a simple shadow to a rectangle (or a glow) i >> don't get any shadow

Re: [Interest] Draw a shadow around a Rectangle using DropShadow. Should be possible, right?

2014-02-05 Thread Sze Howe Koh
On 5 February 2014 22:31, Mark Gaiser wrote: > Hi, > > I "thought" i could just use any of the QtGraphicalEffects and apply > them to any item. > But when i try to apply a simple shadow to a rectangle (or a glow) i > don't get any shadow. Instead, the destination rectangle simply gets > filled wit

Re: [Interest] Blur part of rectangle possible?

2014-02-05 Thread Bo Thorsen
Den 05-02-2014 13:21, Mark Gaiser skrev: > Hi, > > The blur examples [1] all use a source rectangle and fully blur it. > But what i want to do is only blur the bottom 20 pixels of an rectangle. > How do i do that? A few ideas to test: Split your rectangle in two. Add a second rectangle over the

Re: [Interest] qmlx11 plugin

2014-02-05 Thread Damian Ivanov
I already have 2 functions (which You can use from .qml as ListModel (modelData)) - one that does show all windows - X11support::windowListUnskipped and X11::windowList which checks if the window is _NET_CLIENT_SKIP_TASKBAR so I already do that. The only thing is I can't get the XEvents to work...

Re: [Interest] qmlx11 plugin

2014-02-05 Thread Rutledge Shawn
On 5 Feb 2014, at 11:16 AM, Damian Ivanov wrote: > Hi, > > I made a c++ QML plugin for X11 functions like windowlist, active > window, setting, getting icon of apps, names, id and setting netwm > properties. Source code is here > https://build.opensuse.org/package/show/home:damianator:qmlx11/qm

[Interest] Draw a shadow around a Rectangle using DropShadow. Should be possible, right?

2014-02-05 Thread Mark Gaiser
Hi, I "thought" i could just use any of the QtGraphicalEffects and apply them to any item. But when i try to apply a simple shadow to a rectangle (or a glow) i don't get any shadow. Instead, the destination rectangle simply gets filled with the color i provided as shadow. In case it matters. Nvid

[Interest] Trying to build 5.2.0 on RHEL 5

2014-02-05 Thread william.croc...@analog.com
Hello: I am trying to build 5.2.0 on RHEL 5 (may god have mercy on my soul.) The compile fails down in the testlib sub-directory. In file included from /usr/include/asm-x86_64/byteorder.h:30:0, from /usr/include/asm/byteorder.h:5, from .../qt-everywhere-e

[Interest] Blur part of rectangle possible?

2014-02-05 Thread Mark Gaiser
Hi, The blur examples [1] all use a source rectangle and fully blur it. But what i want to do is only blur the bottom 20 pixels of an rectangle. How do i do that? Cheers, Mark [1] http://qt-project.org/doc/qt-5/qml-qtgraphicaleffects-gaussianblur.html

Re: [Interest] Unusable native toolbars in Mac with Qt 4.8

2014-02-05 Thread David Garcia
Dear all I have modified QWidgetPrivate::childAtRecursiveHelper with something that seems quite right: if (includeFrame && qobject_cast(child) && qt_widget_private(child)->isInUnifiedToolbar ) instead of: if (includeFrame && qobject_cast(child) ) This prevent the unified tool bar to capture e

[Interest] qmlx11 plugin

2014-02-05 Thread Damian Ivanov
Hi, I made a c++ QML plugin for X11 functions like windowlist, active window, setting, getting icon of apps, names, id and setting netwm properties. Source code is here https://build.opensuse.org/package/show/home:damianator:qmlx11/qmlx11 Right now you can do all the stuff mentioned already, but

Re: [Interest] [interest][QT Installer Framework] how to overwrite or reinstall with existing app

2014-02-05 Thread Sujan Dasmahapatra
you specify a different PATH while installing if you like both of the versions to be kept. e.g C/Qt/5.1 C/Qt/5.2 etc On Wed, Feb 5, 2014 at 1:18 PM, peterlingoal wrote: > Hi Sujan, > > Thanks for the reply. > > If uninstalling is the only solution, is there any way to invoke it at the > beginni