码迷,mamicode.com
首页 > 其他好文 > 详细

转《Qt教程一 —— 第四章:使用窗口部件》

时间:2016-01-28 19:17:28      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

本次内容均转自 http://www.cppblog.com/lai3d/archive/2007/07/21/28477.html

 

/****************************************************************
**
** 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();
}

转《Qt教程一 —— 第四章:使用窗口部件》

标签:

原文地址:http://www.cnblogs.com/willstill/p/5167124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!