Mr.Tu
Mr.Tu

Reputation: 2733

How does Qt's model/view implementation work in the background?

I want to find some information about Model/View's implementation, but it's not documented.

By the way, I don't want information about how to use Model/View, what I want to know is its procedures, such as which function is called when, etc.

Upvotes: 1

Views: 275

Answers (2)

forivall
forivall

Reputation: 9913

Investigate this yourself. You can

  • look at the source code
  • use an interactive debugger
  • write some code to try to intercept the signals and slots (I believe there's something built into Designer)
  • use a Qt-specific tool to look at the live objects like Qt Inspector

Upvotes: 2

Related Questions