Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7759 → Rev 7758

/programs/cmm/liza/mail_box.c
1,8 → 1,6
//Leency & SoUrcerer, LGPL
//Hidnplayer
 
TWebBrowser WB1;
 
#define LIST_INFO_H 59
int status_bar_h = 15;
 
15,9 → 13,7
char *mailend;
int mailsize;
 
int cur_charset;
 
 
enum {
GET_MAIL = 20,
SEND_MAIL,
357,13 → 353,19
WB1.list.column_max = WB1.list.w - 30 / 6;
WB1.list.visible = WB1.list.h / WB1.list.item_h;
WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, WB1.list.h);
 
strcpy(#header, #version);
WB1.list.first = WB1.list.count = 0;
}
 
 
void DrawLetter() {
WB1.ParseHtml(mdata, strlen(mdata));
bufsize = strlen(mdata);
bufpointer = mdata;
if (bufsize) && (bufpointer) {
WB1.ParseHtml();
WB1.DrawPage();
}
DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, 0xFFFfff);
}
 
387,8 → 389,7
SetMailBoxStatus(cur_st_percent, cur_st_text);
DrawCaptButton(240, st_y+1, 36, status_bar_h-3, STOP_LOADING, system.color.work_button, system.color.work_button_text,"Stop");
}
DrawCaptButton(Form.cwidth - 100, st_y+1, 70, status_bar_h-2, CHANGE_CHARSET+BT_HIDE,
system.color.work, system.color.work_text,cur_charset*10+#charsets);
DrawCaptButton(Form.cwidth - 100, st_y+1, 70, status_bar_h-2, CHANGE_CHARSET+BT_HIDE, system.color.work, system.color.work_text,charsets[cur_charset]);
}