Eolite: update UI of COPY->REPLACE form

git-svn-id: svn://kolibrios.org@9510 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2021-12-27 23:19:58 +00:00
parent b02fd673e1
commit 190cbfd307
2 changed files with 53 additions and 27 deletions

View File

@ -21,9 +21,11 @@
#define T_COPY_WINDOW_TITLE "Š®¯¨àãî..." #define T_COPY_WINDOW_TITLE "Š®¯¨àãî..."
#define T_MOVE_WINDOW_TITLE "<22>¥à¥¬¥é î..." #define T_MOVE_WINDOW_TITLE "<22>¥à¥¬¥é î..."
#define T_DELETE_WINDOW_TITLE "“¤ «ïî..." #define T_DELETE_WINDOW_TITLE "“¤ «ïî..."
#define T_ABORT_WINDOW_BUTTON "<22>à¥à¢ âì" #define T_COPY_ABORT "<22>à¥à¢ âì"
#define T_REPLACE_WINDOW_BUTTON "‡ ¬¥­¨âì" #define T_COPY_REPLACE "‡ ¬¥­¨âì"
#define T_SKIP_WINDOW_BUTTON "<22>யãáâ¨âì" #define T_COPY_SKIP "<22>யãáâ¨âì"
#define T_COPY_REMEMBER_CHOICE "„«ï ¢á¥å"
#define T_OVERWRITE_ALERT "’ ª®© ä ©« 㦥 áãé¥áâ¢ã¥â!"
#define T_SELECT_APP_TO_OPEN_WITH "‚ë¡¥à¨â¥ ¯à®£à ¬¬ã ¤«ï ®âªàëâ¨ï ä ©« " #define T_SELECT_APP_TO_OPEN_WITH "‚ë¡¥à¨â¥ ¯à®£à ¬¬ã ¤«ï ®âªàëâ¨ï ä ©« "
#define DEL_MORE_FILES_1 "¢ë¡à ­­ë¥ í«¥¬¥­âë (" #define DEL_MORE_FILES_1 "¢ë¡à ­­ë¥ í«¥¬¥­âë ("
#define DEL_MORE_FILES_2 " èâ.)?" #define DEL_MORE_FILES_2 " èâ.)?"
@ -118,9 +120,11 @@ char *actions[] = {
#define T_COPY_WINDOW_TITLE "Copying..." #define T_COPY_WINDOW_TITLE "Copying..."
#define T_MOVE_WINDOW_TITLE "Moving..." #define T_MOVE_WINDOW_TITLE "Moving..."
#define T_DELETE_WINDOW_TITLE "Deleting..." #define T_DELETE_WINDOW_TITLE "Deleting..."
#define T_ABORT_WINDOW_BUTTON "Abort" #define T_COPY_ABORT "Abort"
#define T_REPLACE_WINDOW_BUTTON "Replace" #define T_COPY_REPLACE "Replace"
#define T_SKIP_WINDOW_BUTTON "Skip" #define T_COPY_SKIP "Skip"
#define T_COPY_REMEMBER_CHOICE "Apply for all"
#define T_OVERWRITE_ALERT "There is already a file with such name!"
#define T_SELECT_APP_TO_OPEN_WITH "Select application to open file" #define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
#define DEL_MORE_FILES_1 "selected items(" #define DEL_MORE_FILES_1 "selected items("
#define DEL_MORE_FILES_2 " pcs.)?" #define DEL_MORE_FILES_2 " pcs.)?"

View File

@ -1,13 +1,14 @@
#define WIN_DIALOG_W 380 #define COPYFORM_W 380
#define WIN_DIALOG_H 100 #define COPYFORM_H 100
#define PR_LEFT 14 #define PR_LEFT 14
#define PR_TOP 32 #define PR_TOP 32
#define PR_W WIN_DIALOG_W-PR_LEFT-PR_LEFT #define PR_W COPYFORM_W-PR_LEFT-PR_LEFT
#define PR_H 18 #define PR_H 18
proc_info Dialog_Form; proc_info Dialog_Form;
progress_bar copy_bar = {0,PR_LEFT,PR_TOP,PR_W,PR_H,0,0,1,0xFFFFFF,0x00FF00,0x555555}; progress_bar copy_bar = {0,PR_LEFT,PR_TOP,PR_W,PR_H,0,0,1,0xFFFFFF,0x00FF00,0x555555};
checkbox remember_choice = { T_COPY_REMEMBER_CHOICE, false };
enum { enum {
REDRAW_FLAG, REDRAW_FLAG,
@ -16,10 +17,16 @@ enum {
DELETE_FLAG, DELETE_FLAG,
}; };
enum {
BTN_ABORT=2,
BTN_REPLACE,
BTN_SKIP
};
void DisplayOperationForm(int operation_flag) void DisplayOperationForm(int operation_flag)
{ {
dword title; dword title;
dword id; dword event_mode;
if (operation_flag==COPY_FLAG) { if (operation_flag==COPY_FLAG) {
title = T_COPY_WINDOW_TITLE; title = T_COPY_WINDOW_TITLE;
copy_bar.progress_color = 0x00FF00; copy_bar.progress_color = 0x00FF00;
@ -39,37 +46,44 @@ void DisplayOperationForm(int operation_flag)
copy_bar.max = 0; copy_bar.max = 0;
} }
copy_bar.frame_color = sc.work_graph; copy_bar.frame_color = sc.work_graph;
switch(CheckEvent()) if (copy_state == FILE_DEFAULT) event_mode = #CheckEvent;
if (copy_state == FILE_EXISTS) event_mode = #WaitEvent;
event_mode();
switch(EAX)
{ {
case evButton: case evButton:
id = GetButtonID(); switch(GetButtonID())
switch(id)
{ {
case 2: case 1:
case BTN_ABORT:
DialogExit(); DialogExit();
break; break;
case 3: case BTN_REPLACE:
copy_state = FILE_REPLACE; copy_state = FILE_REPLACE;
break; break;
case 4: case BTN_SKIP:
copy_state = FILE_SKIP; copy_state = FILE_SKIP;
break; break;
default:
if (remember_choice.click(EAX+1)) {
notify(itoa(remember_choice.checked));
}
} }
break; break;
case evReDraw: case evReDraw:
DefineAndDrawWindow(Form.left+Form.width-200, Form.top+90, WIN_DIALOG_W+9, DefineAndDrawWindow(Form.left+Form.width-200, Form.top+90, COPYFORM_W+9,
skin_height+WIN_DIALOG_H+70, 0x34, sc.work, title, 0); skin_height+COPYFORM_H, 0x34, sc.work, title, 0);
GetProcessInfo(#Dialog_Form, SelfInfo); GetProcessInfo(#Dialog_Form, SelfInfo);
DrawCaptButton(WIN_DIALOG_W-PR_LEFT-101, PR_TOP+PR_H+6, 100,26, 2, DrawCaptButton(COPYFORM_W-PR_LEFT-101, PR_TOP+PR_H+6, 100,26, BTN_ABORT, sc.button, sc.button_text, T_COPY_ABORT);
sc.button, sc.button_text, T_ABORT_WINDOW_BUTTON);
if (copy_state == FILE_EXISTS) if (copy_state == FILE_EXISTS)
{ {
WriteText(WIN_DIALOG_W-PR_LEFT-301, PR_TOP+PR_H+46, 0x90, sc.work_text, "File exists!!"); #define REPLACEY PR_TOP+PR_H+48
DrawCaptButton(WIN_DIALOG_W-PR_LEFT-301, PR_TOP+PR_H+76, 100,26, 3, draw_icon_16w(PR_LEFT, REPLACEY-3, 20);
sc.button, sc.button_text, T_REPLACE_WINDOW_BUTTON); WriteText(PR_LEFT+25, REPLACEY, 0x90, sc.work_text, T_OVERWRITE_ALERT);
DrawCaptButton(WIN_DIALOG_W-PR_LEFT-101, PR_TOP+PR_H+76, 100,26, 4, DrawCaptButton(PR_LEFT, REPLACEY+30, 100,26, BTN_REPLACE, sc.button, sc.button_text, T_COPY_REPLACE);
sc.button, sc.button_text, T_SKIP_WINDOW_BUTTON); DrawCaptButton(PR_LEFT+110, REPLACEY+30, 100,26, BTN_SKIP, sc.button, sc.button_text, T_COPY_SKIP);
remember_choice.draw(PR_LEFT+225, REPLACEY+37);
} }
DrawRectangle3D(PR_LEFT-1, PR_TOP-1, PR_W+1, PR_H+1, sc.work_dark, sc.work_light); DrawRectangle3D(PR_LEFT-1, PR_TOP-1, PR_W+1, PR_H+1, sc.work_dark, sc.work_light);
@ -82,20 +96,28 @@ void DialogExit() {
} }
void Operation_Draw_Progress(dword filename) { void Operation_Draw_Progress(dword filename) {
static int old_state;
if (Dialog_Form.cwidth==0) if (Dialog_Form.cwidth==0)
{ {
copy_bar.value++; copy_bar.value++;
return; return;
} }
if (old_state != copy_state) {
old_state = copy_state;
if (copy_state == FILE_EXISTS) MoveSize(OLD,OLD,OLD,skin_height+COPYFORM_H+70);
if (copy_state == FILE_DEFAULT) MoveSize(OLD,OLD,OLD,skin_height+COPYFORM_H);
}
DisplayOperationForm(REDRAW_FLAG); DisplayOperationForm(REDRAW_FLAG);
DrawBar(PR_LEFT, PR_TOP-20, WIN_DIALOG_W-PR_LEFT, 15, sc.work);
WriteText(PR_LEFT, PR_TOP-20, 0x90, sc.work_text, filename);
progressbar_draw stdcall (#copy_bar); progressbar_draw stdcall (#copy_bar);
if (copy_state == FILE_DEFAULT) if (copy_state == FILE_DEFAULT)
{ {
DrawBar(PR_LEFT, PR_TOP-20, COPYFORM_W-PR_LEFT, 15, sc.work);
progressbar_progress stdcall (#copy_bar); progressbar_progress stdcall (#copy_bar);
} }
WriteTextWithBg(PR_LEFT, PR_TOP-20, 0xD0, sc.work_text, filename, sc.work);
WriteTextWithBg(PR_LEFT, PR_TOP+PR_H+5, 0xD0, sc.work_text, WriteTextWithBg(PR_LEFT, PR_TOP+PR_H+5, 0xD0, sc.work_text,
sprintf(#param, "%i/%i", copy_bar.value, copy_bar.max), sc.work); sprintf(#param, "%i/%i", copy_bar.value, copy_bar.max), sc.work);