On Mon, May 30, 2016 at 12:39 AM, René J. V. wrote:
> René J.V. Bertin wrote:
>
> Hi,
>
> >
> >> In our application, we have the following code in a
> >> QApplication::eventFilter reimplementation for this exact reason:
> >>
> >> case QEvent::ChildAdded:
> > ...
> >> theChildWidget->setAttribute(
Den 30 maj 2016 4:49 em skrev "Jérôme Godbout" :
>
> You may want to convert the number from javascript before setting the arg:
>
> Int:
> myIntValue.toString(10)
> Float:
> myFloatValue.toFixed(2)
> myFloatValue.toPrecision(6)
>
> For leading 0 on 16 value:
> ("000" + myIntValue.toStri
You may want to convert the number from javascript before setting the arg:
Int:
myIntValue.toString(10)
Float:
myFloatValue.toFixed(2)
myFloatValue.toPrecision(6)
For leading 0 on 16 value:
("000" + myIntValue.toString(10)).substr(-16)
Jerome
On Sun, May 29, 2016 at 6:36 AM, Elvis S
30.05.2016, 16:15, "Frank Hemer" :
> On Monday 30 May 2016 16:12:44 Konstantin Tokarev wrote:
>> 30.05.2016, 15:59, "Frank Hemer" :
>> > On Friday 20 May 2016 13:51:04 Frank Hemer wrote:
>> >> Hi,
>> >>
>> >> I really appreciate the option to globally scale qt applications with
>> >>
On Monday 30 May 2016 16:12:44 Konstantin Tokarev wrote:
> 30.05.2016, 15:59, "Frank Hemer" :
> > On Friday 20 May 2016 13:51:04 Frank Hemer wrote:
> >> Hi,
> >>
> >> I really appreciate the option to globally scale qt applications with
> >> QT_SCALE_FACTOR. After some tweaking I have managed t
30.05.2016, 15:59, "Frank Hemer" :
> On Friday 20 May 2016 13:51:04 Frank Hemer wrote:
>> Hi,
>>
>> I really appreciate the option to globally scale qt applications with
>> QT_SCALE_FACTOR. After some tweaking I have managed to work around most of
>> the bugs that are still there.
>>
>> Now
On Friday 20 May 2016 13:51:04 Frank Hemer wrote:
> Hi,
>
> I really appreciate the option to globally scale qt applications with
> QT_SCALE_FACTOR. After some tweaking I have managed to work around most of
> the bugs that are still there.
>
> Now qwebengine currently does not provide pdf support
Hello,
Is possible to transfer QList to QML (to Map path) without
temporary copy conversion to QVariantList?
What is fastest way to convert QList to QVariantList?
Currently i doing it that way:
QVariantList tmp;
tmp.reserve(data.size());
for (const QGeoCoordinate& i: data)
tmp.push_back(QVaria
René J.V. Bertin wrote:
Hi,
>
>> In our application, we have the following code in a
>> QApplication::eventFilter reimplementation for this exact reason:
>>
>> case QEvent::ChildAdded:
> ...
>> theChildWidget->setAttribute(Qt::WA_LayoutUsesWidgetRect, true);
>
> That's very interesting, I hadn