forked from KolibriOS/kolibrios
9497d50e2f
kolibri font viewer: revert to older version, because code readability matters git-svn-id: svn://kolibrios.org@5981 a494cfbc-eb01-0410-851d-a64ba20cac60
199 lines
8.5 KiB
C
199 lines
8.5 KiB
C
|
||
#ifdef LANG_RUS
|
||
?define EDIT_FILE_ASSOCIATIONS "<EFBFBD>¥¤ ªâ¨à®¢ âì áá®æ¨ 樨 ä ©«®¢"
|
||
?define TITLE_SETT "<EFBFBD> áâனª¨"
|
||
?define SHOW_DEVICE_CLASS "‚뢮¤¨âì §¢ ¨ï ª« áá ãáâனáâ¢"
|
||
?define SHOW_REAL_NAMES "<EFBFBD>®ª §ë¢ âì ¨¬¥ ä ©«®¢ ¥ ¬¥ïï ॣ¨áâà"
|
||
?define FONT_SIZE_LABEL "<EFBFBD> §¬¥à èà¨äâ "
|
||
?define USE_TWO_PANELS "„¢¥ ¯ ¥«¨"
|
||
?define smooth_FONT "ˆá¯®«ì§®¢ âì ᣫ ¦¥ë© èà¨äâ"
|
||
?define LIST_LINE_HEIGHT "‚ëá®â áâப¨ ¢ ᯨ᪥"
|
||
?define NOTIFY_COPY_END "“¢¥¤®¬«ïâì ® § ¢¥à襨¨ ª®¯¨à®¢ ¨ï"
|
||
?define T_DOUBLE_CLICK "‚à¥¬ï ¤¢®©®£® ª«¨ª (¢ á®âëå)"
|
||
#define SAVE_PATH_AS_DEFAULT "‘®åà ¨âì ⥪ã騩 ¯ãâì ¯® 㬮«ç ¨î"
|
||
#else
|
||
?define EDIT_FILE_ASSOCIATIONS "Edit file associations"
|
||
?define TITLE_SETT "Settings"
|
||
?define SHOW_DEVICE_CLASS "Show device class name"
|
||
?define SHOW_REAL_NAMES "Show real file names without changing case"
|
||
?define FONT_SIZE_LABEL "Font size"
|
||
?define USE_TWO_PANELS "Two panels"
|
||
?define smooth_FONT "Use smooth font"
|
||
?define LIST_LINE_HEIGHT "List line height"
|
||
?define NOTIFY_COPY_END "Notify when copying finished"
|
||
?define T_DOUBLE_CLICK "Double click time (in hundredths)"
|
||
#define SAVE_PATH_AS_DEFAULT "Save the current default path"
|
||
#endif
|
||
|
||
char config_section[] = "Config";
|
||
int WinX, WinY, WinW, WinH;
|
||
|
||
void settings_dialog()
|
||
{
|
||
byte id;
|
||
active_settings=1;
|
||
loop(){
|
||
switch(WaitEvent())
|
||
{
|
||
case evButton:
|
||
id=GetButtonID();
|
||
if (id==1) { ExitSettings(); break; }
|
||
else if (id==5)
|
||
{
|
||
RunProgram("tinypad", "/sys/settings/assoc.ini");
|
||
break;
|
||
}
|
||
else if (id==6)
|
||
{
|
||
ini_set_str stdcall (eolite_ini_path, #config_section, "DefaultPath", #path,strlen(#path));
|
||
IF(CMD_ENABLE_SAVE_IMG)ini_set_str stdcall (fd_path_eolite_ini_path, #config_section, "DefaultPath", #path,strlen(#path));
|
||
break;
|
||
}
|
||
else if (id==20) show_dev_name ^= 1;
|
||
else if (id==21) { action_buf=109; real_files_names_case ^= 1; }
|
||
else if (id==22) info_after_copy ^= 1;
|
||
else if (id==24) two_panels ^= true;
|
||
else if (id==25) { files.item_h++; files_active.item_h = files_inactive.item_h = files.item_h; }
|
||
else if (id==26) && (files.item_h>18) files.item_h--;
|
||
else if (id==27) MOUSE_TIME++;
|
||
else if (id==28) && (MOUSE_TIME>29) MOUSE_TIME--;
|
||
//else if (id==29) smooth_font ^= true;
|
||
else if (id==30) { font.size.text++; IF(!font.changeSIZE()) font.size.text--; BigFontsChange(); }
|
||
else if (id==31) { font.size.text--; IF(!font.changeSIZE()) font.size.text++; BigFontsChange(); }
|
||
EventRedrawWindow(Form.left,Form.top);
|
||
DrawSettingsCheckBoxes();
|
||
break;
|
||
|
||
case evKey:
|
||
GetKeys();
|
||
if (key_scancode==SCAN_CODE_ESC) ExitSettings();
|
||
break;
|
||
|
||
case evReDraw:
|
||
DefineAndDrawWindow(Form.left + Form.width/2-10, Form.top + Form.height/2 - 75, 300, 260+GetSkinHeight(),0x34,system.color.work,TITLE_SETT);
|
||
DrawSettingsCheckBoxes();
|
||
DrawFlatButton(9, 183, strlen(SAVE_PATH_AS_DEFAULT)+4*6, 22, 6, 0xE4DFE1, SAVE_PATH_AS_DEFAULT);
|
||
DrawFlatButton(9, 215, strlen(EDIT_FILE_ASSOCIATIONS)+4*6, 22, 5, 0xE4DFE1, EDIT_FILE_ASSOCIATIONS);
|
||
}
|
||
}
|
||
}
|
||
|
||
void ExitSettings()
|
||
{
|
||
active_settings = 0;
|
||
settings_window = 0;
|
||
cmd_free = 4;
|
||
ExitProcess();
|
||
}
|
||
|
||
void DrawSettingsCheckBoxes()
|
||
{
|
||
CheckBox2(10, 11, 20, SHOW_DEVICE_CLASS, show_dev_name);
|
||
CheckBox2(10, 33, 21, SHOW_REAL_NAMES, real_files_names_case);
|
||
CheckBox2(10, 55, 22, NOTIFY_COPY_END, info_after_copy);
|
||
CheckBox2(10, 77, 24, USE_TWO_PANELS, two_panels);
|
||
//CheckBox2(10, 99, 29, smooth_FONT, smooth_font);
|
||
MoreLessBox(10, 99, 18, 27, 28, #system.color, MOUSE_TIME, T_DOUBLE_CLICK);
|
||
MoreLessBox(10, 125, 18, 25, 26, #system.color, files.item_h, LIST_LINE_HEIGHT);
|
||
if (font.data) MoreLessBox(10, 152, 18, 30, 31, #system.color, font.size.text, FONT_SIZE_LABEL);
|
||
}
|
||
|
||
|
||
void LoadIniSettings()
|
||
{
|
||
files.SetFont(6, 9, 10000000b);
|
||
FileShow.font_size_x = files.font_w;
|
||
FileShow.font_number = 0;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "ShowDeviceName", 1); show_dev_name = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "RealFileNamesCase", 0); real_files_names_case = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "InfoAfterCopy", 0); info_after_copy = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "FontSize", 9); font.size.text = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "TwoPanels", 0); two_panels = EAX;
|
||
//ini_get_int stdcall (eolite_ini_path, #config_section, "UseSmoothFont", true);smooth_font = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "LineHeight", 18); files.item_h = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "TimeDoubleClick", 50); MOUSE_TIME = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "WinX", 200); WinX = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "WinY", 50); WinY = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "WinW", 550); WinW = EAX;
|
||
ini_get_int stdcall (eolite_ini_path, #config_section, "WinH", 500); WinH = EAX;
|
||
ini_get_str stdcall (eolite_ini_path, #config_section, "DefaultPath", #path,4096,"/rd/1/");
|
||
|
||
font.no_bg_copy = true;
|
||
ini_get_str stdcall ("/sys/SETTINGS/SYSTEM.INI", "system", "font file",#temp,4096,"/sys/FONTS/Tahoma.kf");
|
||
font.load(#temp);
|
||
ini_get_str stdcall ("/sys/SETTINGS/SYSTEM.INI", "system", "font smoothing",#temp,4096,"on");
|
||
if(!strcmp(#temp,"off"))smooth_font = false;
|
||
else smooth_font = true;
|
||
}
|
||
|
||
|
||
void SaveIniSettings()
|
||
{
|
||
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "ShowDeviceName", show_dev_name);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "RealFileNamesCase", real_files_names_case);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "InfoAfterCopy", info_after_copy);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "FontSize", font.size.text);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "TwoPanels", two_panels);
|
||
//ini_set_int stdcall (eolite_ini_path, #config_section, "UseSmoothFont", smooth_font);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "LineHeight", files.item_h);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "TimeDoubleClick", MOUSE_TIME);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "WinX", Form.left);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "WinY", Form.top);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "WinW", Form.width);
|
||
ini_set_int stdcall (eolite_ini_path, #config_section, "WinH", Form.height);
|
||
|
||
if(CMD_ENABLE_SAVE_IMG)
|
||
{
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "ShowDeviceName", show_dev_name);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "RealFileNamesCase", real_files_names_case);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "InfoAfterCopy", info_after_copy);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "FontSize", font.size.text);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "TwoPanels", two_panels);
|
||
//ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "UseSmoothFont", smooth_font);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "LineHeight", files.item_h);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "TimeDoubleClick", MOUSE_TIME);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "WinX", Form.left);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "WinY", Form.top);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "WinW", Form.width);
|
||
ini_set_int stdcall (fd_path_eolite_ini_path, #config_section, "WinH", Form.height);
|
||
}
|
||
}
|
||
|
||
|
||
|
||
void Write_Error(int error_number)
|
||
{
|
||
char error_message[500];
|
||
dword ii;
|
||
if (files.cur_y>=0) Line_ReDraw(0xFF0000, files.cur_y);
|
||
pause(5);
|
||
sprintf(#error_message,"\"%s\n%s\" -%s","Eolite",get_error(error_number),"tE");
|
||
notify(#error_message);
|
||
}
|
||
|
||
|
||
void SetAppColors()
|
||
{
|
||
system.color.work = 0xE4DFE1;
|
||
system.color.work_text = 0;
|
||
system.color.work_graph = 0x9098B0; //A0A0B8; //0x819FC5;
|
||
system.color.work_button = 0xD2D3D3;
|
||
system.color.work_button_text = 0x000000;
|
||
col_padding = 0xC8C9C9;
|
||
col_selec = 0x94AECE;
|
||
col_lpanel = 0x00699C;
|
||
}
|
||
|
||
|
||
void BigFontsChange()
|
||
{
|
||
files.item_h = font.size.text + 4;
|
||
if (files.item_h<18) files.item_h = 18;
|
||
files_active.item_h = files_inactive.item_h = files.item_h;
|
||
}
|
||
|
||
|
||
void CheckBox2(dword x, y, id, text, byte value) {
|
||
CheckBox(x, y, 14, 14, id, text, system.color.work_graph, system.color.work_text, value);
|
||
} |