Hi,

> BTW have you made some tests with different fonts for console window
> in WinCE?
> I forgot to tell you about one important switch.
>    hb_gtInfo( HB_GTI_RESIZEMODE, HB_GTI_RESIZEMODE_ROWS )
> disables automatic font resizing to screen dimensions.

I've use modificated wcecon.prg from harbour/tests :

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#include "hbgtinfo.ch"
proc main()
   altd()
   REQUEST HB_CODEPAGE_PL852
   cls
   hb_setCodePage( "PL852" )
   hb_setTermCP( "PL852" )   
   hb_gtInfo( HB_GTI_RESIZEMODE, HB_GTI_RESIZEMODE_ROWS )
   SetMode(40,25)
   For  i = 6 To 18
    hb_gtInfo( HB_GTI_FONTSIZE, i )   
    ? "Fontsize"
    ? Str(i) + "Test : abcdefgh ABCDEFGH" 
    ? "Test : Ą˜ˆ©˘ľ«†ä ¤—ť¨ŕ˝ŤŹă" // polish characters like in attachment
    ? "rows =", ltrim( str( maxrow() + 1 ) )
    ? "cols =", ltrim( str( maxcol() + 1 ) )
    inkey( 0 )
    clear
   Next 
   Quit
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

1.I don't see any difference between each size from 6 to 18 (see
attachment).
2.App's window is not on 'full screen'
3.Windows Keyboard is visible on bottom of screen
4.In string "Test : abcdefgh ABCDEFGH" char 'H' is cut
5.Not exists any kerning

-- 
Regards,
Jaroslaw Ksdziola

<<attachment: iw20090822_01.jpg>>

_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to