Added ability to turn on/off debug channels.
[wine.git] / programs / view / viewrc.rc
blob737dec45b5533a27c4f2d03d562caa6b21281f7c
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  */
19 #include "windows.h"
20 #include "resource.h"
22 /////////////////////////////////////////////////////////////////////////////
24 // Icon
27 /*IDI_APPICON             ICON    DISCARDABLE     "view.ico"*/
29 /////////////////////////////////////////////////////////////////////////////
31 // Menu
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
57 /////////////////////////////////////////////////////////////////////////////
59 // Accelerator
62 VIEW ACCELERATORS
63 BEGIN
64     "Q",            IDM_EXIT,                CONTROL
65 END
69 /////////////////////////////////////////////////////////////////////////////
71 // String Table
74 STRINGTABLE DISCARDABLE
75 BEGIN
76     IDS_APPNAME             "View"
77     IDS_DESCRIPTION         "Regular Metafile Viewer"
78 END