https://github.com/zytc2009/BigTeam_learning
分类: C/C++
2011-12-07 10:08:47
【1、與qt程序顯示文字大小有關的兩項】
export QWS_DISPLAY=LinuxFB:mmWidth200:mmHeight100:0 //輸出設備為Linux framebuffer,尺寸定義(尺寸定義與文字大小有直接關係)
export QWS_SIZE=480x272 //屏幕大小
【2、屏幕旋轉】
export QWS_DISPLAY=Transformed:Rot90 //旋轉90 可以旋轉0、90、180、270
想讓qt支持旋轉,在編譯嵌入式qt的時候要加上-qt-gfx-transformed選項
【3、舉一反三:在屏幕旋轉的同時保持文字大小】
export QWS_DISPLAY=Transformed:Rot90:LinuxFB:mmWidth200:mmHeight100:0
【4、用-display參數來代替以上export的變量】
假如將運行的程序是qtdemo
qtdemo-qws -display "LinuxFB:mmWidth200:mmHeight100:0"
qtdemo-qws -display "Transformed:Rot90"
qtdemo-qws -display "Transformed:Rot90:LinuxFB:mmWidth200:mmHeight100:0"