Subversion Repositories Kolibri OS

Rev

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

Rev 5459 Rev 5463
Line 81... Line 81...
81
	?define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
81
	?define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
82
#endif
82
#endif
Line 83... Line 83...
83
 
83
 
Line 84... Line 84...
84
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
84
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
85
 
85
 
86
#define TITLE "Eolite File Manager v2.55"
86
#define TITLE "Eolite File Manager v2.56"
Line 87... Line 87...
87
#define ABOUT_TITLE "Eolite v2.55"
87
#define ABOUT_TITLE "Eolite v2.56"
88
dword col_padding, col_selec, col_lpanel;
88
dword col_padding, col_selec, col_lpanel;
89
 
89
 
Line 1004... Line 1004...
1004
				ShowMessage(NOT_CREATE_FILE, 150);
1004
				ShowMessage(NOT_CREATE_FILE, 150);
1005
			}
1005
			}
1006
			break;
1006
			break;
1007
		case 8:
1007
		case 8:
1008
			SwitchToAnotherThread();
1008
			SwitchToAnotherThread();
1009
			CreateThread(#properties_dialog,#about_stak+4092);
1009
			CreateThread(#properties_dialog, #properties_stak+4092);
1010
			break;
1010
			break;
1011
		case 10: //F10
1011
		case 10: //F10
1012
			if (!active_settings) 
1012
			if (!active_settings) 
1013
			{
1013
			{
1014
				SwitchToAnotherThread();
1014
				SwitchToAnotherThread();
1015
				settings_window=CreateThread(#settings_dialog,#about_stak+4092);
1015
				settings_window=CreateThread(#settings_dialog, #settings_stak+4092);
1016
				break;
1016
				break;
1017
			}
1017
			}
1018
			else
1018
			else
1019
			{
1019
			{
1020
				ActivateWindow(GetProcessSlot(settings_window));
1020
				ActivateWindow(GetProcessSlot(settings_window));
Line 1031... Line 1031...
1031
 
1031
 
1032
char menu_stak[4096];
1032
char menu_stak[4096];
1033
char copy_stak[4096];
1033
char copy_stak[4096];
1034
char open_with_stak[4096];
1034
char open_with_stak[4096];
1035
char about_stak[4096];
1035
char about_stak[4096];
-
 
1036
char properties_stak[4096];
-
 
1037
char settings_stak[4096];
1036
>
1038
>