Re: [Interest] Test of the list

2012-07-27 Thread Syam Krishnan
On 07/27/2012 02:43 PM, Fabio Giovagnini wrote: > Sorry, but I don'0t receive the message I post. > If you read this mail please let me know answering to mai mail address Message received. Syam ___ Interest mailing list Interest@qt-project.org http://li

Re: [Interest] Getting the timezone from Qt?

2012-07-27 Thread Nikos Chantziaras
On 27/07/12 20:15, Konrad Rosenbaum wrote: > On Friday 27 July 2012 14:54:04 Nikos Chantziaras wrote: >> On 27/07/12 13:42, Konrad Rosenbaum wrote: >>> On Friday 27 July 2012 09:33:27 Nikos Chantziaras wrote: Is there a way to get the current timezone in standard IANA format from Qt? (Me

Re: [Interest] qws and dialogs

2012-07-27 Thread Atlant Schmidt
1. Make the QDialog as big as the screen. 2. Make the backmost widget in the QDIalog as big as the screen, fill it with black, and set it (say) 50% transparent. 3. Put the real dialog on top of that. When the dialog is on display, the stuff in other windows should show through,

Re: [Interest] Getting the timezone from Qt?

2012-07-27 Thread Konrad Rosenbaum
On Friday 27 July 2012 14:54:04 Nikos Chantziaras wrote: > On 27/07/12 13:42, Konrad Rosenbaum wrote: > > On Friday 27 July 2012 09:33:27 Nikos Chantziaras wrote: > >> Is there a way to get the current timezone in standard IANA format from > >> Qt? (Meaning a string like "America/New_York", "Europ

Re: [Interest] Getting the timezone from Qt?

2012-07-27 Thread Nikos Chantziaras
On 27/07/12 13:42, Konrad Rosenbaum wrote: > On Friday 27 July 2012 09:33:27 Nikos Chantziaras wrote: >> Is there a way to get the current timezone in standard IANA format from >> Qt? (Meaning a string like "America/New_York", "Europe/Paris", etc.) > > If your software is under a GPL-compatible li

Re: [Interest] qws and dialogs

2012-07-27 Thread Konstantin Tokarev
27.07.2012, 16:34, "pritam.ghang...@gmail.com" : > I was working towards dialogs because focus handling becomes much easier. The > possibility of losing focus much less. I work with a remote controlled device. Focus management is not that difficult, you just need to organize it properly. -- Re

Re: [Interest] qws and dialogs

2012-07-27 Thread pritam.ghang...@gmail.com
I was working towards dialogs because focus handling becomes much easier. The possibility of losing focus much less. I work with a remote controlled device. On Fri, Jul 27, 2012 at 3:53 PM, Konstantin Tokarev wrote: > > 27.07.2012, 13:23, "pritam.ghang...@gmail.com" >: > > HiHow did you get tran

Re: [Interest] Where are the USER properties of Qt-provided QObjects documented?

2012-07-27 Thread Richard Moore
On 26 July 2012 18:06, Stephen Kelly wrote: > On Thursday, June 28, 2012 00:40:18 K. Frank wrote: >> Where in the documentation (not the source code) can I find out which >> of the properties of a standard Qt QObject class is the designated >> USER property? > > I think this is a bug. Please file

Re: [Interest] Getting the timezone from Qt?

2012-07-27 Thread Konrad Rosenbaum
On Friday 27 July 2012 09:33:27 Nikos Chantziaras wrote: > Is there a way to get the current timezone in standard IANA format from > Qt? (Meaning a string like "America/New_York", "Europe/Paris", etc.) If your software is under a GPL-compatible license, feel free to use this: http://silmor.de/qts

Re: [Interest] qws and dialogs

2012-07-27 Thread Konstantin Tokarev
27.07.2012, 13:23, "pritam.ghang...@gmail.com" : > HiHow did you get transparency to work. On my device as soon as I set > anything having alpha as background (color or image), that area becomes > black. It seems its not blending two top level windows. So effectively I get > dialogs over black

Re: [Interest] qws and dialogs

2012-07-27 Thread pritam.ghang...@gmail.com
Hi How did you get transparency to work. On my device as soon as I set anything having alpha as background (color or image), that area becomes black. It seems its not blending two top level windows. So effectively I get dialogs over black full screen background. Blending works fine for non window

[Interest] Test of the list

2012-07-27 Thread Fabio Giovagnini
Sorry, but I don'0t receive the message I post. If you read this mail please let me know answering to mai mail address Thanks Fabio Giovagnini ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QChar can't handle 1:N case conversion?

2012-07-27 Thread Thiago Macieira
On sexta-feira, 27 de julho de 2012 05.53.24, Nikos Chantziaras wrote: > Normally, Unicode defines conversions for things like "ß" (U+00DF, > German sharp S) to "SS". How can I do that with QChar? The > toCaseFolded() and toLower() member functions return a single QChar, > while mappings like "ß"

Re: [Interest] Getting the timezone from Qt?

2012-07-27 Thread John Layt
On 27 July 2012 08:33, Nikos Chantziaras wrote: > Is there a way to get the current timezone in standard IANA format from > Qt? (Meaning a string like "America/New_York", "Europe/Paris", etc.) No, that's a feature not coming until Qt 5.1 :-\ Worse, you can't even get from Qt something to say wh

[Interest] Getting the timezone from Qt?

2012-07-27 Thread Nikos Chantziaras
Is there a way to get the current timezone in standard IANA format from Qt? (Meaning a string like "America/New_York", "Europe/Paris", etc.) ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QChar can't handle 1:N case conversion?

2012-07-27 Thread Nikos Chantziaras
Thanks for the pointer. I'll just use QString directly then. Is much simpler that setting up a QMap. On 27/07/12 08:44, Constantin Makshin wrote: > You can use QMap. I don't think these conversions are > [very] common in various languages, so there shouldn't be any problems > with manual creati

[Interest] Etas INCA interfacing with Qt application

2012-07-27 Thread Fabio Giovagnini
Hi all, I have developed a tool for engine test room automation using Qt and Qt apps libraries. I'd like to collect in my logger also the ECU data. ECU is the Engine Control Unit. The ECU is managed using a tool called INCA and the developer company is Etas. Does any of you know how to interface a

Re: [Interest] QChar can't handle 1:N case conversion?

2012-07-27 Thread Bo Thorsen
Den 27-07-2012 07:44, Constantin Makshin skrev: > You can use QMap. I don't think these conversions are > [very] common in various languages, so there shouldn't be any problems > with manual creation of this conversion map. Sounds like a good candidate for a patch to Qt, if this is done. Bo. > O