Re: [Interest] QGraphicsObject::boundingRect() called with different instance

2019-10-30 Thread alexander golks
Am Wed, 30 Oct 2019 18:55:04 -0600 schrieb Bob Hood : > (Sorry for the slow reply.  F#@$ing Comcast decided yesterday that all my > mailing list traffic was Spam.) > > > On 10/30/2019 5:17 AM, Giuseppe D'Angelo via Interest wrote: > > On 30/10/2019 01:47, Bob Hood wrote: > >> When I enter the

Re: [Interest] QGraphicsObject::boundingRect() called with different instance

2019-10-30 Thread Bob Hood
(Sorry for the slow reply.  F#@$ing Comcast decided yesterday that all my mailing list traffic was Spam.) On 10/30/2019 5:17 AM, Giuseppe D'Angelo via Interest wrote: On 30/10/2019 01:47, Bob Hood wrote: When I enter the constructor, I have a specific ‘this’ pointer that has the provided ‘siz

Re: [Interest] New error building Qt 5.13 on CentOS 6

2019-10-30 Thread Simon Matthews
On 10/30/19 4:38 PM, Thiago Macieira wrote: > On Wednesday, 30 October 2019 16:32:08 PDT Simon Matthews wrote: >> Project ERROR: Unknown module(s) in QT: xkbcommon_support-private > Make sure you have xkbcommon >= 0.5.0 development files installed when you > configure qtbase. > This is what I have:

Re: [Interest] New error building Qt 5.13 on CentOS 6

2019-10-30 Thread Thiago Macieira
On Wednesday, 30 October 2019 16:32:08 PDT Simon Matthews wrote: > Project ERROR: Unknown module(s) in QT: xkbcommon_support-private Make sure you have xkbcommon >= 0.5.0 development files installed when you configure qtbase. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Archit

[Interest] New error building Qt 5.13 on CentOS 6

2019-10-30 Thread Simon Matthews
I have been working on issues relating to qtwebengine, but when I started from scratch again, I got this new error message. Does anyone have any idea what's going on: ar cqs ../../../../../lib/libxcb-static.a .obj/xfixes.o .obj/randr.o .obj/shm.o .obj/sync.o .obj/render.o .obj/shape.o .obj/xkb.o .

[Interest] Question about custom delegates

2019-10-30 Thread Murphy, Sean
I've got a QTableView that I'm putting a custom widget/editor in one column to allow editing of data, that I've got a couple of questions about. First, the custom widget is simply 3 QRadioButtons in a horizontal layout: threeRadioButtonWidget -- QHBoxLayout QRadioButton QRadioButton --

Re: [Interest] QUdpSocket, QNetworkDatagram and QNetworkInterface

2019-10-30 Thread Jason H
Relevant RFCs: https://tools.ietf.org/html/rfc2663 (1999 most popular) https://tools.ietf.org/html/rfc1631 (1994) https://tools.ietf.org/html/rfc3022 (2001) > Sent: Wednesday, October 30, 2019 at 9:23 AM > From: "Jason H" > To: "Nuno Santos" > Cc: "Thiago Macieira" , interest@qt-project.org > S

Re: [Interest] QUdpSocket, QNetworkDatagram and QNetworkInterface

2019-10-30 Thread Jason H
I think you're running into a NAT router (network address translation) You can configure your router to not do this, but that requires you to have an addressable network. NAT is generally used with cable modems because you only get the IP pf the modem. Then the kernel on the router takes care of

Re: [Interest] QGraphicsObject::boundingRect() called with different instance

2019-10-30 Thread Giuseppe D'Angelo via Interest
On 30/10/2019 01:47, Bob Hood wrote: When I enter the constructor, I have a specific ‘this’ pointer that has the provided ‘size’ argument placed into its ‘entity_size’ member. However, when Qt subsequently invokes the boundingRect() override function, it’s an entirely different ‘this’ instance

Re: [Interest] QUdpSocket, QNetworkDatagram and QNetworkInterface

2019-10-30 Thread Giuseppe D'Angelo via Interest
Il 30/10/19 10:42, Nuno Santos ha scritto: My local network has the main modem, which is connected to the internet. Then, there is an older wifi router from linksys only serving as a cable lan switch. Do you have a clue why is this happening? This is completely ruining the previsibility I was

Re: [Interest] QUdpSocket, QNetworkDatagram and QNetworkInterface

2019-10-30 Thread Nuno Santos
Thiago, >> You cannot infer which interface a packet was sent on from the IP address it >> included in the sender. It's entirely possible to use one interface's IP >> address while sending on another. I was trying to take advantage of this but I’m having an unpleasant surprise. Even after sett

Re: [Interest] QUdpSocket, QNetworkDatagram and QNetworkInterface

2019-10-30 Thread Nuno Santos
Thiago, Thanks so much for this super detailed and informative reply. All my questions are clarified now. Thank you! Best regards, Nuno > On 29 Oct 2019, at 22:06, Thiago Macieira wrote: > > On Tuesday, 29 October 2019 12:12:37 PDT Nuno Santos wrote: >> Hi, >> >> I’m trying to understand h