Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread André Somers
Op 27-3-2013 21:50, Tr3wory schreef: Yes I know that, but based on this: http://qt-project.org/doc/qt-4.8/qitemeditorfactory.html#standard-editing-widgets I think it should work out of the box... Why? LongLong is neither int nor unsigned int André tr3w On Wed, Mar 27, 2013 at 9:03 PM,

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread Tr3wory
Technically you are right, on the other hand it is really counter intuitive to not have a default editor for qlonglong if the qsqlite driver gives me that for every integer by default. It would be a perfect solution to me if I could change the default type, but the

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread André Somers
Op 28-3-2013 11:13, Tr3wory schreef: Technically you are right, on the other hand it is really counter intuitive to not have a default editor for qlonglong if the qsqlite driver gives me that for every integer by default. It would be a perfect solution to me if I could change the default

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread Mark Brand
So my question is: is it possible to change the default type for INTEGER to QVariant::Int from qlonglong? Or even better, is it possible to change that for just a selected column in the QSqlTableModel? That would be a clean solution. Another good solution would be to set a

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread Tr3wory
On Thu, Mar 28, 2013 at 11:18 AM, André Somers an...@familiesomers.nl wrote: Op 28-3-2013 11:13, Tr3wory schreef: Technically you are right, on the other hand it is really counter intuitive to not have a default editor for qlonglong if the qsqlite driver gives me that for every integer by

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread André Somers
Op 28-3-2013 14:42, Tr3wory schreef: Thank you for the tip, the QIdentityProxyModel looks promising. And yes, the QSpinBox is not good enough for qlonglong in general. What about a QLineEdit with a proper input mask? Can be done. Note that you can supply your own editors to the model/views

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread Tr3wory
Yes I'm aware of that, I'm just thinking about a new default for qlonglong, so others don't have the same issue. tr3w On Thu, Mar 28, 2013 at 2:52 PM, André Somers an...@familiesomers.nl wrote: Op 28-3-2013 14:42, Tr3wory schreef: Thank you for the tip, the QIdentityProxyModel looks promising.

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread Tr3wory
On Thu, Mar 28, 2013 at 11:18 AM, André Somers an...@familiesomers.nl wrote: For your case, I think I would make a simple proxy model based on QIdentityProxyModel that adapts the data type from longlong to int when possible and where desirable. That should only take a couple of loc. I don't

Re: [Interest] Default delegate with QTableView and QSqlTableModel

2013-03-28 Thread Tr3wory
On Thu, Mar 28, 2013 at 3:50 PM, Tr3wory t...@freemail.hu wrote: The QIdentityProxyModel works like a charm, except: - for empty table (rows()==0) the header is wrong (https://bugreports.qt-project.org/browse/QTBUG-23572) - when the program starts the header is also wrong until I click on it.

Re: [Interest] Combine PDF files into a single PDF File

2013-03-28 Thread Robert Wood
Don't know about specifically with Qt, but you can use the command line tool pdfkt in the following way: pdftk *.pdf cat output concatenated.pdf You end up with a file called concatenated.pdf You can do other tricks. You can run that from Qt I am sure and end up with what you want. It's in

Re: [Interest] Combine PDF files into a single PDF File

2013-03-28 Thread d3fault
On Thu, Mar 28, 2013 at 11:06 AM, Michael Jackson imikejack...@gmail.com wrote: I would like to take a bunch of PDF files and combine them into a single PDF file. Would this be possible with Qt? I see where I can print an HTML file to a PDF but I have 60 html files that I want to convert into

Re: [Interest] Combine PDF files into a single PDF File

2013-03-28 Thread Mülner , Helmut
You could use wkhtmltopdf (or study its sources): http://code.google.com/p/wkhtmltopdf/ Helmut Mülner Von: interest-bounces+helmut.muelner=joanneum...@qt-project.org [interest-bounces+helmut.muelner=joanneum...@qt-project.org] im Auftrag von d3fault