Re: [Interest] Can't login to bugreports.qt.io / OpenGL bug

2016-03-23 Thread Yves Bailly
> > And just in case, here's the bug: > > - Download and install Qt 5.6.0 for Windows, 64bits, Visual 2013 > > - Open \5.6\Src\qtbase\examples\opengl\qopenglwidget\ > > qopenglwidget.pro example in QtCreator > - Build, run: fine. > > - Set the screen colors to 65536 (16bits), from > >

[Interest] Can't login to bugreports.qt.io / OpenGL bug

2016-03-23 Thread Yves Bailly
example in QtCreator - Build, run: fine. - Set the screen colors to 65536 (16bits), from "Display/Resolution/Advanced" monitor property. - Build, run: crash. Tested in Windows 7, 64bits, GPU nVidia Quadro K2000. In can give a call stack is needed.

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

2016-03-19 Thread Yves Bailly
ame_string); With the new style, you would have to manually map the strings to the function pointers, hence modifying the connection code each time a new signal or slot is added. -- Yves Bailly Software developer > -Original Message- > From: Interest [mailto:interest-bounces+yves.bailly=

Re: [Interest] WIndows | QMake | DLL

2016-02-10 Thread Yves Bailly
xplicitly exports the symbols you want to link against in other projects. If you don't export anything, then MSVC won't generate the .lib file. See: https://msdn.microsoft.com/en-us/library/3y1sfaz2.aspx https://msdn.microsoft.com/en-us/library/a90k134d.aspx ...or Google for "__declspec(dlle

[Interest] Windows, OpenGL and Qt5.5.0

2015-07-16 Thread Yves Bailly
, -- Yves Bailly Software developer ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Windows, OpenGL and Qt5.5.0

2015-07-16 Thread Yves Bailly
into the Windows specific section and/or the Whatsnew in Qt5.5 section would improve the discoverability of this essential piece of information. Anyway I'll follow the advices and hopefully will be able to rebuild the project. Best regards, -- Yves Bailly Software developer -Original

Re: [Interest] QOpenGLWidget and text

2015-04-01 Thread Yves Bailly
-Original Message- Sent: Wednesday, April 01, 2015 3:42 PM To: interest@qt-project.org Subject: [Interest] QOpenGLWidget and text I've been working on porting a Qt4 GL application to Qt5, using the new QOpenGL classes instead of the old and deprecated QGL classes. Some of it was

Re: [Interest] question about relocating Qt library installation

2014-08-05 Thread Yves Bailly
the qt.conf file. Or you may use this, which is pretty handy and easy to use: http://tver-soft.org/programs/qtbinpatcher Hope this helps. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles

Re: [Interest] OpenGL weirdness

2014-07-25 Thread Yves Bailly
On 24/07/2014 20:33, Till Oliver Knoll wrote: Am 24.07.2014 um 14:13 schrieb Yves Bailly yves.bai...@verosoftware.com: [...] fmt.setVersion(2, 1); ...getGetString(GL_VERSION) gives 4.4.0 (unexpected), and no triangle displayed. As already mentioned in a previous reply: maybe a bit

[Interest] OpenGL weirdness

2014-07-24 Thread Yves Bailly
with Qt 5.2.1 no longer works with Qt 5.3.1. Any hint highly welcome. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Is a pre-built mingw-w64 Qt available?

2014-06-18 Thread Yves Bailly
, -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay. ___ Interest mailing list Interest@qt-project.org http://lists.qt

[Interest] Low-level font identifier

2014-04-09 Thread Yves Bailly
Greetings all, Having to reuse some piece of very old code, I need to get the low-level handle on a font - specifically the HFONT, as we're running on Windows. In the Qt3 days, there was a method QFont::handle() which was providing this information, but it seems it's gone in Qt5. Having a

[Interest] Using OpenGL with Qt

2014-03-17 Thread Yves Bailly
()) { } }; Then from inside My_Class, no more need for any kind of gl- prefix and everyone is happy :-) Or maybe I missed something? For now our only alternative is to use Glew, can you confirm it works well alongside Qt? Regards, -- /- Yves Bailly - Software developer

Re: [Interest] Using OpenGL with Qt

2014-03-17 Thread Yves Bailly
, assuming there's a current context? If that's the case, then subclassing is no longer an issue. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Using OpenGL with Qt

2014-03-17 Thread Yves Bailly
120 searchs. I know QHash is quite fast, but that seems a bit overkill to me... Or am I missing something again? -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow

Re: [Interest] Using OpenGL with Qt

2014-03-17 Thread Yves Bailly
I'm back to my initial question: can Glew be used nicely with Qt? Seems so in my quick test program (even using QOpenGLShaderProgram), but I'm wondering in larger contexts. Thanks anyway for your inputs Laszlo :-) -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http

Re: [Interest] Using OpenGL with Qt

2014-03-17 Thread Yves Bailly
Le 17/03/2014 16:03, Sean Harmer a écrit : On Monday 17 March 2014 13:42:04 Yves Bailly wrote: Le 17/03/2014 12:59, Agocs Laszlo a écrit : So I'm back to my initial question: can Glew be used nicely with Qt? Seems so in my quick test program (even using QOpenGLShaderProgram), but I'm

Re: [Interest] Weird error using Visual C++ 2013

2014-03-05 Thread Yves Bailly
Le 04/03/2014 17:57, Thiago Macieira a écrit : Em ter 04 mar 2014, às 15:04:13, Yves Bailly escreveu: When trying GCC, either on Linux or using MinGW, it works fine. Any hint about what may happen? is it a compiler bug, or something else? Any idea about a workaround? Please valgrind your

Re: [Interest] Weird error using Visual C++ 2013

2014-03-05 Thread Yves Bailly
Le 05/03/2014 13:24, Krzysztof Kawa a écrit : 2014-03-05 8:59 GMT+01:00 Yves Bailly yves.bai...@sescoi.fr mailto:yves.bai...@sescoi.fr: For what I can see, it seems there's some troubles between QString and Visual 2013 initializer-lists implementattion. Keeping searching

Re: [Interest] Qt 5.2.1 for Windows 32-bit (VS 2012, OpenGL) version?

2014-02-26 Thread Yves Bailly
Le 26/02/2014 13:14, Thomas Meyer a écrit : Hi, I can't find a Qt 5.2.1 for Windows 32-bit (VS 2012, OpenGL) version on http://qt-project.org/downloads. Is it true and will it be there sometime? Check http://tver-soft.org/qt64 (the Qt 5.2 x86 tab) Hope this helps. -- /- Yves Bailly

Re: [Interest] Qt5/Android examples on the Play store?

2014-02-23 Thread Yves Bailly
/apps/details?id=org.ybailly.qtoverflow or https://play.google.com/store/apps/details?id=org.kde.necessitas.example.kanaroma (ok this one is Qt4 using the old and great Necessitas, but well) -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr

Re: [Interest] Compile Speed Question regarding MOC

2014-02-19 Thread Yves Bailly
-minimizing-compile-time-dependencies-part-2/ :-) -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] QLabel and QScrollArea

2014-02-18 Thread Yves Bailly
when needed. Alternatively try QLabel::setWordWrap(true). Hope this helps. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Qt 5 release PDBs for MSVC2012

2014-01-27 Thread Yves Bailly
bugs because of different compilers/linkers used than in the official distribution). I would also be really interested in having those files. Maybe as a separate archive, as they can get quite huge? -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr

Re: [Interest] QtThread

2014-01-22 Thread Yves Bailly
-to-track behaviour, it's quite handy to follow the path of the data *inside* Qt itself. It's not debugging Qt, it's just trying to figure out why something is not used or interpreted as (maybe naively) expected. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr

[Interest] Usage of QAbstractOpenGLFunctions and derived classes

2013-12-17 Thread Yves Bailly
those QOpenGLFunctions_* classes in non-trivial cases. Has others had more ideas? Thanks in advance. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Usage of QAbstractOpenGLFunctions and derived classes

2013-12-17 Thread Yves Bailly
Le 17/12/2013 10:21, Thiago Macieira a écrit : On terça-feira, 17 de dezembro de 2013 09:49:48, Yves Bailly wrote: (1) When I try to build this program, I get a link error: gl_widget.obj : error LNK2019: symbole externe non résolu protected: bool __cdecl QAbstractOpenGLFunctions

Re: [Interest] Usage of QAbstractOpenGLFunctions and derived classes

2013-12-17 Thread Yves Bailly
(...); Again that repetitive prefix (gl- here) looks a bit odd and is quite cumbersome... that's why I why looking for a way to get rid of it by subclassing. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being

Re: [Interest] Usage of QAbstractOpenGLFunctions and derived classes

2013-12-17 Thread Yves Bailly
Le 17/12/2013 17:58, Thiago Macieira a écrit : On terça-feira, 17 de dezembro de 2013 11:56:58, Yves Bailly wrote: It is protected, so public for any derived class... if it's not intended to be used at all, then maybe it might be better to remove it entirely? It's used by derived classes

Re: [Interest] VS2013

2013-12-12 Thread Yves Bailly
exist. In that case, maybe the ANGLE version could be dropped, as it doesn't work on WinXP according to http://qt-project.org/wiki/Qt-5-on-Windows-ANGLE-and-OpenGL ? -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done

Re: [Interest] Qt and MSVC 2013

2013-11-27 Thread Yves Bailly
Le 27/11/2013 09:17, Philippe a écrit : Would be nice, but without the Visual Studio Addin (I haven't seen yet any VS 2013 beta version), this will not be usable for many. Perfectly usable if you're using only the compiler and QtCreator as IDE :-) -- /- Yves Bailly - Software developer

Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-30 Thread Yves Bailly
on the desktop anyway. Regards, -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay. ___ Interest mailing list Interest@qt

Re: [Interest] QGLWidget and OGL version 4.3 functions?

2013-09-30 Thread Yves Bailly
. Will it be replaced by something just as convenient? QWindow is just not as easy to use, moreover embedding it in the middle of a GUI full of controls (in a QMdiSubWindow for example). QWidget::createWindowContainer() is pretty unnatural. Regards, -- /- Yves Bailly - Software developer

[Interest] QGLWidget and QGraphicsView

2013-06-25 Thread Yves Bailly
the Gl_Widget which would call updateGL() periodically, which is far from optimal... Any hint appreciated. Regards, -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little

Re: [Interest] Desktop deployment

2013-06-20 Thread Yves Bailly
want to copy my exe to someone's else computer (which already have already all the needed standard runtimes installed). Creating a full-fledged, customer-targeted installer is another matter, which is already nicely handled. Regards, -- /- Yves Bailly - Software developer

Re: [Interest] Q_PROPERTY notification across processes?

2013-05-17 Thread Yves Bailly
. I found this project recently: http://www.zeromq.org/ Maybe it could be useful for what you're looking to achieve. I've not yet tried it though. Hope this helps. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done

Re: [Interest] QTabWidget Vertical writing

2013-05-16 Thread Yves Bailly
::setTabPosition. Hope this helps. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay. ___ Interest mailing list Interest

Re: [Interest] Qt 5.1 Beta Released

2013-05-14 Thread Yves Bailly
searched the doc, but couldn't find any information, about installing the right Android SDK/NDK, about configuring Qt for a static build, and so on... Or did I miss the relevent howto ? Again, thanks all for this wonderful release. -- /- Yves Bailly - Software developer

Re: [Interest] Qt 5.0.2 speed and widgets

2013-04-16 Thread Yves Bailly
mind much about debug mode (it's just annoying for developpers), a 25% slowdown even in release mode is more of a concern. For what it worths... -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done

Re: [Interest] can qt.conf be put in a common location?

2013-01-28 Thread Yves Bailly
is the case for roughly 1% of customers... The build twice advice simply doesn't work. -- /- Yves Bailly - Software developer -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Bringing Qt, C++ To The Web

2013-01-17 Thread Yves Bailly
, and such bandwidth is more and more common. Granted, it's far from ideal-perfect, but all wrong is a bit over. -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

[Interest] WebKit 1 or 2 ?

2012-12-26 Thread Yves Bailly
... Regards, -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay. ___ Interest mailing list Interest@qt-project.org http

Re: [Interest] Non-movable Qt build

2012-12-26 Thread Yves Bailly
Le 26/12/2012 17:05, Bob Hood a écrit : On 12/26/2012 8:14 AM, Yves Bailly wrote: Is there a way to tell qmake to use something else than those hard-coded paths? http://doc.qt.digia.com/qt/qt-conf.html Has already stated, this doesn't work - as if qmake was not reading at all this file

Re: [Interest] Non-movable Qt build

2012-12-26 Thread Yves Bailly
battles are the most delightful to restart... ;-) Regards, -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Trouble with release build on Win7

2012-12-21 Thread Yves Bailly
generated *.obj files... Well, let's continue the adventure ;-) -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] Trouble with release build on Win7

2012-12-21 Thread Yves Bailly
Hello again, Le 21/12/2012 09:44, Yves Bailly a écrit : Le 21/12/2012 09:10, Koehne Kai a écrit : I'm building Qt5 for 64bits using Visual 2010 on a Windows 7 64bits host, debug and release. However it seems anything using Qt5Gui.dll fails to start. Now things get weird... I build a 32bits

Re: [Interest] Trouble with release build on Win7

2012-12-21 Thread Yves Bailly
Le 21/12/2012 10:46, Koehne Kai a écrit : -Original Message- From: interest-bounces+kai.koehne=digia@qt-project.org [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Of Yves Bailly Sent: Friday, December 21, 2012 10:35 AM Cc: interest@qt-project.org Subject

[Interest] Trouble with release build on Win7

2012-12-20 Thread Yves Bailly
-qt-zlib -qt-pcre -icu -qt-libpng -qt-libjpeg -qt-freetype -no-angle -no-incredibuild-xge -openssl -no-qml-debug -mp -I %ICU_INCLUDE% -I %OPENSSL_INCLUDE% -I %PGSQL_INCLUDE% -L %PGSQL_LIBS% -L %OPENSSL_LIBS% -L %ICU_LIBS% Any hint much welcome. -- /- Yves Bailly - Software developper

Re: [Interest] Trouble with release build on Win7

2012-12-20 Thread Yves Bailly
Hello all again, Le 20/12/2012 15:19, Yves Bailly a écrit : Greetings all, I'm building Qt5 for 64bits using Visual 2010 on a Windows 7 64bits host, debug and release. However it seems anything using Qt5Gui.dll fails to start. - Running the example qtbase/examples/gui/analogclock/debug

Re: [Interest] packaging a build

2012-09-07 Thread Yves Bailly
as your executable, then in this same folder place a file named qt.conf containing: [Paths] plugins = plugins (assuming you put the plugins in a plugins subdirectory). This works for me, Qt 4.8.2. Hope this helps. -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-19 Thread Yves Bailly
probably the easiest to install), but for now, no 4.7.x release available... Are you using MinGW-w64? Is is usable without MSYS, and installable without too much troubles? I'd be more than glad to try such a build, targetting 64bits binaries. Regards, -- /- Yves Bailly - Software

[Interest] Loading compressed SVG in QWebView

2012-05-31 Thread Yves Bailly
the data myself... Maybe the MIME type I provide is not correct? Any hint appreciated :-) -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

[Interest] About model/view sorting and headers

2012-03-05 Thread Yves Bailly
here? How can I get the vertical header to be sorted just like the rows are sorted? Thanks for any hint! -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] About model/view sorting and headers

2012-03-05 Thread Yves Bailly
()); Is this wrong? should I set the rows' headers in another way? -- /- Yves Bailly - Software developper -\ \- Sescoi RD - http://www.sescoi.fr -/ The possible is done. The impossible is being done. For miracles, thanks to allow a little delay

Re: [Interest] When its ready

2011-12-15 Thread Yves Bailly
Le 15/12/2011 17:11, Thiago Macieira a écrit : On Thursday, 15 de December de 2011 15.36.24, Yves Bailly wrote: There is a Jira item related to this https://bugreports.qt.nokia.com/browse/QTBUG-20556. The configure succeeds if you leave -ltcg out. Indeed it works (compiling examples and demos