如何在QT Creator中自动包含所需的标题

时间:2016-01-20 20:24:55

标签: c++ qt header qt-creator qpushbutton

我在QT Creator中有一个项目,我希望在使用新对象时自动包含头文件。就像在Eclipse中一样:使用Ctrl + Alt + Space调用新对象时添加所需的标题:将包含所有需要的标题。

这是一个例子

#include <QApplication>
#include <QPushButton>  /* Header that i want to include automatically */

 int main( int argc, char *argv[ ] )
{
    QApplication app( argc, argv) ;
    QWidget fenetre;
/*Add needed headers when invoking a new object like ctrl+alt+space in eclipse*/
    QPushButton bouton( "Bonjour", &fenetre) ;
    bouton. move(70,60);
    fenetre. show( ) ;
    return app. exec( ) ;
}

有关如何在QT Creator中执行此操作的任何建议? 感谢

2 个答案:

答案 0 :(得分:2)

不完全按照您的要求,但是:如果您想在Qt Creator的帮助下创建一个新类,您当然可以让Qt Creator处理即时包含文件:

enter image description here

Qt Documentation: Creating Projects

答案 1 :(得分:1)

在QT Creator版本4.1.0中,您可以选择右键单击(将光标移到要包含的类型上,单击,选择重构,然后就可以了)