Quote Originally Posted by Coises View Post
Can you elaborate a bit on what you want to do... give us an example of the kind of problem you’re trying to solve?

The whole idea of what Qt calls a “model” is to manage a collection of data — a list, a table, a tree or some hybrid of those — in a consistent way that separates maintaining the data from displaying the data. Since QTextEdits and QSpinBoxes don’t display collections... it’s unclear, at least to me, what you’re hoping to accomplish.
I'd like to, as you say, separate maintaining the data and displaying it. I'm working on software for a company, and we'd like to employ the MVC architecture to our code, or at least some form of it, so as to ensure scalability and, well, just plain organization

Quote Originally Posted by aamer4yu View Post
Have a look at QDataWidgetMapper
If only you had gone through the Qt Demos properly !!
Theres a simple data widget mapper in it.
Haha, my mistake! I spent a lot of time looking through the demos my first week with Qt, but after a while, hadn't thought to return to them. I'll check it out. Thanks.