Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5423 → Rev 5098

/programs/cmm/dicty/dicty.c
9,7 → 9,7
 
 
unsigned char speaker[23*40*3]= FROM "speaker.raw";
char title[]= "Dictionary v1.32";
char title[]= "Dictionary v1.31";
char direction[] = "Translate direction:";
char translate_caption[] = "Translate";
char dict_not_found[] = "Dictionary not found";
20,8 → 20,7
system_colors sc;
proc_info Form;
 
char edword[256], search_word[256], translate_result[4096], cur_dict[256];
dword dict_folder;
char edword[256], search_word[256], translate_result[4096], dict_folder[4096], cur_dict[256];
#define DICT_DIRECROTY "dictionaries"
#define PRONOUNCED_FILE "/sys/pronounced.txt"
#define SPEECH_PATH "/kolibrios/media/speech/speech"
37,7 → 36,10
mem_Init();
if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("Error while loading GUI library /sys/lib/boxlib.obj");
 
dict_folder = abspath(DICT_DIRECROTY);
program_path[strrchr(#program_path, '/')] = 0;
strcpy(#dict_folder, #program_path);
strcat(#dict_folder, DICT_DIRECROTY);
SetCurDir(#dict_folder);
OpenDictionary(0);
if (param)
93,8 → 95,7
EAX=key<<8;
edit_box_key stdcall(#edit1);
// Translate();
// DrawTranslation();
//LiveSearch();
break;
case evReDraw:
199,7 → 200,6
 
void OpenDictionary(dword fileid)
{
char open_file_path[4096];
KillProcess(speaker_id);
if (!dir_buf) ShowDictList();
if (!dir_buf) strcpy(#cur_dict, "none");
208,10 → 208,7
 
free(file_buf);
file_buf = malloc(fsize);
strcpy(#open_file_path, dict_folder);
strcat(#open_file_path, "/");
strcat(#open_file_path, #cur_dict);
ReadFile(0, fsize, file_buf, #open_file_path);
ReadFile(0, fsize, file_buf, #cur_dict);
IF (EAX<>0)
{
fsize = 0;
218,12 → 215,11
strcpy(#search_word, "Error #");
strcat(#search_word, itoa(EAX));
strcpy(#translate_result, #dict_not_found);
DrawWindowContent();
return;
}
else
{
strcpy(#search_word, #cur_dict);
strcpy(#translate_result, #dict_opened);
}
DrawWindowContent();
}
 
233,7 → 229,7
int j, fcount, error;
free(dir_buf);
error = GetDir(#dir_buf, #fcount, dict_folder, DIRS_ONLYREAL);
error = GetDir(#dir_buf, #fcount, #dict_folder, DIRS_ONLYREAL);
if (!error)
{
DefineButton(0,0, Form.width,Form.height, 12+BT_HIDE+BT_NOFRAME, sc.work_button);