I have a QTableWidget in which the user will define some text, some background and text color, and some spanning (merged cells). My problem now is to save all this once done by the user.
I'm thinking about scanning all row, all columns, get these properties, and right a custom txt or whatever file. I can then parse this file to load back the datas.
Actually I do a prototype with this : writing a QTableWidget to a .csv or .xls But saving to csv doesn't handle colors and spanning.
So before writing my own 'format' I would know if there is a standard format for this ? What would python gurus do in such case ?
Thanks Kib