Calligra Suite is able to read MS Office files. Calligra (KOffice fork) is open source . You can extract the filters if you like.
http://www.calligra-suite.org/
It's actually really simple. If you've added a widget X to a layout or widget that is part of another widget Y, X will be deleted when Y is deleted. This works recursively, so you really just have to delete the top-level widget.
[quote author="jensen82" date="1309436011"]OK...but warnings say "better take a deeper look at the code".[/quote]
I agree with this statement.
[quote author="jensen82" date="1309436011"]However...i'm not the first with this kind of problem. [/quote]
It shocked me too when I have encountered the first warnings at my first compilation trial. The good thing is that the command window has only a certain size. ;-)
Use a QAbstractItemView sub class. QScrollArea dose not work with items it works with widgets.
Consider reading a book "C++ GUI Programming with Qt-4 1st edition.":http://www.qtrac.eu/C++-GUI-Programming-with-Qt-4-1st-ed.zip
Reading a C++ book wouldn't hurt too, ass you are having problems understating simple compiler output.
Or at least use assistant.
thanks Vijay and sigrid , currently my solution is to implement a widget inheriting from QGraphicsProxyWidget , and export it to QML with qmlRegiesterType
[quote author="Volker" date="1304607729"]@ ...
qDebug() << qApp->libraryPaths();
...@
Is the mysql plugin listed in a subdir "sqldrivers" in one of the paths printed?[/quote]
Thanks for those accurate advices Volker, I was wondering why the driver wasn't found when I past the .so next to my executable. I was missing to put it in a subfolder named sqldrivers !
finally, I did not need the synchronisation toolkit like in swing. The low FPS was caused by the fact that I had been launching the application under IDE on slower PC. Now it works great:)
And I understand I will write posts there. Thank you :)
Yes I'm aware of your view that one should not connect foreign signals to private slots, but you have not mentioned it in your original post concerning making the slot public. This may lead to a false assumptions that such connections are impossible.