Hi Thiego,
Sorry didn¹t mean to jump the gun. Still a bit new to the Qt process. Just
to clarify, the module is not yet part of ³Qt proper². I guess a more
correct term for it would have been ³a playground type of preview of a
potential new Qt module². Accepting it as new module in Qt proper shoul
Hi Gunnar,
Thanks for the comments, quite a lot to go through, but let me answer the
simplest and shortest ones first.
>> The docs say it is an OpenGL-like implementation.
True, should say WebGL like, I have a list of differences on API level
that I¹ve maintained when implementing the context, b
On Wednesday 20 August 2014 13:27:54 Keränen Pasi wrote:
> Hi,
>
> As part of Lars’s blog post some of you may have noticed that a new module
> called QtCanvas3D became available at
> https://qt.gitorious.org/qt/qtcanvas3d
Just for the sake of Qt Project procedures:
This is my +1 vote as a Maint
Hi Pasi,
I'm super happy that we are finally getting support for WebGL in QML, so thanks
for picking this up.
I have some suggestions for further improvement though:
We have a couple of items that implement QSGTextureProvider as an API. It would
be really nice if we could use these directly as
On Wednesday 20 August 2014 23:17:32 Olivier Goffart wrote:
> On Wednesday 20 August 2014 22:04:24 Иван Комиссаров wrote:
> > More, this implementation has a problem - QOptional(T) constructor can't
> > be
> > marked constexpr (as it uses placement new), which makes class useless for
> > constant e
On Wednesday 20 August 2014 21:27:44 Marc Mutz wrote:
> On Wednesday 20 August 2014 21:03:21 Иван Комиссаров wrote:
> > I'm not sure QOptional should mimick T*, not QVariant, but ok.
>
> QOptional opt;
> T *pt;
> QVariant v;
>
> if (opt) ...
> if (tp) ...
> if (v) ... // ERROR
> if (!opt)
On Wednesday 20 August 2014 20:49:03 Marc Mutz wrote:
> I don't find the QVariant::isNull behaviour any useful or intuitive. It's
> too smart. You can always use v.value().isNull() because value() will
> return a default-constructed T if invalid.
I agree it's not intuitive, but it's there and thi
On Wednesday 20 August 2014 22:04:24 Иван Комиссаров wrote:
> More, this implementation has a problem - QOptional(T) constructor can't be
> marked constexpr (as it uses placement new), which makes class useless for
> constant expressions at all.
It's valid in C++14
We need a new macro that only ex
On Wednesday 20 August 2014 21:03:21 Иван Комиссаров wrote:
> I'm not sure QOptional should mimick T*, not QVariant, but ok.
QOptional opt;
T *pt;
QVariant v;
if (opt) ...
if (tp) ...
if (v) ... // ERROR
if (!opt) // operator! missing, btw
if (!tp)
if (!v)
On Wednesday 20 August 2014 21:16:22 Marc Mutz wrote:
> I like Thiago's implicit suggestion (in the change
> comments) to use isEmpty(), though (instead of isNull()).
Actually, on second thought, given the (desirable) conversion to
RestrictedBool, I'd stay with isNull() after all.
--
Qt Develo
On Wednesday 20 August 2014 21:03:21 Иван Комиссаров wrote:
> So, we construct null QOptional from invalid QVariant and non-null
> QOptional from valid?
In current terms, yes. I like Thiago's implicit suggestion (in the change
comments) to use isEmpty(), though (instead of isNull()).
QOptiona
Иван Комиссаров
20 авг. 2014 г., в 22:49, Marc Mutz написал(а):
On Wednesday 20 August 2014 20:04:24 Иван Комиссаров wrote:
> static fromOptionalValue()
> (like fromValue())
>
> Please don't add a templated ctor to QVariant. It currently doesn't have one,
> and if you add that ctor, as impli
On Wednesday 20 August 2014 20:04:24 Иван Комиссаров wrote:
> First is a QVariant integration. I think, i should add:
> 1) template QVariant::QVariant(const QOptional &o);
> constructor
static fromOptionalValue()
(like fromValue())
Please don't add a templated ctor to QVariant. It currently doesn
On Wednesday 20 August 2014 22:04:24 Иван Комиссаров wrote:
> Hello!
>
> I've started working on a QOptional class
> (https://codereview.qt-project.org/#/c/92006/).
>
> As Thiago mentioned in gerrit, there are some things to discuss.
>
> First is a QVariant integration. I think, i should add:
>
Hello!
I've started working on a QOptional class
(https://codereview.qt-project.org/#/c/92006/).
As Thiago mentioned in gerrit, there are some things to discuss.
First is a QVariant integration. I think, i should add:
1) template QVariant::QVariant(const QOptional &o); constructor
2) template Q
I don't think Phonon is a supported backend in Qt 5. You should
probably look into new "Qt Multimedia" framework. On Linux, this
framework relies on GStreamer (for other platforms, it has different
dependencies).
HTH,
-mandeep
On Wed, Aug 20, 2014 at 7:17 AM, Thorvaldur Jochumsson
wrote:
> Hi I
On Thu, Aug 14, 2014 at 12:34 PM, Shaw Andy wrote:
> If you were using WA_PaintOnScreen then you also need to ensure you
> reimplement paintEngine() to return 0. Had you done that at all?
Thanks for your help and sorry for the late reply. I was missing the
return 0 on paintEngine() (I should hav
yay! :)
On 20 Aug 2014, at 15:27, Keränen Pasi wrote:
> Hi,
>
> As part of Lars’s blog post some of you may have noticed that a new module
> called QtCanvas3D became available at https://qt.gitorious.org/qt/qtcanvas3d
>
> QtCanvas3D module is a lightweight implementation of a QML canvas comp
On 2014-08-20, Thorvaldur Jochumsson wrote:
> Hi I am currently designing multimedia support for my application. I am
> wondering which approach to take. Should I make use of the phonon library
> or make use of the multimedia support provided in the Qt multimedia
> library? We are currently making
Hi I am currently designing multimedia support for my application. I am
wondering which approach to take. Should I make use of the phonon library
or make use of the multimedia support provided in the Qt multimedia
library? We are currently making use of Qt 4.8, where phonon is supported.
However, I
Hi,
As part of Lars’s blog post some of you may have noticed that a new module
called QtCanvas3D became available at https://qt.gitorious.org/qt/qtcanvas3d
QtCanvas3D module is a lightweight implementation of a QML canvas component
that allows you to get a 3D context object that you can then us
On Wednesday 20 August 2014 09:30:37 Knoll Lars wrote:
[snip]
> 1. We don’t remove LGPLv2 for any of the libraries that are part of 5.3.
> 2. We explicitly added GPLv2 to the new libraries to make sure open source
> projects that are using GPLv2 only do not have issues using the new
> libraries.
T
On Wed, Aug 20, 2014 at 10:42:00AM +, Nancy Zou wrote:
> Dear Thiago
> As I have mentioned in QTBUG-40641, I think the root cause is the function
> QDirectFbIntegration::initialize() was called two times. Since the Qtcore
> will call it, the original code in
> QDirectFbIntegrationPlugin::c
Hello,
I recently ported application from Qt4 to Qt5 and I rewrote a bit the
audioplayer in it. Now it is using QtMultimedia instead of Phonon.
I noticed that mpc file are not read. I got this error: [Error: "Could
not decode stream."]
I installed some packages on my linux about musepack: libmpcd
Dear Thiago
As I have mentioned in QTBUG-40641, I think the root cause is the function
QDirectFbIntegration::initialize() was called two times. Since the Qtcore will
call it, the original code in
QDirectFbIntegrationPlugin::create() should be deleted. Do you think is it
reasonable?
>Does Qt
On 20/08/14 11:35, "Florian Weimer" wrote:
>On 08/20/2014 11:30 AM, Knoll Lars wrote:
>> On 20/08/14 11:16, "Florian Weimer" wrote:
>>
>>> On 08/20/2014 11:02 AM, Knoll Lars wrote:
>>>
Please have a look at
http://blog.qt.digia.com/blog/2014/08/20/adding-lgpl-v3-to-qt/ for
details
On 08/20/2014 11:30 AM, Knoll Lars wrote:
> On 20/08/14 11:16, "Florian Weimer" wrote:
>
>> On 08/20/2014 11:02 AM, Knoll Lars wrote:
>>
>>> Please have a look at
>>> http://blog.qt.digia.com/blog/2014/08/20/adding-lgpl-v3-to-qt/ for
>>> details.
>>
>> Looking at the Fedora corpus, there are quite
On 20/08/14 11:16, "Florian Weimer" wrote:
>On 08/20/2014 11:02 AM, Knoll Lars wrote:
>
>> Please have a look at
>> http://blog.qt.digia.com/blog/2014/08/20/adding-lgpl-v3-to-qt/ for
>>details.
>
>Looking at the Fedora corpus, there are quite a few programs which link
>against Qt and which are li
On 08/20/2014 11:02 AM, Knoll Lars wrote:
> Please have a look at
> http://blog.qt.digia.com/blog/2014/08/20/adding-lgpl-v3-to-qt/ for details.
Looking at the Fedora corpus, there are quite a few programs which link
against Qt and which are licensed under the GPL, version 2, but not any
later v
Hi everybody,
Please have a look at
http://blog.qt.digia.com/blog/2014/08/20/adding-lgpl-v3-to-qt/ for details.
I’m happy to discuss further here on the mailing list.
Cheers,
Lars
___
Development mailing list
Development@qt-project.org
http://lists.q
30 matches
Mail list logo