?? helloword.cpp
字號:
/*helloword.cpp:*/
/*********************************************************************
** $Id: /sample/1/helloworld.cpp 2.3.2 edited 2004-10-12 $
**
** Copyright (C) 2004-2005 OURSELEC AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*************************************************************************/
#include <qapplication.h>
#include <qlabel.h>
int main( int argc, char **argv )
{
QApplication app( argc, argv );
QLabel *label = new QLabel( "Hello, world!", 0 );
label->setAlignment( Qt::AlignVCenter
| Qt::AlignHCenter );
label->setGeometry( 10, 10, 200, 80 );
app.setMainWidget( label );
label->show();
int result = app.exec();
return result;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -