📄 main.cpp
字号:
/******************************************************************************** Qt/Embedded virtual framebuffer**** Created : 20000605**** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.**** This file is part of the Qt GUI Toolkit.**** Licensees holding valid Qt Professional Edition licenses may use this** file in accordance with the Qt Professional Edition License Agreement** provided with the Qt Professional Edition.**** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for** information about the Professional Edition licensing.*******************************************************************************/#include <qapplication.h>#include <stdlib.h>#include <stdio.h>#include <qpainter.h>#include <qregexp.h>#include "qvfb.h"void usage( const char *app ){ printf( "Usage: %s [-width width] [-height height] [-depth depth] " "[-nocursor] [-qwsdisplay :id]\n" "Supported depths: 1, 4, 8, 32\n", app );}int main( int argc, char *argv[] ){ QApplication app( argc, argv ); int width = 240; int height = 320; int depth = 32; bool cursor = TRUE; QString displaySpec( ":0" ); QString skin; for ( int i = 1; i < argc; i++ ){ QString arg = argv[i]; if ( arg == "-width" ) { width = atoi( argv[++i] ); } else if ( arg == "-height" ) { height = atoi( argv[++i] ); } else if ( arg == "-skin" ) { skin = argv[++i]; } else if ( arg == "-depth" ) { depth = atoi( argv[++i] ); } else if ( arg == "-nocursor" ) { cursor = FALSE; } else if ( arg == "-qwsdisplay" ) { displaySpec = argv[++i]; } else { printf( "Unknown parameter %s\n", arg.latin1() ); usage( argv[0] ); exit(1); } } int displayId = 0; QRegExp r( ":[0-9]" ); int len; int m = r.match( displaySpec, 0, &len ); if ( m >= 0 ) { displayId = displaySpec.mid( m+1, len-1 ).toInt(); } qDebug( "Using display %d", displayId ); QVFb mw( displayId, width, height, depth, skin ); app.setMainWidget( &mw ); mw.enableCursor(cursor); mw.show(); return app.exec();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -