16Jan/100
Qt Programming Tips
This is a little more of an unusual blog post. It's going to simply house a slowly growing list of Qt tips over time. Here goes
* Qt has the concept of models baked in. Usually you will only want to use them if you have a list of records involved. So let's say you have a list of contacts like in an address book then this could be encapsulated in a QAbstractTableModel. If you just want to display a record in one-off fashion you can just populate a bunch of form fields (such as QLineEdits).