Subversion Repositories Kolibri OS

Rev

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

Rev 8927 Rev 8947
Line 35... Line 35...
35
	"¥à¥¬¥áâ¨âì",
35
	"¥à¥¬¥áâ¨âì",
36
	" ¯ª ",
36
	" ¯ª ",
37
	"“¤ «¨âì",
37
	"“¤ «¨âì",
38
	"” ©«",
38
	"” ©«",
39
	"  áâனª¨"
39
	"  áâனª¨"
40
}
40
};
41
#else
41
#else
42
?define T_FILE "File"
42
?define T_FILE "File"
43
?define T_TYPE "Type"
43
?define T_TYPE "Type"
44
?define T_SIZE "Size"
44
?define T_SIZE "Size"
45
?define T_NEW_FOLDER "New folder"
45
?define T_NEW_FOLDER "New folder"
Line 76... Line 76...
76
	"Move",
76
	"Move",
77
	"Folder",
77
	"Folder",
78
	"Delete",
78
	"Delete",
79
	"File",
79
	"File",
80
	" Settings"
80
	" Settings"
81
}
81
};
82
#endif
82
#endif
Line -... Line 83...
-
 
83
 
-
 
84
//Button IDs
-
 
85
enum {
-
 
86
	PATH_BTN = 10,
-
 
87
	POPUP_BTN1 = 201,
-
 
88
	POPUP_BTN2 = 202,
-
 
89
	KFM_DEV_DROPDOWN_1 = 205,
-
 
90
	KFM_DEV_DROPDOWN_2 = 207,
-
 
91
	BREADCRUMB_ID = 300,
-
 
92
 
-
 
93
	BACK_BTN = 400,
-
 
94
	FWRD_BTN,
-
 
95
	GOUP_BTN,
-
 
96
	COPY_BTN,
-
 
97
	CUT_BTN,
-
 
98
	PASTE_BTN,
-
 
99
	KFM_FUNC_ID = 450
-
 
100
};
-
 
101
 
-
 
102
//NewElement options
-
 
103
enum {
-
 
104
	CREATE_FILE=1, 
-
 
105
	CREATE_FOLDER, 
-
 
106
	RENAME_ITEM
-
 
107
}; 
-
 
108
 
-
 
109
//OpenDir options
-
 
110
enum {
-
 
111
	WITH_REDRAW, 
-
 
112
	ONLY_OPEN
83
113
};