Re: [Interest] [Qt-interest] (no subject)

2011-11-21 Thread Graeme Gill
Jason H wrote: > Zip is patent encumbered. What makes you think that ? The file format is in the public domain. A variety of compression algorithms can be used, the most popular (Deflate) is "widely thought to be free of any subsisting patents". Certainly the LZW patents have expired, and since .

Re: [Interest] [Qt-interest] (no subject)

2011-11-21 Thread Jason H
Zip is patent encumbered. There is a class with the compression algorithm made available as a QIODevice  in a Qt Solution. But the zip table is what is missing. If you only need to support your own zips, then a simple serialization of QMap would suffice. You'd probably NOT want to use a QMap th

Re: [Interest] Qt Project page in Google+

2011-11-21 Thread André Pönitz
On Mon, Nov 21, 2011 at 07:49:21AM -0800, Quim Gil wrote: > Hi, we have a Qt Project page in Google+ > https://plus.google.com/104580575722059274792/posts > > Thanks to Thiago, he was a few minutes faster than me. :) > > Please add it to your circle and help spreading and contributing or > for

Re: [Interest] Qt Project page in Google+

2011-11-21 Thread Quim Gil
On 11/21/2011 08:58 AM, ext Giuseppe D'Angelo wrote: > http://planetqt.org/ ? Oops, good point. I was not aware of this planet. Thiago, fwiw I'm scanning https://plus.google.com/s/Qt/posts almost every day. Is it ok to share interesting posts with the Qt Project page as a way to notify you of p

Re: [Interest] Qt Project page in Google+

2011-11-21 Thread Thiago Macieira
On Monday, 21 de November de 2011 07.49.21, Quim Gil wrote: > Hi, we have a Qt Project page in Google+ > https://plus.google.com/104580575722059274792/posts > > Thanks to Thiago, he was a few minutes faster than me. :) > > Please add it to your circle and help spreading and contributing or > for

Re: [Interest] Using QSslSocket as QTcpSocket

2011-11-21 Thread Jason H
Correction: There is no overhead if you are NOT encrypting. From: Jason H To: Chaser ; "interest@qt-project.org" Sent: Monday, November 21, 2011 12:27 PM Subject: Re: [Interest] Using QSslSocket as QTcpSocket Sure. SSL sockets are tcp Sockets, save for the

Re: [Interest] Using QSslSocket as QTcpSocket

2011-11-21 Thread Jason H
Sure. SSL sockets are tcp Sockets, save for the negotiation. If you don't want encryption, just don't call startServerEncription or the client version. However, I would have to ask, why not just abstract it to be QTcpSocket*? There is no overhead if you are encrypting. In all my code, the only

[Interest] Using QSslSocket as QTcpSocket

2011-11-21 Thread Chaser
Hi all! Can a QSslSocket to work as QTcpSocket at unencrypted connenctions? I don't want inherit from QTcpSocket for unencrypted connenctions and from QSslSocket for encrypted connenctions, and have two classes with duplicated code, so is it possible to use QSslSocket for both cases? And what about

Re: [Interest] Qt Project page in Google+

2011-11-21 Thread Giuseppe D'Angelo
On 21 November 2011 16:56, Jones, Torrin A (US SSA) wrote: > How about a planet?  http://www.planetplanet.org/ > > Aggregate everything into one place that everybody can follow. http://planetqt.org/ ? -- Giuseppe D'Angelo ___ Interest mailing list Int

Re: [Interest] Qt Project page in Google+

2011-11-21 Thread Jones, Torrin A (US SSA)
How about a planet? http://www.planetplanet.org/ Aggregate everything into one place that everybody can follow. -Original Message- From: interest-bounces+torrin.jones=baesystems@qt-project.org [mailto:interest-bounces+torrin.jones=baesystems@qt-project.org] On Behalf Of Quim G

[Interest] Qt Project page in Google+

2011-11-21 Thread Quim Gil
Hi, we have a Qt Project page in Google+ https://plus.google.com/104580575722059274792/posts Thanks to Thiago, he was a few minutes faster than me. :) Please add it to your circle and help spreading and contributing or forwarding news news. By the way, as far as I know, Google+ only allows on

Re: [Interest] (no subject)

2011-11-21 Thread Atlant Schmidt
Konstantin: > (Disadvantages for "internal" storage...) > 4) It requires some CPU time to decode blobs. Yes -- thank you for that addition! Also, in further thinking, I thought of another disadvantage for "external" storage. Depending on how the links to the external data are represented

Re: [Interest] (no subject)

2011-11-21 Thread Gopalakrishna Bhat
> > o Externally – In this situation, you keep the non-textual >files in whatever native format they arrived in and just >embed a link to them within your textual document. >The advantages and disadvantages are the reverse of >the situation above. Advantages: 1)

Re: [Interest] (no subject)

2011-11-21 Thread Konstantin Tokarev
21.11.2011, 18:32, "Atlant Schmidt" : > Graham: > >   I’m not sure I understand your question so let me try an answer >   and you can tell us whether that answer is germane to your >   question ;-). > >   Essentially, there are two ways to store any non-textual >   data in association with a basica

Re: [Interest] (no subject)

2011-11-21 Thread Atlant Schmidt
Graham: I'm not sure I understand your question so let me try an answer and you can tell us whether that answer is germane to your question ;-). Essentially, there are two ways to store any non-textual data in association with a basically-textual document: o Internally - In this si

Re: [Interest] [Qt-interest] (no subject)

2011-11-21 Thread norulez
You can use QuaZIP Am 21.11.2011 um 15:15 schrieb Graham Labdon : > What libraries are available to produce zip files in Qt? The ODT files in Qt > use QZipWriter which is private > > -Original Message- > From: Konstantin Tokarev [mailto:annu...@yandex.ru] > Sent: 21 November 2011 13:27

Re: [Interest] [Qt-interest] (no subject)

2011-11-21 Thread Konstantin Tokarev
21.11.2011, 18:15, "Graham Labdon" : > What libraries are available to produce zip files in Qt? The ODT files in Qt > use QZipWriter which is private zlib, of course :) -- Regards, Konstantin ___ Interest mailing list Interest@qt-project.org http://

Re: [Interest] [Qt-interest] (no subject)

2011-11-21 Thread Graham Labdon
What libraries are available to produce zip files in Qt? The ODT files in Qt use QZipWriter which is private -Original Message- From: Konstantin Tokarev [mailto:annu...@yandex.ru] Sent: 21 November 2011 13:27 To: Graham Labdon Cc: qt-inter...@qt.nokia.com; interest@qt-project.org Subject

Re: [Interest] [Qt-interest] (no subject)

2011-11-21 Thread Konstantin Tokarev
21.11.2011, 16:06, "Graham Labdon" : > Hi > > I am attempting to develop a simple text editor app that is able to save and > read files in a custom XML format (designed by me). > > The user should be able to add an image to the document, but I am having > trouble coming up with a strategy to save

[Interest] (no subject)

2011-11-21 Thread Graham Labdon
Hi I am attempting to develop a simple text editor app that is able to save and read files in a custom XML format (designed by me). The user should be able to add an image to the document, but I am having trouble coming up with a strategy to save this to my file other than saving the data inline