Re: [Interest] Qt basics - QObject::connect: signal not found

2017-11-06 Thread Thiago Macieira
On Monday, 6 November 2017 02:10:06 PST Nuno Santos wrote: > What am I missing? Most likely, the Q_OBJECT macro ad signals: declaration in A. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center __

Re: [Interest] Qt basics - QObject::connect: signal not found

2017-11-06 Thread Nuno Santos
Konstantin, It is supposed to be the same thing. I don’t know what happened but I have moved the signals declaration below in the header and now is working. It’s working now! I hate when I don’t know exactly what has made the difference.. Thanks anyway! Regards, Nuno > On 6 Nov 2017, at

Re: [Interest] Qt basics - QObject::connect: signal not found

2017-11-06 Thread Konstantin Shegunov
On Mon, Nov 6, 2017 at 12:21 PM, Nuno Santos wrote: > > This is the function where the connect is called (in a Cocoa file) > > [Snippet ...] > > And the error is: > > QObject::connect: signal not found in DRCController > I'm sorry I was left with the impression we are talking about C++, I have no

Re: [Interest] HTML Access key not working with webkit and webengine in MAC OS

2017-11-06 Thread neel patel
Just for reference, issue reported here. https://github.com/annulen/webkit/issues/594 Thanks, Neel Patel On Mon, Nov 6, 2017 at 3:39 PM, neel patel wrote: > Hi, > > I was just checking with HTML access key which was not working with MAC OS > Qt 5.9 WebEngine. I have also checked with Qt 5.5 wi

[Interest] Qt->Qml Drag and Drop not working

2017-11-06 Thread Jack O'Neill
Hey, I'd like to request help with the following problem: I have a custom QAbstractItemModel derived model: QStringList NodesTreeModel::mimeTypes() const { return {"application/nodeitem"}; } QMimeData *NodesTreeModel::mimeData(const QModelIndexList &indexes) const { QMimeData *mimeData

[Interest] Issues with the QtIFW

2017-11-06 Thread Jon
Hey all, I was forwarded here from the Qt forum about an IFW issue. https://forum.qt.io/topic/84650/online-installer-qtifw-problems/2 In short I'm trying to make an online installer and am pointing my program at htttp://www.my.domain/clientRepository which contains Updates.xml domain.my.www/ ├──

Re: [Interest] WebView will someone shed some light please

2017-11-06 Thread Marek Floriańczyk
Dnia czwartek, 19 października 2017 09:32:58 CEST Hamish Moffatt pisze: > On 19/10/17 02:14, Marek.Floriańczyk wrote: > > the problem is the same: Can't access camera and microphone. > > Please explain me, how open source webRTC should be different in that case > > ? > > > > There is open source w

Re: [Interest] Qt basics - QObject::connect: signal not found

2017-11-06 Thread Nuno Santos
Konstantin, There isn’t much more, really! DRCController is B IController is A This is the function where the connect is called (in a Cocoa file) - (void)openWithAu:(AudioUnit)inAU andController:(IController*)controller { _controller = controller; _controller->connect(_controller,

Re: [Interest] Qt basics - QObject::connect: signal not found

2017-11-06 Thread Konstantin Shegunov
On Mon, Nov 6, 2017 at 12:10 PM, Nuno Santos wrote: > Hi, > Hi! > I have a class B that extends A. > I’m passing a pointer of B casted to A to another C, and inside C I call: > You don't need to cast `B *` to `A *`, B is already A and is casted implicitly (and safely) by the compiler. I’m ge

[Interest] Qt basics - QObject::connect: signal not found

2017-11-06 Thread Nuno Santos
Hi, I have a class B that extends A. I’m passing a pointer of B casted to A to another C, and inside C I call: connect(BPointerCastedToA, &A::signal, [=]() { // do something }); I’m getting "signal not found in B” error I have similar situations in which this scenario works (B extends A and I

[Interest] HTML Access key not working with webkit and webengine in MAC OS

2017-11-06 Thread neel patel
Hi, I was just checking with HTML access key which was not working with MAC OS Qt 5.9 WebEngine. I have also checked with Qt 5.5 with webkit in MAC and it is not working. Where HTML access key is working fine with Linux & Windows OS. Can some-one guide me why HTML access key is not working with

[Interest] QtMessageHandler writing to dialog or to Windows Event Log?

2017-11-06 Thread Joerg Desch
Is there a QtMessageHandler open source implementation available, implementing the "Windows Event Log" mechanism? Or is there a Qt Widget which displays a logging window with binding to QtMessageHandler? I want to have a simple to use (for users) "real time" logging for Windows builds without

Re: [Interest] Dealing with large data sets with QtCharts

2017-11-06 Thread Benjamin TERRIER
2017-11-05 14:37 GMT+01:00 iman ahmadvand : > Hi everyone. > > I was wonder if it's possible to manage large data sets with qchart ? What do you mean by "large data sets" ? How many points ? > The consuming operation is a loop for adding points to QLineSeries + adding > each series to QChart. > >