#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windom.h>
#include "text.h"
static
void __CDECL evnt_draw_text( WINDOW *win, short buff[8], void *data) {
short x, y, w, h;
short hcell, hcar;
short i, attr[10];
short y_max, h_offset;
TEXT *ptext = (TEXT *) data;
WindGet( win, WF_WORKXYWH, &x, &y, &w, &h);
y_max = MIN( y + h, win->graf->clip.g_y + win->graf->clip.g_h) - 1;
vqt_attributes( win->graf->handle, attr);
hcell = attr[9];
hcar = attr[7];
vswr_mode( win->graf->handle, MD_TRANS);
h_offset = hcell - hcar;
for( i=win->ypos; i<win->ypos_max ; i++) {
y += hcell;
if( y < win->graf->clip.g_y)
continue;
if( strlen( ptext->line[ i]) > win->xpos)
v_gtext(win->graf->handle, x, y - h_offset, ptext->line[i] + win->xpos);
if (y > y_max)
break;
}
}
static
void __CDECL evnt_destroy_text( WINDOW *win, short buff[8], void *text) {
free_text( text);
}
WINDOW *OpenText( TEXT *text) {
WINDOW *win;
short attrib[10];
win = WindCreate( WAT_NOINFO, app.x, app.y, app.w, app.h);
EvntDataAdd( win, WM_REDRAW, evnt_draw_text, text, EV_BOT);
EvntDataAdd( win, WM_DESTROY, evnt_destroy_text, text, EV_TOP);
win -> xpos_max = 255;
win -> ypos_max = text->maxline;
vqt_attributes( app.graf.handle, attrib);
win -> w_u = attrib[8];
win -> h_u = attrib[9];
text -> wchar = attrib[6];
text-> hchar = attrib[7];
WindOpen( win, app.x, app.y, app.w, app.h);
WindSlider( win, HSLIDER|VSLIDER);
return win;
}
static
void __CDECL evnt_apterm( ) {
while( wglb.first) {
ApplWrite( _AESapid, WM_DESTROY, wglb.first->handle, 0, 0, 0, 0);
EvntWindom( MU_MESAG);
}
}
int main() {
TEXT *text;
WINDOW *win;
ApplInit();
text = load_text( __FILE__);
EvntAttach( NULL, AP_TERM, evnt_apterm);
if( text == NULL)
FormAlert( 1, FA_ERROR "[Error: file not found !][End]");
else {
win = OpenText( text);
WindSetStr( win, WF_NAME, __FILE__ ": display a text file");
while( wglb.first) EvntWindom( MU_MESAG);
}
ApplExit();
return EXIT_SUCCESS;
}