Re: [Interest] QEventLoop -- not sure I am correctly using this

2013-12-04 Thread Mandeep Sandhu
> > //now some condition occurs, I want the worker on the inside to start > doing its thing > manager->startWorker(); > I assume your "worker object" (which runs inside another thread) will have public slots to start/stop its work. If so, you can either connect a signal from the main thread to th

Re: [Interest] QEventLoop -- not sure I am correctly using this

2013-12-04 Thread Jason Kretzer
So, question about telling the manager class what to do. >From my main thread, I instantiate the manager class which is implemented >according to what you wrote below. I want to be able to tell the manager when >to start and stop worker inside that it is managing. Would having a call to a publ

Re: [Interest] OpenGL under Android... glMatrixMode(GL_PROJECTION) was not declared in this scope

2013-12-04 Thread Till Oliver Knoll
(On Topic again) Am 04.12.2013 um 17:53 schrieb Sean Harmer : > It does however mean learning about buffer objects > (vertex buffer objects (VBOs) and maybe index buffers (IBOs)) as well as > shaders. And to make things slightly more confusing (at least for me when I touched that shady shade

Re: [Interest] [OT] Re: OpenGL under Android... glMatrixMode(GL_PROJECTION) was not declared in this scope

2013-12-04 Thread Sean Harmer
On Wednesday 04 December 2013 17:28:05 Guido Seifert wrote: > > ? Funny, I assumed the difference between OpenGL and ES was bigger than a > > few ASCII characters... > Unfortunately it is. I am still a beginner with all things OpenGL. But I > managed it to write a converter to import Blender scenes

Re: [Interest] styling a checkable item in a QListWidget

2013-12-04 Thread Harish Surana
I would suggest implementing an item delegate by sub classing QAbstractItemDelegate and set it on the column of your list widget. On Tue, Dec 3, 2013 at 6:52 AM, Hamish Moffatt wrote: > Hoi, > > I've got checkable items in a QListWidget and I'd like to use custom > images for the disabled, check

Re: [Interest] popup() method for window instead of menu

2013-12-04 Thread Harish Surana
You will need to play with Qt::WindowFlags. There is one example in qt installation folder "examples\widgets\windowflags" to better understand all these flags. On Wed, Dec 4, 2013 at 9:05 AM, Damian Ivanov wrote: > Hi all, > > I did not find it but I thought I ask on this list if someone knows >

Re: [Interest] [OT] Re: OpenGL under Android... glMatrixMode(GL_PROJECTION) was not declared in this scope

2013-12-04 Thread Guido Seifert
> ? Funny, I assumed the difference between OpenGL and ES was bigger than a few > ASCII characters... Unfortunately it is. I am still a beginner with all things OpenGL. But I managed it to write a converter to import Blender scenes into OpenGL. Works fine under Linux, falls flat under Android

Re: [Interest] [OT] Re: OpenGL under Android... glMatrixMode(GL_PROJECTION) was not declared in this scope

2013-12-04 Thread Joseph Crowell
*Gives ossi an exploding present.* On 12/04/2013 08:37 AM, Till Oliver Knoll wrote: > Am 04.12.2013 um 03:13 schrieb Guido Seifert : > >> #%$&%^!$%@# > Is that ^ the only > > >> Difference between OpenGL and OpenGL ES. > ? Funny, I assumed the difference between OpenGL and ES was bigger than a

Re: [Interest] Qt5.2 OpenGL error

2013-12-04 Thread Sletta Gunnar
I suspect that those warnings are indicators of an underlying problem. They should not be fatal on their own. How does other OpenGL apps work on they system? Fra: interest-bounces+gunnar.sletta=digia@qt-project.org [interest-bounces+gunnar.sletta=di

Re: [Interest] Is this working for anyone, making a QML extension.

2013-12-04 Thread Mark Gaiser
On Wed, Dec 4, 2013 at 9:23 AM, Koehne Kai wrote: > >> -Original Message- >> From: interest-bounces+kai.koehne=digia@qt-project.org >> [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf >> Of Alan Alpert >> Sent: Wednesday, December 04, 2013 1:20 AM >> To: Mark Gai

Re: [Interest] Is this working for anyone, making a QML extension.

2013-12-04 Thread Mark Gaiser
On Wed, Dec 4, 2013 at 1:19 AM, Alan Alpert <4163654...@gmail.com> wrote: > My guess is that "importPaths" in the .qmlproject file never got > hooked up for qmlscene. Try setting the import path and running the > file manually, i.e. "qml -I /your/long/import/path yourQmlFile.qml". Nope, that works

[Interest] Qt5.2 OpenGL error

2013-12-04 Thread Ramakanthreddy Kesireddy
Hi, I ported Qt5.2 on the IMX6 Sabre AI board with gnome xcb distribution. It uses platform plugin xcb. When running QtQuick Application on IMX6 free scale board, it gives the below error: QSGContext::initialize: depth buffer support missing, expect rendering errors QSGcontext::initialize:stenc

Re: [Interest] Correcting deployment linkages in Linux shared libraries

2013-12-04 Thread Bob Hood
Thanks for the pointers, Thiago and Rainer! I'm sure these will get me moving forward again. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] static libs/osx

2013-12-04 Thread Tim Blechmann
hi all, i'm trying to compile qt-5.2.0-rc1 on osx as static library, configuring with: mkdir build cd build ../configure -debug developer-build -static -c++11 -nomake tests -nomake examples -skip qtwebkit compilation worked fine (after i fixed javascriptcore), but i fail to find the headers: on

Re: [Interest] Is this working for anyone, making a QML extension.

2013-12-04 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=digia@qt-project.org > [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf > Of Alan Alpert > Sent: Wednesday, December 04, 2013 1:20 AM > To: Mark Gaiser > Cc: Qt Interest > Subject: Re: [Interest] Is this wo

[Interest] popup() method for window instead of menu

2013-12-04 Thread Damian Ivanov
Hi all, I did not find it but I thought I ask on this list if someone knows for it's existence. For a Menu { id: myMenu } I can call it like a contextMenu by calling it via myMenu.popup() and it will popup at current mouse position and if clicked outside of the myMenu it is automatically hidden ag