From: <kr_...@us...> - 2003-03-26 22:10:43
|
Update of /cvsroot/htoolkit/port/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv14592/port/src/include Modified Files: Button.h EditBox.h Label.h Log Message: The font attribute from Literate class is implemented Index: Button.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/Button.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Button.h 23 Jan 2003 20:19:32 -0000 1.2 --- Button.h 26 Mar 2003 22:10:02 -0000 1.3 *************** *** 8,11 **** --- 8,12 ---- char *osGetButtonText(WindowHandle button); void osSetButtonText(WindowHandle button, char *txt); + void osChangeButtonFont(WindowHandle button, FontHandle font); #endif Index: EditBox.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/EditBox.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** EditBox.h 26 Mar 2003 17:11:48 -0000 1.4 --- EditBox.h 26 Mar 2003 22:10:04 -0000 1.5 *************** *** 12,15 **** --- 12,16 ---- void osSetEditVisibility(WindowHandle editbox, BOOL visible); BOOL osGetEditVisibility(WindowHandle editbox); + void osChangeEditBoxFont(WindowHandle editbox, FontHandle font); #endif Index: Label.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/Label.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Label.h 23 Jan 2003 20:19:32 -0000 1.2 --- Label.h 26 Mar 2003 22:10:04 -0000 1.3 *************** *** 8,11 **** --- 8,12 ---- char *osGetLabelText(WindowHandle label); void osSetLabelText(WindowHandle label, char *txt); + void osChangeLabelFont(WindowHandle label, FontHandle font); #endif |