Subversion Repositories Kolibri OS

Rev

Rev 6803 | Rev 6806 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6803 Rev 6805
Line 1... Line 1...
1
#define MEMSIZE 0x2EE80
1
#define MEMSIZE 0x2EE80
Line 2... Line 2...
2
 
2
 
3
#include "../lib/font.h"
3
#include "../lib/kfont.h"
Line 4... Line 4...
4
#include "../lib/gui.h"
4
#include "../lib/gui.h"
5
 
5
 
Line 62... Line 62...
62
	{
62
	{
63
		sprintf(#line," §¬¥à èà¨äâ /size font %d ¯¨ªá¥«¥©.",i);
63
		sprintf(#line," §¬¥à èà¨äâ /size font %d ¯¨ªá¥«¥©.",i);
64
		label.WriteIntoBuffer(10,y,Form.cwidth,Form.cheight-PANELH, 0xFFFFFF, 0, i, #line);
64
		label.WriteIntoBuffer(10,y,Form.cwidth,Form.cheight-PANELH, 0xFFFFFF, 0, i, #line);
65
	}
65
	}
66
	if (label.smooth) label.ApplySmooth();
66
	if (label.smooth) label.ApplySmooth();
67
	label.show_buf(0, PANELH);
67
	label.ShowBuffer(0, PANELH);
68
}
68
}
Line 69... Line 69...
69
 
69
 
70
void DrawPreviewChars()
70
void DrawPreviewChars()
71
{
71
{
Line 82... Line 82...
82
			x=20;
82
			x=20;
83
			y+=label.height+2;
83
			y+=label.height+2;
84
		}
84
		}
85
	}
85
	}
86
	if (label.smooth) label.ApplySmooth();
86
	if (label.smooth) label.ApplySmooth();
87
	label.show_buf(0, PANELH);
87
	label.ShowBuffer(0, PANELH);
88
}
88
}