Subversion Repositories Kolibri OS

Rev

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

Rev 6678 Rev 6708
Line 169... Line 169...
169
	x = ESI.edit_box.left;
169
	x = ESI.edit_box.left;
170
	y = ESI.edit_box.top;
170
	y = ESI.edit_box.top;
171
	w = ESI.edit_box.width+1;
171
	w = ESI.edit_box.width+1;
172
	if (ESI.edit_box.flags & 100000000000b) bg = 0xCACACA; else bg = 0xFFFfff;
172
	if (ESI.edit_box.flags & 100000000000b) bg = 0xCACACA; else bg = 0xFFFfff;
173
	edit_box_draw  stdcall (edit_box_pointer);
173
	edit_box_draw  stdcall (edit_box_pointer);
174
	h = ESI.edit_box.ed_height+2;
174
	h = 22;
175
	DrawRectangle(x-1, y-1, w+1, h+1, bg);
175
	DrawRectangle(x-1, y-1, w+1, h+1, bg);
176
	DrawRectangle3D(x-2, y-2, w+3, h+3, 0xDDDddd, bg);
176
	DrawRectangle3D(x-2, y-2, w+3, h+3, 0xDDDddd, bg);
177
	DrawRectangle(x-3, y-3, w+5, h+5, system.color.work_graph);
177
	DrawRectangle(x-3, y-3, w+5, h+5, system.color.work_graph);
178
	DrawRectangle3D(x-4, y-4, w+7, h+7, system.color.work_dark, system.color.work_light);
178
	DrawRectangle3D(x-4, y-4, w+7, h+7, system.color.work_dark, system.color.work_light);
179
}
179
}