新的代码如下:
/****************************************************************
**
** Qt教程一 - 4
**
****************************************************************/
#include <qapplication.h>
#include <qpushbutton.h>
#include <qfont.h>
class MyWidget : public QWidget
{
public:
MyWidget( QWidget *parent=0, Qt::WindowFlags f = 0 );
};
MyWidget::MyWidget( QWidget *parent, Qt::WindowFlags f )
: QWidget( parent, f )
{
setMinimumSize( 200, 120 );
setMaximumSize( 200, 120 );
QPushButton *quit = new QPushButton( "Quit", this );
quit->setGeometry( 62, 40, 75, 30 );
quit->setFont( QFont( "Times", 18, QFont::Bold ) );
connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) );
}
int main( int argc, char **argv )
{
QApplication a( argc, argv );
MyWidget w;
w.setGeometry( 100, 100, 200, 120 );
w.show();
return a.exec();
}
posted on 2007-07-21 06:48
七星重剑 阅读(483)
评论(1) 编辑 收藏 引用 所属分类:
PL--c/c++ 、
C++ lib -- Qt