Subversion Repositories Kolibri OS

Rev

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

Rev 5620 Rev 5674
Line 112... Line 112...
112
			CopyExit();
112
			CopyExit();
113
			break;
113
			break;
114
		 
114
		 
Line 115... Line 115...
115
		case evReDraw:
115
		case evReDraw:
116
			DefineAndDrawWindow(Form.left+Form.width-200,Form.top+90,WIN_COPY_W,GetSkinHeight()+WIN_COPY_H,0x34,sc.work,T_PASTE_WINDOW_TITLE);
116
			DefineAndDrawWindow(Form.left+Form.width-200,Form.top+90,WIN_COPY_W,GetSkinHeight()+WIN_COPY_H,0x34,system.color.work,T_PASTE_WINDOW_TITLE);
117
			GetProcessInfo(#Copy_Form, SelfInfo);
117
			GetProcessInfo(#Copy_Form, SelfInfo);
118
			WriteText(45, 11, 0x80, sc.work_text, T_PASTE_WINDOW_TEXT);
118
			WriteText(45, 11, 0x80, system.color.work_text, T_PASTE_WINDOW_TEXT);
119
			DrawFlatButton(Copy_Form.cwidth - 90, Copy_Form.cheight - 32, 80, 22, 10, sc.work_button, T_PASTE_WINDOW_BUTTON);
119
			DrawFlatButton(Copy_Form.cwidth - 90, Copy_Form.cheight - 32, 80, 22, 10, system.color.work_button, T_PASTE_WINDOW_BUTTON);
120
			DrawBar(8, 10, 32, 32, 0xFFFfff);
120
			DrawBar(8, 10, 32, 32, 0xFFFfff);
121
			break;
121
			break;
122
	  }
122
	  }
123
}
123
}
Line 132... Line 132...
132
void copyf_Draw_Progress(dword copying_filename) {
132
void copyf_Draw_Progress(dword copying_filename) {
133
	if (Copy_Form.cwidth==0) return;
133
	if (Copy_Form.cwidth==0) return;
134
	DisplayCopyfForm();
134
	DisplayCopyfForm();
135
	Put_icon(copying_filename+strrchr(copying_filename,'.'), 16, 19, 0xFFFfff, 0);
135
	Put_icon(copying_filename+strrchr(copying_filename,'.'), 16, 19, 0xFFFfff, 0);
136
	DrawBar(45, 29, Copy_Form.cwidth-40, 10, sc.work);
136
	DrawBar(45, 29, Copy_Form.cwidth-40, 10, system.color.work);
137
	WriteText(45, 29, 0x80, sc.work_text, copying_filename);
137
	WriteText(45, 29, 0x80, system.color.work_text, copying_filename);
138
}
138
}
139
139