Added LGPL standard comment, and copyright notices where necessary.
[wine] / programs / view / viewrc.rc
1 /*
2  * Copyright 1998 Douglas Ridgway
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include "windows.h"
20 #include "resource.h"
21
22 /////////////////////////////////////////////////////////////////////////////
23 //
24 // Icon
25 //
26
27 /*IDI_APPICON             ICON    DISCARDABLE     "view.ico"*/
28
29 /////////////////////////////////////////////////////////////////////////////
30 //
31 // Menu
32 //
33
34 VIEW MENU
35 BEGIN
36     POPUP "&File"
37     BEGIN
38         MENUITEM "&Open",                       IDM_OPEN
39         MENUITEM "E&xit",                       IDM_EXIT
40     END
41     POPUP "&Pan"
42     BEGIN
43       MENUITEM "&Scale to Window",              IDM_SET_EXT_TO_WIN
44       MENUITEM SEPARATOR
45       MENUITEM "&Left",                         IDM_LEFT
46       MENUITEM "&Right",                        IDM_RIGHT
47       MENUITEM "&Up",                           IDM_UP
48       MENUITEM "&Down",                         IDM_DOWN
49     END
50     POPUP "&Info"
51     BEGIN
52         MENUITEM "&Hello",                      IDM_HELLO
53     END
54 END
55
56
57 /////////////////////////////////////////////////////////////////////////////
58 //
59 // Accelerator
60 //
61
62 VIEW ACCELERATORS 
63 BEGIN
64     "Q",            IDM_EXIT,                CONTROL
65 END
66
67
68
69 /////////////////////////////////////////////////////////////////////////////
70 //
71 // String Table
72 //
73
74 STRINGTABLE DISCARDABLE
75 BEGIN
76     IDS_APPNAME             "View"
77     IDS_DESCRIPTION         "Regular Metafile Viewer"
78 END
79
80
81