views:

48

answers:

1

hi,

I'm using Qt Creator.

I'm using the signals and slots editor, and I want to see the code it generates.

How can I see the code?

Thanks!

+3  A: 

Let's say you have in Qt Creator a form file called widget.ui.

Once you've compiled your project, you'll find in your project folder a filed called ui_widget.h.

If you open it, you'll see the code generated by the uic tool.

Jérôme
Using this example, in Qt Creator, you should see the #include "ui_widget.h" line at the top of the .cpp file for your wrapper class. You can control-click that to open it.
Arnold Spence