Re: [Development] Documentation and Modularization

2012-09-20 Thread Saether Jan-Arve
Actually, I have tried using tag files (or rather, qdocs .index files, which I guess is a superset of tag files in the semantic sense). This works in principle, but it needs some additional changes to qdoc and how the makefiles are generated (since its two-pass). We can go down that route

Re: [Development] QFontMetrics and QScriptLine height calculation

2012-10-10 Thread Saether Jan-Arve
QAccessibleTextInterface::characterRect() is supposed to return the bounding box, so if it's one pixel too high or something it's not something I would worry about. The test could therefore be relaxed a bit. It should also be improved so that it doesn't just verify the size (it currently

Re: [Development] Proposing Shawn Rutledge as approver

2012-10-17 Thread Saether Jan-Arve
+1 from me -Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Frederik Gladhorn Sent: 16. oktober 2012 13:53 To: development@qt-project.org Subject: [Development]

Re: [Development] Co-installation library naming rules

2012-10-19 Thread Saether Jan-Arve
-Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Simon Hausmann Sent: 18. oktober 2012 16:42 To: development@qt-project.org Cc: Thiago Macieira Subject: Re:

Re: [Development] repository for the toolwrapper

2012-11-28 Thread Saether Jan-Arve
-Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Oswald Buddenhagen Sent: 27. november 2012 17:13 To: development@qt-project.org Subject: Re: [Development]

Re: [Development] Broken class in the Qt Multimedia module

2012-12-10 Thread Saether Jan-Arve
Please report the error issues on the bugtracker. After a quick google, it seems that the CPXCInfoShlExt stuff come from a PDF-XChange shell extension, and I don't understand why such a shell extension is invoked when you try to playback video. Maybe you get these messages when you open the

Re: [Development] Settings API for QML

2012-12-14 Thread Saether Jan-Arve
-Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Alan Alpert Sent: 12. desember 2012 21:33 To: Mark Cc: development@qt-project.org; Bache-Wiig Jens Subject:

Re: [Development] Help needed with failing test: tst_qaccessibility::bridgeTest() on Windows

2013-01-22 Thread Saether Jan-Arve
Hi David. Yes, I can take a look. Do you know if it's unstable, or is it failing all the time? Jan Arve -Original Message- From: David Faure [mailto:david.fa...@kdab.com] Sent: 16. januar 2013 14:14 To: Kleint Friedemann; Saether Jan-Arve Cc: development@qt-project.org Subject

Re: [Development] Help needed with failing test: tst_qaccessibility::bridgeTest() on Windows

2013-01-22 Thread Saether Jan-Arve
Ah thanks! And sorry for the noise. -Original Message- From: Gladhorn Frederik Sent: 16. januar 2013 15:57 To: development@qt-project.org Cc: David Faure; Kleint Friedemann; Saether Jan-Arve Subject: Re: [Development] Help needed with failing test: tst_qaccessibility::bridgeTest

Re: [Development] CMake tests with 64 bit windows

2013-04-10 Thread Saether Jan-Arve
Attached is the essential output, Stephen. Interestingly, the tool chain I had in this shell was msvc2010 (x64). (As you can see from the call to 'cl') However, cmake doesn't seem to pick that up and instead picks up my older 2008 compiler. Inspecting the qtcmaketest.vcproj file also shows the

Re: [Development] Linking release build of webkit with debug build of Qt

2013-07-11 Thread Saether Jan-Arve
You shouldn't mix debug and release libraries. It will most likely cause your application to malfunction. If you need webkit in release mode you should also build the rest of Qt in release mode. Jan Arve From: development-bounces+jan-arve.saether=digia@qt-project.org

Re: [Development] Qt Base code coverage statistics are now computed on Ubuntu 11.04

2013-07-22 Thread Saether Jan-Arve
I was looking at the bottom of the list and found for instance qgraphicsanchorlayout.cpp to be down there. It seems to be skipped because you haven't configured Qt as a developer-build. If possible, you should do add -developer-build to the configure line. Jan Arve From:

Re: [Development] [QML] Positioner and Qt Quick Layout

2013-07-29 Thread Saether Jan-Arve
It's not a bug. GridLayout is not a Positioner, so it does not provide such functionality (however, it could). In this specific case you might be able to use the index from the Repeater in your case. If that's not sufficient, feel free to file a suggestion at bugreports.qt-project.org. Jan

Re: [Development] ICU decision?

2013-08-08 Thread Saether Jan-Arve
...and LCMapStringEx can be used for generating sort keys. However, there seems to be some things that need to be changed/removed from QCollator, such as the index character feature (I don't recall the exact function name). Also, the case sensitivity enum in QCollator can configure sorting to

Re: [Development] Nominating Thorbjørn Martsum (ThorbjornTux) as approver

2013-08-30 Thread Saether Jan-Arve
+1 -Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Stephen Kelly Sent: 30. august 2013 15:05 To: development@qt-project.org Subject: [Development] Nominating

Re: [Development] Feature request: several layouts in a single ui file

2013-09-02 Thread Saether Jan-Arve
What you are suggesting should be possible, but I would like to explore if there can be a more generic way. You are suggesting to push this even further, i.e. one layout might use a QComboBox instead of a groupbox with radio buttons. * If its pushed far enough, wouldn't this be like having two

Re: [Development] [Feature] Q_INFO: Annotations for classes, methods, properties and enums

2013-09-11 Thread Saether Jan-Arve
-Original Message- Other people have suggested adding the info to the Q_PROPERTY expansion. This would avoid a sequence of Q_INFO / Q_PROPERTY pairs in the class that might be difficult to read: Q_INFO(foo, bar) Q_PROPERTY(int bar READ bar) Q_INFO(foo, baz)

Re: [Development] Namespaces (was: Qt Platform Extras)

2013-09-17 Thread Saether Jan-Arve
-Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Nurmi J-P Sent: 16. september 2013 12:49 To: development@qt-project.org Subject: [Development] Namespaces (was:

Re: [Development] [QtSerialPort] Leaving from the project

2013-09-20 Thread Saether Jan-Arve
Hello Denis. That was sad to hear. If he is always busy, (I know this might be subjective from your POV) then I'm not sure if it was the right decision for you to leave. If he's always busy, who will drive the project forward now? Did you discuss this with other contributors of the project? If

Re: [Development] Moving JP2 imageformat from qt-solutions to qtimageformats

2013-11-05 Thread Saether Jan-Arve
Hi I'm just wondering if we need yet another library (Jasper), therefore my question: Is there any big benefits in having ICNS support on other platforms than OSX? Jan Arve -Original Message- From: development-bounces+jan-arve.saether=digia@qt-project.org

Re: [Development] Moving JP2 imageformat from qt-solutions to qtimageformats

2013-11-06 Thread Saether Jan-Arve
On Nov 5, 2013, at 11:37 AM, Thiago Macieira thiago.macie...@intel.commailto:thiago.macie...@intel.com wrote: On terça-feira, 5 de novembro de 2013 08:57:12, Saether Jan-Arve wrote: Is there any big benefits in having ICNS support on other platforms than OSX? I don't think anyone wants ICNS outside

Re: [Development] Moving JP2 imageformat from qt-solutions to qtimageformats

2013-11-08 Thread Saether Jan-Arve
From what I can see, though, the real blocker here is the JasPer dep. I wholeheartedly agree that including JasPer as a dependency just for an icon engine seems like a rather insane requirement. But if there Yes, and that's why I asked if it was relevant for OSX only, since then I believe the

Re: [Development] Staging changes in release branch

2013-11-14 Thread Saether Jan-Arve
Actually all of these failures shown in https://codereview.qt-project.org/#change,70990 seems to be caused by the following change: http://codereview.qt-project.org/71009 [PS1] - Fix possible crashes in QTreeView So I wouldn't say that it is caused by the tests... Jan Arve -Original

Re: [Development] What's the magic incantation for developing effectively from the Qt git repo?

2013-12-09 Thread Saether Jan-Arve
From: development-bounces+jan-arve.saether=digia@qt-project.org [mailto:development-bounces+jan-arve.saether=digia@qt-project.org] On Behalf Of Chris Colbert Sent: 6. desember 2013 02:46 To: Olivier Goffart Cc: development@qt-project.org Subject: Re: [Development] What's the magic

Re: [Development] Dropping XP?

2013-12-09 Thread Saether Jan-Arve
FWIW, Browser stats fun: Bar chart last 30 days: http://gs.statcounter.com/#os-ww-monthly-201312-201312-bar (Windows XP still has 18.52%) Trend chart: http://gs.statcounter.com/#os-ww-monthly-200808-201311 Of course - it's declining. The decline seems actually to flatten out. I think most

Re: [Development] The Dynamic OpenGL on Windows Change

2014-02-27 Thread Saether Jan-Arve
On Behalf Of Sean Harmer On 27/02/2014 15:42, Friedemann Kleint wrote: Hi, the intention was here to pave to way for a software renderer for platforms that have no GL at all (virtual machines, remote logins, etc, see https://bugreports.qt-project.org/browse/QTBUG-36091 ). Is this not

Re: [Development] New class for QtWidgets: ColumnResizer

2014-06-14 Thread Saether Jan-Arve
Hi I would really like to welcome the feature you present here, but I can see that your idea has some caveats (some are sensible restrictions though), but the API doesn't give any indication of that. The main caveats are: 1. The implementation is limited to the first column of a layout,

Re: [Development] [Interest] Direct-lookup translation, even for English (was Re: get english translation)

2014-09-02 Thread Saether Jan-Arve
But even if it were not for the enum-lookup implementation that they insisted on, our assumption that English needs no translation does not fit the multi-team workflow. Yes, we should not assume that English needs no translation. As a matter of fact I don't know where (or why) we assume

Re: [Development] [Interest] Direct-lookup translation, even for English (was Re: get english translation)

2014-09-03 Thread Saether Jan-Arve
. september 2014 08:25 To: Saether Jan-Arve; Rutledge Shawn; Thiago Macieira Cc: development@qt-project.org Subject: RE: [Development] [Interest] Direct-lookup translation, even for English (was Re: get english translation) Actually, some of the i18n features of Qt _requires_ you to provide

Re: [Development] [Interest] Direct-lookup translation, even for English (was Re: get english translation)

2014-09-04 Thread Saether Jan-Arve
] [Interest] Direct-lookup translation, even for English (was Re: get english translation) On Wednesday 03 September 2014 07:16:22 Saether Jan-Arve wrote: We could do that, but I don't see the problem in providing the translation file. Shawn already mentioned many good reasons for why translating

Re: [Development] [Interest] Direct-lookup translation, even for English (was Re: get english translation)

2014-09-05 Thread Saether Jan-Arve
feature. A quick search for %n in the Qt .ts files would reveal that. I don't have them here, or I would take a peek. But even so: Qt could pre-load the Qt .qm file by default from an internal resource, and I guess that makes sense. There is no need for a special tr() version to do that. I

Re: [Development] CI broken again

2014-10-19 Thread Saether Jan-Arve
any update on this? It seems tst_pauseanimation is failing constantly (only on OSX 10.9) Jan Arve Fra: development-bounces+jan-arve.saether=theqtcompany@qt-project.org [development-bounces+jan-arve.saether=theqtcompany@qt-project.org] på vegne

Re: [Development] CI broken again

2014-10-20 Thread Saether Jan-Arve
Change: https://codereview.qt-project.org/97600 Fra: development-bounces+jan-arve.saether=theqtcompany@qt-project.org development-bounces+jan-arve.saether=theqtcompany@qt-project.org på vegne av Sarajärvi Tony tony.saraja...@theqtcompany.com Sendt: 20.

Re: [Development] CI broken again

2014-10-20 Thread Saether Jan-Arve
20, 2014 21:06 To: Qt Development Group Subject: Re: [Development] CI broken again On 20 Oct 2014, at 15:04, Saether Jan-Arve jan-arve.saet...@theqtcompany.com wrote: Change: https://codereview.qt-project.org/97600 (comment from 97600) // On OS X the windows might get positioned exactly

Re: [Development] Do QtQuick.Layouts depend on QtQuick.Controls?

2014-12-10 Thread Saether Jan-Arve
Yes, for app development they are independent. They didn't even have to live in the same repository, but since they are usually used together we chose to have them in the same repo. That makes it easier to catch bugs earlier and to make sure that Controls and Layouts always cooperate properly.

Re: [Development] Do QtQuick.Layouts depend on QtQuick.Controls?

2014-12-10 Thread Saether Jan-Arve
Fra: Dmitry Volosnykh dmitry.volosn...@gmail.com Sendt: 10. desember 2014 10:47 Til: Saether Jan-Arve Kopi: Alejandro Exojo; development@qt-project.org Emne: Re: [Development] Do QtQuick.Layouts depend on QtQuick.Controls? Thanks for your clarification