1 jls.loader.provide('jls.win32.Font'); 2 3 jls.loader.requireLibrary('jls_win32'); 4 5 jls.win32.Font = jls.lang.Class.create( 6 { 7 initialize : function(faceName, height, width, escapement, orientation, weight, italic, underline, strikeOut, charSet, outPrecision, clipPrecision, quality, pitchAndFamily) { 8 this._no = new _native.win32.Font(faceName, height, width, escapement, orientation, weight, italic, underline, strikeOut, charSet, outPrecision, clipPrecision, quality, pitchAndFamily); 9 } 10 }); 11 12 /*Object.extend(jls.win32.Font, 13 { 14 _nop : null, 15 nop : function() { 16 } 17 });*/ 18 19 Object.inheritConstants(jls.win32.Font, _native.win32.Font); 20