Subversion Repositories Kolibri OS

Rev

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

Rev 7796 Rev 7813
Line 20... Line 20...
20
-
20
-
21
“¤ «¨âì        |Del
21
“¤ «¨âì        |Del
22
‘¢®©á⢠       |F8";
22
‘¢®©á⢠       |F8";
23
char empty_folder_actions[]=
23
char empty_folder_actions[]=
24
"‚áâ ¢¨âì      |Crl+V";
24
"‚áâ ¢¨âì      |Crl+V";
-
 
25
char burger_menu_items[] = 
-
 
26
"®¢®¥ ®ª­®|Ctrl+N
-
 
27
Žâªàëâì ª®­á®«ì|Ctrl+G
-
 
28
Ž¡­®¢¨âì ¯ ¯ªã|F5
-
 
29
Ž ¯à®£à ¬¬¥|F1";
Line 25... Line 30...
25
 
30
 
26
#elif LANG_EST
31
#elif LANG_EST
27
char file_actions[]= 
32
char file_actions[]= 
28
"Ava           |Enter
33
"Ava           |Enter
Line 44... Line 49...
44
-
49
-
45
Kustuta        |Del
50
Kustuta        |Del
46
Properties     |F8";
51
Properties     |F8";
47
char empty_folder_actions[]=
52
char empty_folder_actions[]=
48
"Aseta         |Crl+V";
53
"Aseta         |Crl+V";
-
 
54
char burger_menu_items[] = 
-
 
55
"New window|Ctrl+N
-
 
56
Open console here|Ctrl+G
-
 
57
Värskenda|F5
-
 
58
About|F1";
Line 49... Line 59...
49
 
59
 
50
#else
60
#else
51
char file_actions[]= 
61
char file_actions[]= 
52
"Open         |Enter 
62
"Open         |Enter 
Line 68... Line 78...
68
-
78
-
69
Delete       |Del
79
Delete       |Del
70
Properties   |F8";
80
Properties   |F8";
71
char empty_folder_actions[]=
81
char empty_folder_actions[]=
72
"Paste        |Crl+V";
82
"Paste        |Crl+V";
-
 
83
char burger_menu_items[] = 
-
 
84
"New window|Ctrl+N
-
 
85
Open console here|Ctrl+G
-
 
86
Refresh folder|F5
73
 
87
About|F1";
74
#endif
88
#endif
Line 75... Line -...
75
 
-
 
76
//Ž¡­®¢¨âì ¯ ¯ªã      |F5
-
 
77
//Värskenda      |F5
-
 
Line 78... Line 89...
78
//Refresh      |F5
89
 
Line 79... Line 90...
79
 
90
 
Line 102... Line 113...
102
		case 3: Copy(#file_path, CUT); break;
113
		case 3: Copy(#file_path, CUT); break;
103
		case 4: Paste(); break;
114
		case 4: Paste(); break;
104
		case 5: Del_Form(); break;
115
		case 5: Del_Form(); break;
105
		case 6: FnProcess(8); break;
116
		case 6: FnProcess(8); break;
106
	}
117
	}
-
 
118
	if (active_menu == MENU_BURGER) switch(_id) {
-
 
119
		case 1: EventOpenNewEolite(); break;
-
 
120
		case 2: EventOpenConsoleHere(); break;
-
 
121
		case 3: EventRefreshDisksAndFolders(); break;
-
 
122
		case 4: FnProcess(1); break;		
-
 
123
	}
107
	active_menu = NULL;
124
	active_menu = NULL;
108
}
125
}
Line 109... Line 126...
109
 
126
 
110
void EventShowListMenu()
127
void EventShowListMenu()
Line 121... Line 138...
121
		active_menu = MENU_DIR;
138
		active_menu = MENU_DIR;
122
	} else {
139
	} else {
123
		text = #file_actions;
140
		text = #file_actions;
124
		active_menu = MENU_FILE;
141
		active_menu = MENU_FILE;
125
	}
142
	}
126
	open_lmenu(mouse.x+Form.left+5, mouse.y+Form.top+3+skin_height, MENU_ALIGN_TOP_LEFT, NULL, text);
143
	open_lmenu(mouse.x+Form.left+5, mouse.y+Form.top+3
-
 
144
		+skin_height, MENU_ALIGN_TOP_LEFT, NULL, text);
-
 
145
}
-
 
146
 
-
 
147
void EventShowBurgerMenu()
-
 
148
{
-
 
149
	active_menu = MENU_BURGER;
-
 
150
	open_lmenu(Form.width-10+Form.left, 35+Form.top+skin_height,
-
 
151
		MENU_ALIGN_TOP_RIGHT, NULL, #burger_menu_items);
127
}
152
}
Line 128... Line 153...
128
 
153
 
129
bool GetMenuClick()
154
bool GetMenuClick()
130
{
155
{