Is there an equivalent of .NET\'s data binding in Qt?
I want to populate some combo boxes and other widgets with QStrings that refer to specific entities in my database.
Well, for combobox specifically, you can set a model. For QObjects in general you can use the notify signal for properties to connect or other non-property related signals. I think there is another way to do it but I can't recall.