[SOLVED] What would be the best way to display a list of items in Qt
-
Again: it doesn't solve your issue, so perhaps you should try to solve one issue at a time and not confuse yourself with adding yet more new technologies you'll need to learn.
Anyway, more on using SQL in qt can be found my reading the documentation that appears if you enter "qsql" as the filter for the documentation index in creator. Start with reading the [[doc:QSqlDatabase]] docs.
-
bq. So you want to read and write data from different workstations and keep the data consistent ?
Yes.
bq. I would suggest that before you think about how to display the data, you should think about how you want to achieve the task of the interaction.
Well I'm actually more concern about the interaction than the display part, I just need advice from the experts to find the best solution.
Thanks
-
I'd build a data structure that properly describes what I'm dealing with, and provides a sane API to manipulate it in the ways I need.
What worries me is this sentence:
[quote author="fs_tigre" date="1343216153"]I forgot to mention one thing and probably the most important one is that this file will need to be access by multiple users, in other words any user can modify the file (file will be in a share drive).[/quote]
Does this mean that you'll be doing live updates with multiple users on the same data, and that you expect the data to be updated for all users at that moment? Because that is going to be quite tricky to do, and is not something you can explain how to do in a simple way. -
My first thought was to have a server that reads the initial (text, xml, JSON,..) document into an custom datastructure and maintains its state. The workstations would then access the data (for read and write operations) via an interface (CORBA, WebService, TCP,...) provided by the server.
-
Ok, it looks like this is a complicated task which I'm not prepared for yet.
So far the best solution I think is to use the QTextEdit, load the .txt file, change as needed and save it again.
Last question, if I go with the QTextEdit I'm describing here, what would be the best way to style the content in the .txt file? Do I need to work with an HTML file instead?
Side note: I'm very proficient in HTML and CSS.
Thanks
-
150 people, all editing the same file containing data? That sounds like a job for a database...
-
Still sounds like you want a database to me:-)
-
How about "QSqlTabelModel":http://qt-project.org/doc/qt-4.8/qsqltablemodel.html and "QTableView":http://qt-project.org/doc/qt-4.8/qtableview.html? I haven't used this combination, but combined with QSqlDatabase it sounds quite useful.
-
It is useful, but it does not provide the grouping that fs_tigre is looking for. QSqlTableModel provides a table, as the name already implies, while you would need a tree model to create the grouping. At least in the Qt widget world. QML of course has a list view that has grouping build in based on a flat list...