Hierarchy in Qt [C++]

Guys could any one point it out to me a link to web page where I can find a hierarchy of classes in Qt, preferably as a diagram (something in UML style)? I'm just starting to learn it and I'm finding it quite difficult to work with all these classes - well, mainly with widgets and layouts at the moment- without knowing where they belong. Thank you.

Upvotes: 6

Views: 3646

Answers (2)

Juliano
Juliano

Reputation: 41387

The official class hierarchy is found here:

There are also some class charts. It is really big, you need a plotter to print this in a size which is readable:

Upvotes: 8

user3770060
user3770060

Reputation: 115

I was looking for the same thing but for QT 5.3. If anyone is interested here you have the class hierarchy for last QT version.

http://qt-project.org/doc/qt-5/hierarchy.html

Unfortunately, the classes diagram does not exist as it is mention here.

Upvotes: 2

Related Questions