-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathresource.rc
More file actions
33 lines (27 loc) · 774 Bytes
/
Copy pathresource.rc
File metadata and controls
33 lines (27 loc) · 774 Bytes
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
#include <windows.h>
#include "resource.h"
IDR_MYMENU MENU
{
POPUP "&Settings"
{
POPUP "Settings"
{
MENUITEM "Settings", IDM_SETTINGS
}
}
}
IDI_MYICON ICON "icon.ico"
OPTIONSDIALOG_RESOURCE DIALOG 120, 50, 110, 110
STYLE WS_POPUPWINDOW
CAPTION "Options"
{
AUTOCHECKBOX "Automatically play audio on click", ID_AUTOPLAY_AUDIO, 10, 10, 190, 12
AUTOCHECKBOX "Extract as wem files", ID_EXTRACT_AS_WEM, 10, 40, 70, 12
AUTOCHECKBOX "Extract as ogg files", ID_EXTRACT_AS_OGG, 10, 52, 70, 12
AUTOCHECKBOX "Allow multiselecting treeview items", ID_MULTISELECT_ENABLED, 10, 70, 140, 12
PUSHBUTTON "", IDOK, 40, 90, 30, 10
}
IDR_KEYCOMBINATIONS ACCELERATORS
{
67, IDM_COPY, VIRTKEY, CONTROL // CTRL+C
}