Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Donald Carr
Any customer who buys their way out of the LGPL requirements of up streaming changes to Qt places a maintenance burden on themselves that they are fully entitled to and may well end up ruing. It is their baby, and the money they pay for said baby is one more copper coin keeping the organ monkey gri

Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Scott Aron Bloom
But if you are a commercial customer you are buying yourself out of the LGPL requirements -Original Message- From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Nikos Chantziaras Sent: Tues

Re: [Interest] Qt ssh root ca bundle

2012-04-17 Thread ynon perek
I hope not. Is there an easy way to check ? I tried both this bundle (from cacert.org): http://www.cacert.org/index.php?id=3 And this one (extracted from mozilla through curl's website): http://curl.haxx.se/docs/caextract.html On 17 April 2012 23:00, Thiago Macieira wrote: > On terça-feira,

Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Donald Carr
I am not a lawyer, not even half a lawyer; that said: the good news is that any and all proceeds go into the coffers of Digia who actually man the register, and they will hopefully find Qt lucrative enough to ramp up their development and become an increasingly large contributor, along with all ou

Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Jason H
Well then you can't contribute to Qt because of the dual license. We endure the closed source because the open source side still benefits. Really it's a mutually beneficial arrangement. From: Nikos Chantziaras To: interest@qt-project.org Sent: Tuesday, A

Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Miha Wagner
Then don't do it? You still have the choice: you don't have to be ripped off if you don't want to. Cheers On Wed, Apr 18, 2012 at 3:03 AM, Nikos Chantziaras wrote: > I was under the impression that the LGPL is perfectly suitable for > proprietary applications. I don't want to sound like a gree

Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Nikos Chantziaras
I was under the impression that the LGPL is perfectly suitable for proprietary applications. I don't want to sound like a greedy egomaniac, but giving code I intend to be open source to be used under a proprietary license without me getting paid sounds like a rip-off. On 18/04/12 03:57, Scott

Re: [Interest] Contributor agreement rundown

2012-04-17 Thread Scott Aron Bloom
Yes you did.. Otherwise, they would have to keep a separate branch, one for opensource one for commercial. Anything you submit can be incorporated in both. Scott -Original Message- From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=ons

[Interest] Contributor agreement rundown

2012-04-17 Thread Nikos Chantziaras
I went to register for a Gerrit account. There I saw that I must agree to a "contributor agreement". It's very legalese, so I'm not sure if it means what I think it means: Nokia can transform open source code I contribute into non-open code? "Licensor hereby grants, in exchange for good and v

Re: [Interest] Qt ssh root ca bundle

2012-04-17 Thread Thiago Macieira
On terça-feira, 17 de abril de 2012 22.46.08, ynon perek wrote: > Will need to check for parsing errors and post back later. Could it be > related to this bug: > https://bugreports.qt-project.org/browse/QTBUG-14520 ? Did you add expired certificates to your bundle? -- Thiago Macieira - thiago.maci

Re: [Interest] Qt ssh root ca bundle

2012-04-17 Thread ynon perek
Hi, Code that gets the error is simple: void RemoteWLS::logSslError( const QList & errors ) { QLOG_INFO() << "Ssl Error: " << errors; } And when creating the request: QObject::connect(reply, SIGNAL(sslErrors( const QList &)), this, SLOT(logSslError( const QList &)))

Re: [Interest] Getting QTreeView item click offset for DnD

2012-04-17 Thread Jason H
To elaborate, the mouse press event is being reimplemented so I can record where the user clicked, since none of the data contains the mouse coord relative to the delegate.  Imagine a delegate 50x100. I click in the exact center (25,50) the drop event supplies the mouse coordinate (x,y). To dro

Re: [Interest] Quarterly links broken

2012-04-17 Thread wargand
Quaterly? You mean Centennially. ;-) Guido On Tue, Apr 17, 2012 at 08:40:54AM -0700, Jason H wrote: > http://doc.qt.nokia.com/qq/index.html > > The most recent article links don't link to their articles. > > Interest mailing

[Interest] Quarterly links broken

2012-04-17 Thread Jason H
http://doc.qt.nokia.com/qq/index.html The most recent article links don't link to their articles. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Getting QTreeView item click offset for DnD

2012-04-17 Thread Jason H
Yes. However nothing gives me the click coordinates. I am dragging an item to a subclassed QLabel. When the drop occurs, the top-left of the item is placed at the mouse cursor. This is wrong. The item should be placed at wherever Qt drew it last, which is offset by the mouse coords in the item.

Re: [Interest] Getting QTreeView item click offset for DnD

2012-04-17 Thread André Somers
Op 17-4-2012 16:54, Jason H schreef: Well I am confused about how the view works. I'm using QStandardItems, so whatever Qt does with those... I can't find documentation anywhere... The items in the model do not become widgets. That would be very inefficient. Instead, they are rendered in the

Re: [Interest] Getting QTreeView item click offset for DnD

2012-04-17 Thread Jason H
Well I am confused about how the view works. I'm using QStandardItems, so whatever Qt does with those... I can't find documentation anywhere... From: André Somers To: interest@qt-project.org Sent: Tuesday, April 17, 2012 10:40 AM Subject: Re: [Interest] Getti

Re: [Interest] Force QPainter color draw for SVG files?

2012-04-17 Thread mat //common mail
Another solution (without resource files): #ifndef SVGICONS_H #define SVGICONS_H #include #include #include #include class SvgIcons { private: static QString GeneralSvgPart(); static QPixmap GeneratePixmap(int width, int height, QString *lastSvgPart); public: //FileToolBar static QI

Re: [Interest] Getting QTreeView item click offset for DnD

2012-04-17 Thread André Somers
Op 17-4-2012 16:35, Jason H schreef: I need to repeat this. I'm still lost. here is my code (child is always NULL): voidDataPointTreeView::mousePressEvent(QMouseEvent*event) { QTreeView::mousePressEvent(event); QModelIndex mi = indexAt(event->pos()); QWidget *child =

Re: [Interest] Getting QTreeView item click offset for DnD

2012-04-17 Thread Jason H
I need to repeat this. I'm still lost. here is my code (child is always NULL): voidDataPointTreeView::mousePressEvent(QMouseEvent*event) { QTreeView::mousePressEvent(event); QModelIndexmi=indexAt(event->pos()); QWidget*child=indexWidget(mi); //QWidget*child=static_cast(childAt(event->pos())); if(

Re: [Interest] Appending QTextEdit in the QWidget

2012-04-17 Thread Nikos Chantziaras
On 17/04/12 15:04, Sujan Dasmahapatra wrote: > I want to append QTextEdit in the QWidget. QWidget has a specified width > and height. I want to append QTextEdit on the widget in such a way that > max 2 textedit should be there horizontally, after that 3^rd textedit > should be added vertically, mea

Re: [Interest] thanks for extra reading suggestions - sorry to insult technical writers

2012-04-17 Thread Syam Krishnan
On 04/17/2012 12:09 PM, Graeme Gill wrote: > Syam Krishnan wrote: > >> So, the idea that writing software is more complex than designing an >> electronic circuit is just based on lack of knowledge/experience on >> electronics. > I don't think so. I'm an electronics engineer, who happens to do > a l

Re: [Interest] Force QPainter color draw for SVG files?

2012-04-17 Thread alessandro.portale
Another variant: You could also render the original (black) SVG element to a temporary QImage, then use pixel manipulation to colorize it to red, and then render that image to the main painter. From: interest-bounces+alessandro.portale=nokia@qt-project.org [

Re: [Interest] Force QPainter color draw for SVG files?

2012-04-17 Thread Stephen Chu
If the SVG contains only solid black color, you can render it to a QBitmap first. Then draw the bitmap onto a color QPixmap or QImage with desired color as pen color and transparent background mode. On 4/17/2012 3:20 AM, jaume dominguez faus wrote: > Yes, I will try this. Thank you very much. >

Re: [Interest] Force QPainter color draw for SVG files?

2012-04-17 Thread Jason H
Really, what you should do it what he describes, but render it to a PNG/Pixmap, and store that. From: "warg...@gmx.de" To: jaume dominguez faus Cc: Qt Interest Sent: Sunday, April 15, 2012 6:57 PM Subject: Re: [Interest] Force QPainter color draw for SVG

Re: [Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread Sujan Dasmahapatra
Thanks a lot friends for showing me the way, I am looking into QGridLayout I hope it solves my problem. Thanks a lot Sujan From: interest-bounces+sdh=lmwindpower@qt-project.org [mailto:interest-bounces+sdh=lmwindpower@qt-project.org] On Behalf Of BERAUD Alexandre Sent: Tuesday, Ap

Re: [Interest] Qt ssh root ca bundle

2012-04-17 Thread Thiago Macieira
On terça-feira, 17 de abril de 2012 08.52.18, ynon perek wrote: > Hi All, > I'm trying to get QtWebkit to work nicely with ssh. It usually does so > out-of-the-box but the problem is for some machines it does not. > > On the problematic machines, an SSL error signal is sent. > If I print the errors

Re: [Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread R. Reucher
On Tuesday 17 April 2012 14:15:59 R. Reucher wrote: > On Tuesday 17 April 2012 14:07:49 Sujan Dasmahapatra wrote: > > Now when I add a 3rd widget in the layout it's adding horizontally, I > > want it to come to the next row. And so on. > > I think what you want is a QGridLayout. An added widget ca

Re: [Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread André Somers
Op 17-4-2012 14:15, R. Reucher schreef: On Tuesday 17 April 2012 14:07:49 Sujan Dasmahapatra wrote: > Now when I add a 3rd widget in the layout it's adding horizontally, I > want it to come to the next row. And so on. I think what you want is a QGridLayout. An added widget can be placed thro

Re: [Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread R. Reucher
On Tuesday 17 April 2012 14:07:49 Sujan Dasmahapatra wrote: > Now when I add a 3rd widget in the layout it's adding horizontally, I > want it to come to the next row. And so on. I think what you want is a QGridLayout. An added widget can be placed through (row,column) 'coordinates' and span multip

Re: [Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread BERAUD Alexandre
Maybe QGridLayout is what you are looking for. Maybe you should also consider using the modulo operator somewhere. Regards, Alex Le 17/04/2012 14:07, Sujan Dasmahapatra a écrit : Ignore my last mail it was incomplete. I want to append QTextEdit in the QWidget. QWidget has a specified widt

[Interest] FW: Appending QTextEdit in the QWidget

2012-04-17 Thread Sujan Dasmahapatra
Ignore my last mail it was incomplete. I want to append QTextEdit in the QWidget. QWidget has a specified width and height. I want to append QTextEdit on the widget in such a way that max 2 textedit should be there horizontally, after that 3rd textedit should be added vertically, means the widg

[Interest] Appending QTextEdit in the QWidget

2012-04-17 Thread Sujan Dasmahapatra
I want to append QTextEdit in the QWidget. QWidget has a specified width and height. I want to append QTextEdit on the widget in such a way that max 2 textedit should be there horizontally, after that 3rd textedit should be added vertically, means the widget should be split into 2 halves and 3rd te

Re: [Interest] QtArg

2012-04-17 Thread Nikos Chantziaras
On 11/04/12 19:44, Thiago Macieira wrote: > On quarta-feira, 11 de abril de 2012 18.20.52, Nikos Chantziaras wrote: >>> If you have started to look into this, let us know quickly which >>> modifications you have to make. Some of the transition needs might be >>> unintentional and we still have time

Re: [Interest] Force QPainter color draw for SVG files?

2012-04-17 Thread jaume dominguez faus
Yes, I will try this. Thank you very much. On 04/16/2012 12:57 AM, warg...@gmx.de wrote: > SVG is xml. Just load it into a QDomDocument and change the colour. > If the SVG does not change too much, you could even do a search and > replace of the color values. There are many ways to achieve what yo