1 /*
2 * Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
3 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20 #include "windef.h"
21 #include "winbase.h"
22 #include "winuser.h"
23 #include "main.h"
24 #include "winnls.h"
25 #include "commctrl.h"
26 #include "notepad_res.h"
27
28 ID_ACCEL ACCELERATORS
29 {
30 "^A", CMD_SELECT_ALL
31 "^C", CMD_COPY
32 "^F", CMD_SEARCH
33 "^N", CMD_NEW
34 "^O", CMD_OPEN
35 "^P", CMD_PRINT
36 "^S", CMD_SAVE
37 "^V", CMD_PASTE
38 "^X", CMD_CUT
39 "^Z", CMD_UNDO
40 VK_BACK, CMD_UNDO, VIRTKEY, ALT
41 VK_F3, CMD_SEARCH_NEXT, VIRTKEY
42 VK_F5, CMD_TIME_DATE, VIRTKEY
43 VK_INSERT, CMD_COPY, VIRTKEY, CONTROL
44 VK_INSERT, CMD_PASTE, VIRTKEY, SHIFT
45 }
46
47 /* @makedep: notepad.ico */
48 IDI_NOTEPAD ICON "notepad.ico"
49
50 #include "Bg.rc"
51 #include "Cs.rc"
52 #include "Da.rc"
53 #include "De.rc"
54 #include "En.rc"
55 #include "Eo.rc"
56 #include "Es.rc"
57 #include "Fi.rc"
58 #include "Fr.rc"
59 #include "Hu.rc"
60 #include "It.rc"
61 #include "Ja.rc"
62 #include "Ko.rc"
63 #include "Nl.rc"
64 #include "No.rc"
65 #include "Pl.rc"
66 #include "Pt.rc"
67 #include "Ro.rc"
68 #include "Ru.rc"
69 #include "Si.rc"
70 #include "Sv.rc"
71 #include "Th.rc"
72 #include "Tr.rc"
73 #include "Wa.rc"
74 #include "Zh.rc"
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.