OK I did it. I've just save my svg as "plain svg" in Inkscape, default being "Inkscape svg" (don't know the difference). I've converted it to tiny with the official tool, and that's it.
Type: Posts; User: Massis_; Keyword(s):
OK I did it. I've just save my svg as "plain svg" in Inkscape, default being "Inkscape svg" (don't know the difference). I've converted it to tiny with the official tool, and that's it.
I'll try that, thank teemup. The gradient I'm using comes directly from the Nokia Icon ToolKit, I have followed step by step the official tutorial.
Thanks but I have the same issue even when having converted to svg-t with the converter provided by Nokia
Hi,
I'm developing a Qt Quick app and have a problem with its icon.
I've followed the official guidelines to create the .svg. It respects the size limit and is available here:...
So it means :
1. In QML, to keep my exposed QsqlqueryModel
2. In Qt, in that class, to deal with dbengine instead of bare qsqlquerymodel
What do you mean by request queue? I'm new to Qt and...
I think it's a bit more complicated than that. I could have a sql query thread, and it should feed back a model, progressively, via Qsqlrecord for instance. This is the part I don't understand how to...
Thanks all for your answers.
I've tried threading my model, but I've failed. My QsqlQueryModel exposed to QML is based upon: http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in_QML (see end...
You're right. I've discovered indexes yesterday. I've added an index, limited to the columns that the user can select to sort the table. It take more time to import the file, but it looks a lot more...
Thanks. But my app has an "order by" option as well. If I implement a dedicated timestamp column as in your example, I will have to :1. Sort first by time stamp, 2. Sort the result by the selected...
I know that SQLite doesn't support QuerySize. I could re-implement fetchmore/canfetchmore. But I'm wondering, is it the query which takes time, or the display. In fact, Qsqlquerymodel only grabs 256...
vladestCh
Do you have any example to do this? I use this class http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in_QML (the last generic one) to expose sqlquerymodel to QML.
Your help would...
Thanks izinin.
I didn't know about the LIMIT keyword. I understand what you're suggesting, but I struggle to imagine how to achieve a smooth result. If LIMIT is set to 50, and I reach the end of...
Hi
I have exposed qsqlquerymodel to QML and use listview to view my model.
My table has, let's say 30 columns, and thousands of rows. I use SQLite.
Everytime I set a filter/order via ORDER...
I've found the answer, after having read this excellent page: http://qt-project.org/wiki/ThreadsEventsQObjects
Event loop was blocked by my long process, so I just added
...
I did it, I found the reason why it segfaulted!
If someone encounters the same situation, here is the solution.
When parsing the XML, I sometimes capture some attributes. I was using the...
Hi,
In my project, I have a filemanage which calls my XML parsing QT c++ object.
GestionnaireFichier.qml calls the importFichier function from Importation.qml
Until now, I had a XMLListModel...
Hi,
In my Qt Quick Project, I've written a Qt C++ object in order to parse a XML file and populate a SQLITE db.
It works great with an XML containing 5 meta-entities (I'm dealing with geocaches...
Thanks. In the meanwhile, I have decided :
1. To write a C++ parser using QXmlStreamReader
2. To also write the SQL database filling part in Qt C++
3. And expose this object to QML
My code...
Hi,
After many trials/fails, I've concluded that, in order to parse a huge XML to populate a sqlite db in a responsive way, I need to expose a Qt C++ class, using QXmlStreamReader.
The example...
I've tried to use 3 XmlListModels, one after the other (launched in parallel, I had a full memory error on my N8).
To load a 1000 entity file, I waited for 7 minutes on my N8 to load the first...
OK, it works with this:
namespaceDeclarations: "declare namespace xsd='http://www.w3.org/2001/XMLSchema'; declare namespace xsi='http://www.w3.org/2001/XMLSchema-instance'; declare default...
Hi
I'd like to parse this kind of file:
<?xml version="1.0" encoding="utf-8"?>
<gpx xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
Hi I'm facing the same situation. I've succeeded in filling a sqlite db by parsing a xmllistmodel, but to access to different levels, I can't afford to duplicate lists, when my XML file contains 1000...
Well, it's broadly what I need, but not exactly.
My need is to :
1. open a file (xml-formatted) and import its contents to a sqlite db
2. work on that db (and in fact modify the contents; at...
Thanks, I've found another way
1. In Main Window, I define a importer item, based on Importer.qml
2. Importer.qml has a filename property, and an importFile function
3. My B.qml (the...