forked from instead-hub/instead
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstead.rss
More file actions
51 lines (45 loc) · 1.09 KB
/
instead.rss
File metadata and controls
51 lines (45 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
NAME INST
#include <eikon.rh>
#include <eikon.rsg>
#include <uikon.rh>
#include <appinfo.rh>
#include <commondialogs.hrh> // Enumerations
#include <commondialogs.rh> // Resource structures
RESOURCE RSS_SIGNATURE
{
}
RESOURCE TBUF16 { buf=""; }
RESOURCE EIK_APP_INFO
{
}
// This file localise the applications icons and caption
RESOURCE LOCALISABLE_APP_INFO r_appinfo
{
short_caption = "INSTEAD";
caption_and_icon =
{
CAPTION_AND_ICON_INFO
{
// The caption text is defined in the rls file
caption = "INSTEAD";
// Icons are used to represent applications in the
// application launcher and application title bar.
// The number_of_icons value identifies how many icons
// that exist in the icon_file.
number_of_icons = 1;
// Using the application icons.
icon_file = "\\resource\\apps\\instead.mif";
}
};
}
RESOURCE FILESELECTIONDIALOG r_file_selection_dialog {
title = "Select-a-file:";
root_path = "C:\\";
filters = {
FILTER {
filter_type = EFilenameFilter;
filter_style = EInclusiveFilter;
filter_data = { "*.lua", "*.zip", "*.idf" };
}
};
}