kolibrios/programs/cmm/eolite/include/properties.h
Kirill Lipatov (Leency) 726a59c7da Eolite: Fix "Properities" to "Properties", thanks hidnplayr
git-svn-id: svn://kolibrios.org@5451 a494cfbc-eb01-0410-851d-a64ba20cac60
2015-02-23 13:34:27 +00:00

185 lines
5.5 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifdef LANG_RUS
?define WINDOW_TITLE_PROPERTIES "‘¢®©á⢠"
?define BTN_CLOSE "‡ ªàëâì"
?define T_NAME "ˆ¬ï:"
?define T_DEST "<EFBFBD> á¯®«®¦¥­¨¥:"
?define T_SIZE "<EFBFBD> §¬¥à:"
?define SET_3 "‘®§¤ ­"
?define SET_4 "Žâªàëâ"
?define SET_5 "ˆ§¬¥­¥­"
?define SET_6 "” ©«®¢: "
?define SET_7 " <20> ¯®ª: "
?define T_CONTAINS "‘®¤¥à¦¨â: "
?define FLAGS " €ââਡãâë "
?define T_HIDDEN "‘ªàëâë©"
?define T_SYSTEM "‘¨á⥬­ë©"
?define T_ONLY_READ "’®«ìª® ç⥭¨¥"
#elif LANG_EST
?define WINDOW_TITLE_PROPERTIES "‘¢®©á⢠"
?define BTN_CLOSE "‡ ªàëâì"
?define T_NAME "ˆ¬ï:"
?define T_DEST "<EFBFBD> á¯®«®¦¥­¨¥:"
?define T_SIZE "<EFBFBD> §¬¥à:"
?define SET_3 "‘®§¤ ­"
?define SET_4 "Žâªàëâ"
?define SET_5 "ˆ§¬¥­¥­"
?define SET_6 "” ©«®¢: "
?define SET_7 " <20> ¯®ª: "
?define T_CONTAINS "‘®¤¥à¦¨â: "
?define FLAGS " €ââਡãâë "
?define T_HIDDEN "‘ªàëâë©"
?define T_SYSTEM "‘¨á⥬­ë©"
?define T_ONLY_READ "’®«ìª® ç⥭¨¥"
#else
?define WINDOW_TITLE_PROPERTIES "Properties"
?define BTN_CLOSE "Close"
?define T_NAME "Name:"
?define T_DEST "Destination:"
?define T_SIZE "Size:"
?define SET_3 "Created"
?define SET_4 "Opened"
?define SET_5 "Modified"
?define SET_6 "Files: "
?define SET_7 " Folders: "
?define T_CONTAINS "Contains: "
?define FLAGS " Attributes "
?define T_HIDDEN "Hidden"
?define T_SYSTEM "System"
?define T_ONLY_READ "Read-only"
#endif
dword mouse_ddd2;
char path_to_file[4096]="\0";
char file_name2[4096]="\0";
edit_box file_name_ed = {150,50,25,0xffffff,0x94AECE,0x000000,0xffffff,2,4098,#file_name2,#mouse_ddd2, 1000000000000000b,2,2};
edit_box path_to_file_ed = {150,100,46,0xffffff,0x94AECE,0x000000,0xffffff,2,4098,#path_to_file,#mouse_ddd2, 1000000000000000b,2,2};
frame flags_frame = { 0, 180, 10, 80, 106, 0x000111, 0xFFFfff, 1, FLAGS, 0, 0, 6, 0x000111, 0xCCCccc };
checkbox2 HIDDEN_chb = {22*65536+15, 120*65536+15, 5, 0xffffff, 0x9098B0, 0x80000000, T_HIDDEN, CH_FLAG_MIDDLE, 0};
checkbox2 SYSTEM_chb = {22*65536+15, 140*65536+15, 5, 0xffffff, 0x9098B0, 0x80000000, T_SYSTEM, CH_FLAG_MIDDLE, 0};
checkbox2 ONLY_READ_chb = {22*65536+15, 160*65536+15, 5, 0xffffff, 0x9098B0, 0x80000000, T_ONLY_READ, CH_FLAG_MIDDLE, 0};
int file_count, dir_count, size_dir;
char folder_info[200];
BDVK file_info2;
void GetSizeDir(dword way)
{
dword dirbuf, fcount, i, filename;
char cur_file[4096];
if (isdir(way))
{
GetDir(#dirbuf, #fcount, way, DIRS_ONLYREAL);
for (i=0; i<fcount; i++)
{
filename = i*304+dirbuf+72;
strcpy(#cur_file, way);
chrcat(#cur_file, '/');
strcat(#cur_file, filename);
if ( TestBit(ESDWORD[filename-40], 4) )
{
dir_count++;
GetSizeDir(#cur_file);
}
else
{
GetFileInfo(#cur_file, #file_info2);
size_dir = size_dir + file_info2.sizelo;
file_count++;
}
}
}
}
void properties_dialog()
{
byte id;
unsigned int key;
dword file_name_off;
BDVK file_info;
proc_info settings_form;
strcpy(#folder_info, "\0");
file_count = 0;
dir_count = 0;
size_dir = 0;
GetFileInfo(#file_path, #file_info);
strcpy(#file_name2, #file_name);
file_name_ed.size = strlen(#file_name2);
strcpy(#path_to_file, #path);
path_to_file_ed.size = strlen(#path_to_file);
if (itdir) GetSizeDir(#file_path);
SetEventMask(0x27);
loop() switch(WaitEvent())
{
case evButton:
id=GetButtonID();
IF (id==1) || (id==10) ExitProcess();
break;
case evMouse:
edit_box_mouse stdcall (#file_name_ed);
edit_box_mouse stdcall (#path_to_file_ed);
break;
case evKey:
key = GetKey();
IF (key==27) ExitProcess();
EAX=key<<8;
edit_box_key stdcall(#file_name_ed);
edit_box_key stdcall(#path_to_file_ed);
break;
case evReDraw:
DefineAndDrawWindow(Form.left + 150,150,300,238+GetSkinHeight(),0x34,sc.work,WINDOW_TITLE_PROPERTIES);
GetProcessInfo(#settings_form, SelfInfo);
DrawFlatButton(208, settings_form.cheight - 34, 70, 22, 10, 0xE4DFE1, BTN_CLOSE);
DrawBar(10, 10, 32, 32, 0xFFFfff);
if (! TestBit(file_info.attr, 4) )
Put_icon(#file_name2+strrchr(#file_name2,'.'), 18, 20, 0xFFFfff, 0);
else
Put_icon("<DIR>", 18, 20, 0xFFFfff, 0);
WriteText(50, 13, 0x80, 0x000000, T_NAME);
edit_box_draw stdcall (#file_name_ed);
WriteText(10, 50, 0x80, 0x000000, T_DEST);
edit_box_draw stdcall (#path_to_file_ed);
/*WriteText(10, 63, 0x80, 0x000000, SET_3);
if (!itdir)
{
WriteText(10, 78, 0x80, 0x000000, SET_4);
WriteText(10, 93, 0x80, 0x000000, SET_5);
}*/
WriteText(10, 65, 0x80, 0x000000, T_SIZE);
if (!itdir)
{
WriteText(100, 65, 0x80, 0x000000, ConvertSize(file_info.sizelo));
}
else
{
WriteText(10, 80, 0x80, 0x000000, T_CONTAINS);
strcpy(#folder_info, SET_6);
strcat(#folder_info, itoa(file_count));
strcat(#folder_info, SET_7);
strcat(#folder_info, itoa(dir_count));
WriteText(100, 80, 0x80, 0x000000, #folder_info);
WriteText(100, 65, 0x80, 0x000000, ConvertSize(size_dir));
}
flags_frame.size_x = - flags_frame.start_x * 2 + settings_form.cwidth - 60;
flags_frame.font_color = sc.work_text;
flags_frame.font_backgr_color = sc.work;
frame_draw stdcall (#flags_frame);
if (TestBit(file_info.attr, 0)) ONLY_READ_chb.flags = 110b;
if (TestBit(file_info.attr, 1)) HIDDEN_chb.flags = 110b;
if (TestBit(file_info.attr, 2)) SYSTEM_chb.flags = 110b;
check_box_draw stdcall (#HIDDEN_chb);
check_box_draw stdcall (#SYSTEM_chb);
check_box_draw stdcall (#ONLY_READ_chb);
}
}