Re: [Interest] z-order for Qt's signals and slots

2011-11-23 Thread Giuseppe D'Angelo
not completely true -- slots are guaranteed to be called in the order they have been connected to the signal. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] z-order for Qt's signals and slots

2011-11-23 Thread Giuseppe D'Angelo
with involve a network? Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] post event between threads

2012-04-03 Thread Giuseppe D'Angelo
://qt-project.org/wiki/QThreads_general_usage http://labs.qt.nokia.com/2006/12/04/threading-without-the-headache/ -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QGraphicsItem: How to limit the position to which it is moved?

2012-04-11 Thread Giuseppe D'Angelo
of these notifications. That's the proper way. But note that you need QGraphicsItem::ItemSendsGeometryChanges set for it to work. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo

Re: [Interest] set a border on QWidget

2012-05-03 Thread Giuseppe D'Angelo
a border visible. Any help would be appreciated, thanks Sujan I think you're looking for QFrame? Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] C++11 in Qt5

2012-06-11 Thread Giuseppe D'Angelo
those nice extra features. Otherwise you don't. But you can still use Qt 5 without them :) HTH, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Why QString and not std::string?

2012-06-15 Thread Giuseppe D'Angelo
On 15 June 2012 14:35, Sven Anderson sven.ander...@snom.com wrote: On 15.06.2012 14:58, Thiago Macieira wrote: Any one care to give me the Standard Library equivalent of:       QString::number(x) string to_string(int) ? No go, C++11 only. -- Giuseppe D'Angelo

Re: [Interest] Why QString and not std::string?

2012-06-15 Thread Giuseppe D'Angelo
On 15 June 2012 15:10, Rui Maciel rui.mac...@gmail.com wrote: On 06/15/2012 02:50 PM, Giuseppe D'Angelo wrote:  string to_string(int) ? No go, C++11 only. But it's standard and it is C++. But (I think) the point was: what should have we used for the last 10-15 years of QString? -- Giuseppe

Re: [Interest] Dragging child widgets around

2012-08-13 Thread Giuseppe D'Angelo
widgets transparent for mouse events (Qt::WA_TransparentForMouseEvents) come to mind. Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QString operator==

2012-08-21 Thread Giuseppe D'Angelo
-- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Write from different thread

2012-08-23 Thread Giuseppe D'Angelo
-- Giuseppe D'Angelo * Yes, of course, if you manage to control event dispatching then 1b collapses onto 2, but that's not really how QObjects are meant to be used, is it? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman

Re: [Interest] Write from different thread

2012-08-23 Thread Giuseppe D'Angelo
On 23 August 2012 12:21, Marc Mutz marc.m...@kdab.com wrote: Hi Giuseppe, I think you got the categories wrong. Sorry, I rushed out the email and in the end it turned to be not precise about what I was referring to with safe. On Thursday August 23 2012, Giuseppe D'Angelo wrote: Now we have

Re: [Interest] Possible Qt SVG bug?

2012-08-29 Thread Giuseppe D'Angelo
, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] How can i manipulate pixel data from a QWidget?

2012-09-22 Thread Giuseppe D'Angelo
the QWidget pixel data directly. So how do i do that? With a custom QPaintEngine/QPaintDevice combination, and a custom graphics system that uses it. Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org

Re: [Interest] Heavily Commented Example: Simple Single Frontend with Two Backends

2012-10-23 Thread Giuseppe D'Angelo
* introduced: MMIO, changing values from signal handlers (together with a sig_atomic_t), or saving the value of automatic variables across a setjmp/longjmp? Of course now it's a reliable solution to all three problems... (Yes, threads never entered the picture.) Cheers, -- Giuseppe D'Angelo

Re: [Interest] Where in Qt 5 is QApplication::Type now?

2012-12-03 Thread Giuseppe D'Angelo
553e216d891177ee0c2cea70bbd7f21103fc7795 a2ab156872195e0398f4cfe1992b526aa1315c76 in qtbase. Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QMatrix4x4 in Qt 5

2013-01-08 Thread Giuseppe D'Angelo
QMatrix4x4-related functions are deprecated; the class itself is not. About QMatrix: use QTransform instead, as stated in QMatrix docs. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo

Re: [Interest] [PATCH qtbase] qlinuxfbscreen: fix crash in switchToGraphicsMode()

2013-01-09 Thread Giuseppe D'Angelo
Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] How to append data to webkit POST?

2013-01-15 Thread Giuseppe D'Angelo
On 15 January 2013 09:50, 程梁 devb...@outlook.com wrote: Could you tell me if I could append custom data to request? If I could, how should I do it, if not, what should I do? You can install a custom QNetworkAccessManager on the QWebPage and do any kind of modification you need. -- Giuseppe

Re: [Interest] QNetworkAccessManager in a command line, non-eventloop application

2013-01-20 Thread Giuseppe D'Angelo
On 20 January 2013 17:29, Scott Aron Bloom scott.bl...@onshorecs.com wrote: Honestly, if qNAM had the ability to set the timeout, I would have no problem with a blocking call.. Start a QTimer and abort the QNetworkReply if it fires before finished(), and viceversa. Cheers, -- Giuseppe

Re: [Interest] IPV6 not working

2013-03-22 Thread Giuseppe D'Angelo
both IPv4 and IPv6 on a dual-stack machine. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QRegExp help: boundaries

2013-03-27 Thread Giuseppe D'Angelo
as a \W. But there's no such transition in your string: the \b is between the beginning (\W) and the leading backslash (\W again). Therefore, it will not match. HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410

Re: [Interest] Problem using QTcpSocket with large amounts of data

2013-03-30 Thread Giuseppe D'Angelo
On 30 March 2013 10:54, Christoph Kurz c.k...@melph.de wrote: Any ideas would be appreciated. Valgrind your application? -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Oops! Somebody's got a bad case of dependency bloat!

2013-04-10 Thread Giuseppe D'Angelo
, V8 and WebKit, and they come with their own build requirements. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Oops! Somebody's got a bad case of dependency bloat!

2013-04-10 Thread Giuseppe D'Angelo
and me) are not using Qt mainly for desktop applications... You still need Perl for building qtbase. Once you've got qtbase compiled, just compile the other modules you're interested in (qmake make). -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt

Re: [Interest] Oops! Somebody's got a bad case of dependency bloat!

2013-04-10 Thread Giuseppe D'Angelo
on one machine and automatically deploy it on all of the 14,000?) What if tomorrow the developers will need package FooBar? Will that block the work of 14,000 developers because the sysadmins cannot install it on their machines? -- Giuseppe D'Angelo

Re: [Interest] Oops! Somebody's got a bad case of dependency bloat!

2013-04-10 Thread Giuseppe D'Angelo
with all it's restrictions Note that Perl is needed to *build* Qt. End-users only require the compiled libs (and the various runtime dependencies: plugins, etc.) -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt

Re: [Interest] QDirIterator as Variable in class

2013-04-23 Thread Giuseppe D'Angelo
parse). This is a C++ problem, not a Qt one. HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions

Re: [Interest] error connecting signals

2013-05-07 Thread Giuseppe D'Angelo
: put Q_OBJECT in each and every QObject subclass. And why can I cast a VideoPlayer to a PlayerBase but not in the other direction? What do you mean? You can always cast for free to a base*, but you need an explicit cast to go towards a derived class. -- Giuseppe D'Angelo *unless you're

Re: [Interest] Flip a QSGSimpleTextureNode

2013-05-19 Thread Giuseppe D'Angelo
for http://qt.gitorious.org/qt/qtdeclarative/commit/5c72255 HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions

Re: [Interest] [Development] Nested Mousearea don't pass events

2013-05-20 Thread Giuseppe D'Angelo
that a double click will print Click and Double Click). Hope this helps, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions

Re: [Interest] QXmlStreamReader and qDebug()

2013-07-26 Thread Giuseppe D'Angelo
are on the top of the stack. Hope this helps, -- Join us at Qt Developer Days 2013! - https://devdays.kdab.com Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform

Re: [Interest] Strange undeletable QTemporaryFile. Is it a bug?

2013-08-24 Thread Giuseppe D'Angelo
://en.wikipedia.org/wiki/Visual_C%2B%2B_name_mangling#Function_2 This will cause a linker error (you'd be looking for a symbol with a different name in the shared library). -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt

Re: [Interest] QMapint64_t significantly slower than QMapint32_t

2013-09-21 Thread Giuseppe D'Angelo
elements) and I have much bigger structures in my app, so the memory size should not be responsible for the slowdown. Do you have a SSCCE [1] that clearly shows the issue? [1] http://sscce.org/ -- Giuseppe D'Angelo ___ Interest mailing list Interest

Re: [Interest] QStringList, takeFirst and order of execution

2013-11-11 Thread Giuseppe D'Angelo
operator. C++ does not define the order of evaluating its parameters. That means that either lineData.takeFirst() can be called before evaluating the inner operator, or vice-versa. Depending on what the compiler chooses to do, you'll have a different result. HTH, -- Giuseppe D'Angelo

Re: [Interest] Not possible to connect QTcpSocket::error signal the Qt5-way?

2013-11-22 Thread Giuseppe D'Angelo
overloaded function type means that error() has overloads, and you need to select the right one: connect(socket, static_castvoid (QTcpSocket::*)(QAbstractSocket::SocketError)(QTcpSocket::error), this, Class::method); HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com

Re: [Interest] Not possible to connect QTcpSocket::error signal the Qt5-way?

2013-11-25 Thread Giuseppe D'Angelo
could be added to this page here, http://qt-project.org/doc/qt-5.1/qtcore/signalsandslots.html ? There are a couple of patches to improve the situation, for instance https://codereview.qt-project.org/#change,67348 -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK

Re: [Interest] C'tor member initialisation with 'this'

2014-01-10 Thread Giuseppe D'Angelo
the parent children list. So when the QObject destructor (for the QObject sub-object of QtSoapHttpTransport), it won't double delete anything. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo

Re: [Interest] Question about reading glsl shader source from a QResource using compression

2014-01-13 Thread Giuseppe D'Angelo
? Is there some assumption here that such small text files aren't compressed? I think the example is just doing it wrong, it should instead load the resource file contents using QFile into two QByteArrays into the ctor and then return the QByteArrays' contents there. -- Giuseppe D'Angelo

Re: [Interest] Harmonizing the Qt 5.x Documentation

2014-03-11 Thread Giuseppe D'Angelo
of dropping them altogether it would be better to turn them into JIRA reports so they can be evaluated and merged in the docs, if possible (then we can think of ditch or redesign the entire feature). Regards, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang

Re: [Interest] How to access QLineEditPrivate* in QLineEdit's subclass?

2014-03-11 Thread Giuseppe D'Angelo
constructor? Anyhow: you can try static_castQLineEditPrivate *(QWidgetPrivate::get(this)); HTH, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ

Re: [Interest] How to access QLineEditPrivate* in QLineEdit's subclass?

2014-03-11 Thread Giuseppe D'Angelo
constructor? Anyhow: you can try static_castQLineEditPrivate *(QWidgetPrivate::get(this)); HTH, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ

Re: [Interest] dynamic library question

2014-03-18 Thread Giuseppe D'Angelo
been explictly marked as mergeable via madvise? Why would the dynamic linker use such flag on the libraries it maps into memory? (It would be pointless in the vast majority of the cases except in OP's scenario?) Cheers, -- Giuseppe D'Angelo ___ Interest

Re: [Interest] dynamic library question

2014-03-18 Thread Giuseppe D'Angelo
On 18 March 2014 11:28, Mandeep Sandhu mandeepsandhu@gmail.com wrote: Just to be clear, you guys are talking about KSM (kernel samepage merging) right? Uhm, yes, I was. I failed the acronym... Cheers, -- Giuseppe D'Angelo ___ Interest mailing

Re: [Interest] Crash inside QOpenGLDebugLogger with Qt 5.2 / VS2012

2014-04-13 Thread Giuseppe D'Angelo
combination of GPU / drivers are you using? Hope this helps, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts

Re: [Interest] QNAM timeout is way too long

2014-04-22 Thread Giuseppe D'Angelo
On 22 April 2014 03:12, Scott Aron Bloom scott.bl...@onshorecs.com wrote: Agreed.. but it would be even easier... if abort was a slot :) It is a slot in Qt 5. Besides, you can always connect to a custom slot which invokes abort()... -- Giuseppe D'Angelo

Re: [Interest] Size of libQt5Core in 5.3

2014-05-11 Thread Giuseppe D'Angelo
to QtCore's linker command line, and examine the map file using a script. Then proceed to trim. Hope this helped, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410

Re: [Interest] terrible font rendering with QtQuick

2014-05-29 Thread Giuseppe D'Angelo
ANGLE and llvmpipe as workarounds. -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent

Re: [Interest] [Development] Listen to database update

2014-06-02 Thread Giuseppe D'Angelo
/updates commands. HTH, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions

Re: [Interest] Convert QQuickItem into image

2014-06-05 Thread Giuseppe D'Angelo
On 5 June 2014 11:16, Gunnar Sletta gunnar.sle...@jolla.com wrote: It is new API so it goes to the next minor version of Qt, 5.4 in this case. Please add the \since... :-) -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http

[Interest] Qt DevDays 2014 - Call for Papers

2014-06-19 Thread Giuseppe D'Angelo
Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions smime.p7s Description: Firma crittografica S/MIME

Re: [Interest] QCommandLineParser, default arguments from env variable?

2014-06-24 Thread Giuseppe D'Angelo
problem is that you have to perform the split yourself because you have a single string -- the environment variable. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qt DevDays 2014 - Call for Papers

2014-07-24 Thread Giuseppe D'Angelo
Hello, Il 19/06/2014 12:23, Giuseppe D'Angelo ha scritto: http://www.qtdeveloperdays.com/call-papers-information The deadlines are July 24th for Europe and August 15th for US. There's an update: the Call for Papers' deadline for the Europe event has been extended to July 31st at midnight

Re: [Interest] OpenGL weirdness

2014-07-24 Thread Giuseppe D'Angelo
getting a Compatibility profile. Regards, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent

Re: [Interest] Generating .avi or .mpg from Qt? (from sequence of QImages or QPixmaps)

2014-08-05 Thread Giuseppe D'Angelo
On 5 August 2014 23:22, Phil Weinstein ph...@indra.com wrote: Short of that, are there any well supported third-party Qt packages for doing this? How about just feeding the sequence of images to an external encoder like ffmpeg/libav or mencoder? -- Giuseppe D'Angelo

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Giuseppe D'Angelo
simply too many people were relying on that behaviour (which was implemented, just not documented) to think to modify it at any time. HTH, -- Join us Oct 6-8 at BCC Berlin for Qt Developer Days 2014! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group

Re: [Interest] Dealing with clipboard under linux

2014-10-10 Thread Giuseppe D'Angelo
! Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions smime.p7s Description: Firma crittografica S/MIME

Re: [Interest] Who and why changed WIKI Gerrit-Introduction

2014-11-15 Thread Giuseppe D'Angelo
go there and disrupt those pages. -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions smime.p7s Description: Firma crittografica

Re: [Interest] reference counting

2014-11-16 Thread Giuseppe D'Angelo
? Most of the value classes are implicitly shared: http://qt-project.org/doc/qt-5/implicit-sharing.html -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent

Re: [Interest] QVector::resize / QList

2014-11-17 Thread Giuseppe D'Angelo
...) Contributions are welcome, anyhow. -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions smime.p7s Description: Firma crittografica S/MIME

Re: [Interest] Q_OS_ANDROID macro

2015-02-04 Thread Giuseppe D'Angelo
.cpp files), or the linker (which would possibly mean that moc picked up those member functions and it's referencing them, but their symbols are not present in any object file)... Thanks, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company

Re: [Interest] Q_OS_ANDROID macro

2015-02-04 Thread Giuseppe D'Angelo
Il 04/02/2015 11:18, Reinhardt Behm ha scritto: MOC does not understand and therefor does not respect macros and #ifdef. I'm sorry to be blunt, but this is simply false. moc has had a full C++ preprocessor since Qt 5.0. -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer

Re: [Interest] Q_OS_ANDROID macro

2015-02-04 Thread Giuseppe D'Angelo
... -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions smime.p7s Description: Firma crittografica S/MIME

Re: [Interest] Where should online documentation bugs be reported?

2015-01-21 Thread Giuseppe D'Angelo
it on the usual channels: https://bugreports.qt.io * Project Qt * Component Documentation Cheers, (*) and this kind of low hanging fruits^Wbugs are perfect to getting started at developing Qt! -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company

Re: [Interest] Fwd: [KDE/Mac] OSX/CI: Found umpteen uses of Q_WS_MAC in Qt5 itself

2015-01-21 Thread Giuseppe D'Angelo
basis if in reality it ought to be activated?? They're never defined, so junk, but they can't just be removed. One should check what they're actually wrapping -- if they were meant to be Q_OS_*, or perhaps exposing functionality that has been lost when porting to QPA, etc. -- Giuseppe D'Angelo

Re: [Interest] why does Qt prefer to return QList over QVector?

2015-01-27 Thread Giuseppe D'Angelo
(). (Fundamentally that shared part behind QList has no code dealing with shrinking.) I've got a WIP on gerrit, if only I get the time to work on it again... Cheers, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410

Re: [Interest] QBuffer::seek warnings in QtConcurrent

2015-01-27 Thread Giuseppe D'Angelo
) 821 return -1; Note in particular that stream reads an unsigned 32 bit int into offset, but then skipRawData silently converts to signed... (but it may be totally unrelated with the problem here, which perhaps results from bad EXIF parsing on Qt side) HTH, -- Giuseppe D'Angelo

Re: [Interest] How to prevent painter from ending() on render()

2015-01-28 Thread Giuseppe D'Angelo
QPDFWriter's ctor that takes a QIODevice? I would be really annoyed if closing the painter would close the device on my back. Annoyed to the point to call it a Qt bug. 2) Have you tried painting the widget on a QPicture, then replaying the QPicture on the PDF? HTH, -- Giuseppe D'Angelo

Re: [Interest] Is the OpenGL vs Angle distinction important for widget apps?

2015-03-22 Thread Giuseppe D'Angelo
does not work on Windows XP So for pure-widgets applications it might make more sense to use the Desktop OpenGL build of Qt. YMMV :) -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo

Re: [Interest] I can't access qt's git repository in gitorious any more

2015-03-07 Thread Giuseppe D'Angelo
(code.qt.io) or some other mirror. HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090 KDAB - Qt Experts - Platform-independent software solutions smime.p7s Description: Firma crittografica

Re: [Interest] QOpenGLWidget and text

2015-04-01 Thread Giuseppe D'Angelo
? ;) Cheers, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - The Qt Experts smime.p7s Description: Firma crittografica S/MIME ___ Interest mailing list Interest@qt

Re: [Interest] how to build the xcb-plugin with egl support?

2015-03-03 Thread Giuseppe D'Angelo
On 3 March 2015 at 00:53, Thiago Macieira thiago.macie...@intel.com wrote: GLX implies desktop GL And, Qt supports creating GLES contextes on GLX, if the right extensions are available. -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt

Re: [Interest] Issues with QPainter on Mac 10.10

2015-03-03 Thread Giuseppe D'Angelo
instead, loading it on a texture (QOpenGLTexture) and then drawing a quad. HTH, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Is there a command line call to qmake to test the bit width?

2015-03-04 Thread Giuseppe D'Angelo
) Is there a qmake or some way, that in the setup scripts to my build, I can confirm the version I am running against? In qmake see $$QT_ARCH, in your C++ file you can use QT_POINTER_SIZE. HTH, -- Giuseppe D'Angelo ___ Interest mailing list

Re: [Interest] Issues with QPainter on Mac 10.10

2015-03-04 Thread Giuseppe D'Angelo
); QPainter p(image); p.drawText(); /* etc.etc. */ p.end(); QOpenGLTexture *texture = new QOpenGLTexture(image); /* bind, use it */ -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Does removing 'private slots' from .h files have any advantages? Disadvantages?

2015-03-08 Thread Giuseppe D'Angelo
can use those functions. (Note that Qt has also another mechanism for that -- Q_PRIVATE_SLOT -- but that doesn't solve the problem, it simply allows to move a slot declaration/definition into the pimpl). HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd

Re: [Interest] qsort() Obsolete?

2015-04-17 Thread Giuseppe D'Angelo
/qtalgorithms.html#qt-and-the-stl-algorithms also contains some end-user information. HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - The Qt Experts smime.p7s Description: Firma crittografica S/MIME

Re: [Interest] QOpenGLWidget and text

2015-04-06 Thread Giuseppe D'Angelo
into QOpenGLWidget (as it's not even remotely its role), how about starting working on it in a standalone Qt addon? -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML bindings and redundant property changes

2015-04-01 Thread Giuseppe D'Angelo
-- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML bindings and redundant property changes

2015-04-01 Thread Giuseppe D'Angelo
, Giuseppe D'Angelo dange...@gmail.com wrote: On 1 April 2015 at 19:11, Preet prismatic.proj...@gmail.com wrote: I would have expected two invocations of onPerimeterChanged, but it gets called only once. The QML engine avoids the redundant change and I'm curious as to how this is done. http

Re: [Interest] Move-to-bin API?

2015-04-10 Thread Giuseppe D'Angelo
On 10 April 2015 at 22:33, Felix morack felixo...@gmail.com wrote: So any plans? Any objections? No plans and no objections, I'd say... -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman

Re: [Interest] Qt nntp server?

2015-06-08 Thread Giuseppe D'Angelo
and nntp.qt.nokia.com ? Is there still a Qt-specific nntp server that provides access to the various Qt mailing lists? Both of those domains are dead :( Or can the interest ML be subscribed to gmane? It's there: nntp://news.gmane.org/gmane.comp.lib.qt.general HTH, -- Giuseppe D'Angelo

Re: [Interest] OpenGL depreceated items

2015-06-10 Thread Giuseppe D'Angelo
of these so my application can work? What types are deprecated? GLU types or QGLWidget? -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML Inspector?

2015-06-25 Thread Giuseppe D'Angelo
the element hierarchy as a tree, it would have been solved in seconds. You're looking for GammaRay: https://github.com/KDAB/GammaRay/ See for instance this blog post: http://www.kdab.com/analysing-qtquick-apps-gammaray-button-gone/ Hope this helps, -- Giuseppe D'Angelo | giuseppe.dang

Re: [Interest] Qt5 with qml 2.x on Windows XP... problems?

2015-06-10 Thread Giuseppe D'Angelo
of problems when ANGLE gets used on XP (from rendering errors to plain random crashes). I *think* upstream doesn't even bother of supporting XP any longer, but maybe someone else knows more... Cheers, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group

Re: [Interest] Qt5 with qml 2.x on Windows XP... problems?

2015-06-10 Thread Giuseppe D'Angelo
ones YMMV, Intel's ones just don't work on XP -- period. Note also that since you're on XP you can't use ANGLE as a Direct3D fallback. Hope this helps, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB

Re: [Interest] How to share a native OpenGL context with Qt?

2015-06-17 Thread Giuseppe D'Angelo
for that. Hope this helps, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - The Qt Experts smime.p7s Description: Firma crittografica S/MIME ___ Interest mailing

Re: [Interest] Making use of qt_addObject and qt_removeObject in Windows (Qt5) ?

2015-06-15 Thread Giuseppe D'Angelo
to?) do it: https://github.com/KDAB/GammaRay/tree/master/hooking For good news, starting from Qt 5.4 it's extremely easier to install your own hooks: https://codereview.qt-project.org/#/c/83272/ Hope this helps, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd

Re: [Interest] Qt5 and libressl

2015-11-12 Thread Giuseppe D'Angelo
On Thu, Nov 12, 2015 at 9:14 PM, Diego Iastrubni <diegoi...@gmail.com> wrote: > So... the official statement from Qt is that elliptic curves is a ... "safe" > encryption to be used in the wild...? Where did you get this quote from?

Re: [Interest] Remove unnecessary components (dll reduction)

2015-10-19 Thread Giuseppe D'Angelo
On Mon, Oct 19, 2015 at 2:21 PM, Rafael Machado <rafaelrodrigues.mach...@gmail.com> wrote: > > Any idea on how to do this work as I expect ? As the help says, it's -no-feature-nameofthefeature, so -no-feature-columnview. HTH, -- Giuse

Re: [Interest] Remove unnecessary components (dll reduction)

2015-10-19 Thread Giuseppe D'Angelo
On Mon, Oct 19, 2015 at 3:31 PM, Rafael Machado <rafaelrodrigues.mach...@gmail.com> wrote: > Does anyone know how to do it ? -no-feature-columnview should be the right one... are you using Windows? -- Giuseppe D'Angelo ___ Interest mai

Re: [Interest] Remove unnecessary components (dll reduction)

2015-10-19 Thread Giuseppe D'Angelo
ot recognize the -no-feature switch. Either pass -D QT_NO_FOOBAR manually or use qconfig as described here: http://doc.qt.io/qt-5/configure-options.html HTH, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mail

Re: [Interest] Well, I'm kind of irritated by QtCreator...

2015-10-20 Thread Giuseppe D'Angelo
of escape for paths). Creator just runs qmake + make, which then explodes; it doesn't look to me Creator is to blame. HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - The Qt Experts smime.p7s Descript

Re: [Interest] QByteArray to quint64

2015-09-16 Thread Giuseppe D'Angelo
d strtoull(). Is there a simple way of doing this in Qt? Are you talking about converting the decimal representation using the C locale? toULongLong(). HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - The

Re: [Interest] Recompiling qt

2015-10-01 Thread Giuseppe D'Angelo
ding, otherwise it seems that new > options like “debug” not taking effect. Is there an easy way to tell qt not > to take the deployed headers? Can you avoid installing customly compiled Qt in default system paths? -- Giuseppe D'Angelo ___ Interest mai

Re: [Interest] QWidget::show()

2015-09-18 Thread Giuseppe D'Angelo
Il 18/09/2015 22:23, Igor Mironchik ha scritto: If in some method create QWidget and invoke show() on it when this widget will be shown? Immediately or only after finish of method from within show() was invoked? Neither: some time after you return to the event loop. Cheers, -- Giuseppe

Re: [Interest] Good way to track down "QCoreApplication::postEvent: Unexpected null receiver"

2015-12-06 Thread Giuseppe D'Angelo
hing that would help > me pinpoint the culprit? Run with QT_FATAL_WARNINGS=1? Add a breakpoint on the qWarning statement in question inside Qt? -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Giuseppe D'Angelo
u have a property of type QString (string in QML) and you're assigning a value of type QUrl (url) to it? Cheers, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Giuseppe D'Angelo
again at any time. HTH, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - The Qt Experts smime.p7s Description: Firma crittografica S/MIME ___ Interest mailin

Re: [Interest] QLocalSocket bug?

2016-01-06 Thread Giuseppe D'Angelo
istake in Qt. There's no useful way of managing sockets through the base class API. "Static polymorphism" would've fitted just as well. My 2 c, -- Giuseppe D'Angelo ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

  1   2   3   4   5   >