El manual de usuario de KDevelop: Guía de referencia para el Entorno Integrado de Desarrollo KDevelop para sistemas Unix, versión 1.2. | ||
---|---|---|
Anterior | Capítulo 10. El navegador de clases | Siguiente |
The classtools are dialogs that makes it even more easier for the developer to get more information about his project's classes . The classviewer displays all objects by their occurrence in the code, but you sometimes want to get more information about classes without having to look inside the code. Therefore, the classtool dialogs are specialized on displaying specific class attributes .
The classtool dialog is invoked by the popup menu over a class in the classviewer . Select "Classtool", and the dialog will appear. To get informed about a class, select the class in the combo box on top. Then the buttons in the toolbar provide functions that give you specific trees for your class. These are:
The parents of the selected class, which means the class it inherits. This is useful for multiple inheritance as well as to see why a class behaves in one or the other way, e.g. for dialogs your parent class could be QWidget or QDialog.
Displays the children classes that inherit the current class.
Classes that make use of the selected class by an attribute in their class declaration
The suppliers that give attributes to the selected class.
The attributes of the class by their name
The Methods of the selected class
The virtual methods that a class provides