[Interest] GTK Style

2017-01-28 Thread Dan Allen
Hi, With Qt5.8.0, the GTK platform theme has returned. However, the GTK style has not. Does anyone know if the GTK style will reappear in a future release or has this gone for good? Thanks. ___ Interest mailing list Interest@qt-project.org http:

Re: [Interest] GTK Style

2017-01-28 Thread Dan Allen
Thanks for the information Thiago. I downloaded that and compiled it etc. However, I can't get it to work using Qt5.8. Have you used qtstyleplugins with Qt5.8? On 28/01/17 18:28, Thiago Macieira wrote: On sábado, 28 de janeiro de 2017 15:57:34 PST Dan Allen wrote: Hi, With Qt5.8.0

Re: [Interest] GTK Style

2017-01-28 Thread Dan Allen
Yes, I downloaded the master. I checked and it includes those changes. I don't have an issue building it with Qt5.8, it compiled fine. My application just doesn't seem to see the plugins. On 28/01/17 20:47, Thiago Macieira wrote: On sábado, 28 de janeiro de 2017 19:44:30 PST Dan A

Re: [Interest] GTK Style

2017-01-28 Thread Dan Allen
Thanks so much for your help Thiago. It does work after all (when the libraries are in the right place!). On 28/01/17 21:27, Thiago Macieira wrote: On sábado, 28 de janeiro de 2017 21:02:18 PST Dan Allen wrote: I don't have an issue building it with Qt5.8, it compiled fine. My applic

[Interest] QPrintPreviewWidget

2017-04-01 Thread Dan Allen
shown unless I force the signal to either Qt::DirectConnection (i.e. use the GUI thread) or Qt ::BlockingQueuedConnection (i.e. block the GUI thread). Thanks, Dan Allen. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/ma

Re: [Interest] QPrintPreviewWidget

2017-04-01 Thread Dan Allen
x27;s ready for example. This would prevent the GUI from seeming unresponsive to the user. I wasn't sure if there was a current method to do something like this. Thanks, Dan Allen. On 01/04/17 13:43, william.croc...@analog.com wrote: On 04/01/2017 03:41 AM, Dan Allen wrote: Hi, Could an

Re: [Interest] QPrintPreviewWidget

2017-04-04 Thread Dan Allen
an the current GUI thread." Thanks, Dan Allen. On 03/04/17 14:49, william.croc...@analog.com wrote: On 04/01/2017 09:48 AM, Dan Allen wrote: Hi Bill, I agree, however when the print is quite complex it makes the GUI very unresponsive. Painting into an off screen image is not GUI related.

Re: [Interest] QPrintPreviewWidget

2017-04-04 Thread Dan Allen
Hi Roland, Not 100% sure what you mean in the first part. Are you also saying I shouldn't use a another thread? Thanks, Dan Allen. On 04/04/17 12:24, Roland Hughes wrote: You know, "painting into an off screen image is not GUI related" __should__ be true. Haven't

Re: [Interest] QPrintPreviewWidget

2017-04-04 Thread Dan Allen
Thanks for your help Bill. On 04/04/17 17:56, william.croc...@analog.com wrote: On 04/04/2017 11:52 AM, Dan Allen wrote: Hi Bill, What you've listed below is pretty much how my printing mechanism works. This works perfectly and I'm happy with it. I'm still a little confuse

Re: [Interest] QPrintPreviewWidget

2017-04-04 Thread Dan Allen
No problem. Thanks Roland. On 04/04/17 18:32, Roland Hughes wrote: Not ignoring your question Bill, but this response answered it better. There is always __something__ which gets in the way. Ultimately you end up needing an object which can only exist in the primary thread due to the tight c

[Interest] Another query on GTK platform theme/style

2017-04-16 Thread Dan Allen
Hi, I asked a question about the missing GTK theme a few months ago. I was informed that it was no longer provided within Qt and was available using the qtstyleplugins package. However, qtstyleplugins only provides a style called "gtk2" and this is not compatible (I believe) with the native

Re: [Interest] Another query on GTK platform theme/style

2017-04-16 Thread Dan Allen
ado, 28 de janeiro de 2017 15:57:34 PST Dan Allen wrote: /Hi, />//>/With Qt5.8.0, the GTK platform theme has returned. However, the GTK />/style has not. />//>/Does anyone know if the GTK style will reappear in a future release or />/has this gone for good? / It's still there,

Re: [Interest] Another query on GTK platform theme/style

2017-04-16 Thread Dan Allen
Thiago, Could you advise how I use the style? On 17/04/17 00:06, Thiago Macieira wrote: Em domingo, 16 de abril de 2017, às 11:59:11 PDT, Dan Allen escreveu: Not really sure how that helps Thiago? If you know it's incorrect, would it not be more beneficial to provide the correct inform

Re: [Interest] Another query on GTK platform theme/style

2017-04-17 Thread Dan Allen
: Em domingo, 16 de abril de 2017, às 23:42:38 PDT, Dan Allen escreveu: Thiago, Could you advise how I use the style? The platform theme should be automatically enabled if you're using a GTK-based desktop environment. Please run qtdiag and see what it says about "Theme" (which

Re: [Interest] Another query on GTK platform theme/style

2017-04-17 Thread Dan Allen
artins wrote: On Mon, Apr 17, 2017 at 5:43 PM, Dan Allen wrote: I believe the platform theme is being enabled. However, it doesn't look like the style is. There's no gtk3 style. Regards, Sérgio Martins ___ Interest mailing list Intere

Re: [Interest] Another query on GTK platform theme/style

2017-04-17 Thread Dan Allen
thing that will be rectified in a future Qt release. Apologies for asking so many questions. I just want to be 100% clear on this. On 17/04/17 18:49, Thiago Macieira wrote: Em segunda-feira, 17 de abril de 2017, às 10:19:25 PDT, Dan Allen escreveu: I'm going around in circles then Sergio.

Re: [Interest] Another query on GTK platform theme/style

2017-04-18 Thread Dan Allen
t Fedora. I don't know much about Fedora at present but I'll see what I can find out. Thanks for helping. Although it wasn't what I was hoping to hear, at least I know the situation now. On 18/04/17 05:46, Thiago Macieira wrote: On segunda-feira, 17 de abril de 2017 11:

Re: [Interest] Another query on GTK platform theme/style

2017-04-18 Thread Dan Allen
Thanks Thiago. That looks like it solves the problem. On 18/04/17 18:03, Thiago Macieira wrote: Em terça-feira, 18 de abril de 2017, às 08:36:34 PDT, Dan Allen escreveu: I did not mean temporary. It's permanent as long as the developers of this platform theme plugin do not decide to s

[Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
Hi, I'm currently working on a save dialog for my application (currently testing in Ubuntu).  The dialog is in accept mode QFileDialog::AcceptSave and a default suffix of "txt" is set. I've noticed something that appears to be strange when the file provided exists as follows (assuming a file

Re: [Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
Hi Guiseppe, I am using the native dialog.  I've tested again after setting QFileDialog::DontUseNativeDialog and this does not appear to have the problem. Thanks, Dan. On 21/10/17 09:27, Giuseppe D'Angelo wrote: Hi, Il 21/10/2017 10:07, Dan Allen ha scritto: Hi, I'm cu

Re: [Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
think it would be acceptable? Thanks, Dan. On 21/10/17 17:25, Giuseppe D'Angelo wrote: Il 21/10/2017 11:33, Dan Allen ha scritto: Hi Guiseppe, I am using the native dialog.  I've tested again after setting QFileDialog::DontUseNativeDialog and this does not appear to have the

Re: [Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
tion to overwrite). Thanks, Dan. On 21/10/17 18:16, Giuseppe D'Angelo wrote: Il 21/10/2017 18:45, Dan Allen ha scritto: I don't know much about GTK directly.  I had a quick look at the GTK file chooser documentation and I couldn't see anything that suggests GTK supports a def

Re: [Interest] QFileDialog Query

2017-10-22 Thread Dan Allen
Hi Guiseppe, If that line was left out the dialog would return just "text" (i.e. without the suffix). Thanks, Dan. On 22/10/17 19:25, Giuseppe D'Angelo wrote: Hi, Il 21/10/2017 20:39, Dan Allen ha scritto: fileDialog.setDefaultSuffix("txt"); Just wonder

Re: [Interest] QFileDialog Query

2017-10-23 Thread Dan Allen
e D'Angelo wrote: Il 22/10/2017 20:46, Dan Allen ha scritto: Hi Guiseppe, If that line was left out the dialog would return just "text" (i.e. without the suffix). Right, so we're back in Qt territory, with this option which might be misleading. Please go ahead and

Re: [Interest] Building Qt apps on Ubuntu 17.10: GL/gl.h missing

2017-10-23 Thread Dan Allen
Hi Carel, I always install mesa-common-dev for gl.h and what Andre suggests for glu. Thanks, Dan. On 23/10/17 12:49, André Hartmann wrote: Hi Carel, I usually encounter the problems when linking, and in this case  sudo apt install libglu1-mesa-dev helped me. Not sure if that applies to you

[Interest] QStyleOptionProgressBar

2018-04-02 Thread Dan Allen
Hi, I'm currently writing a sub class of QStyledItemDelegate to draw a progress bar. The progress bar is drawn using QApplication::style()->drawControl(QStyle::CE_ProgressBar, option, painter) and this works fine on Windows and Ubuntu. However, on Mac the progress bar has a "disabled" look.

[Interest] Bug Reports

2018-10-22 Thread Dan Allen
Hi All, I'm frustrated by what has happened on the last bug report I posted yesterday. Why would this get closed in this way so quickly? Could there not have been a comment just saying "Did you make an error with the test case?" before closing it

Re: [Interest] Bug Reports

2018-10-23 Thread Dan Allen
Thanks Mitch. Appreciate the feedback. Regards, Dan. On 23/10/2018 10:42, Mitch Curtis wrote: -Original Message- From: Interest On Behalf Of Dan Allen Sent: Monday, 22 October 2018 9:37 PM To: Qt Project Subject: [Interest] Bug Reports Hi All, I'm frustrated by what has hap

Re: [Interest] List traffic disappearing?

2021-09-13 Thread Dan Allen
Roland, Not trying to side with anyone here, but this just got me wondering and I'd like to know the answer. From what you have said below and in previous posts, I assume Qt has been used in several medical devices by several different medical companies. My question, did Qt ever claim it was