ddraw: Implement ddraw_surface7_BltFast() on top of wined3d_surface_blt().
[wine.git] / programs / oleview / oleview.rc
blobc067bacf19752a4bc999d2fdeff12ed31a3fb235
1 /*
2  * OleView resources
3  *
4  * Copyright 2006 Piotr Caban
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
21 #include "resource.h"
23 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
25 IDM_MENU MENU
27     POPUP "&File"
28     {
29         MENUITEM "&Bind to file...",    IDM_BIND
30         MENUITEM "&View TypeLib...",    IDM_TYPELIB
31         MENUITEM SEPARATOR
32         MENUITEM "&System Configuration",       IDM_SYSCONF
33         MENUITEM "&Run the Registry Editor",    IDM_REGEDIT
34         MENUITEM SEPARATOR
35         MENUITEM "E&xit",    IDM_EXIT
36     }
37     POPUP "&Object"
38     {
39         POPUP "&CoCreateInstance Flag"
40         {
41             MENUITEM "&In-process server",   IDM_FLAG_INSERV,CHECKED
42             MENUITEM "In-process &handler",  IDM_FLAG_INHANDL
43             MENUITEM "&Local server",        IDM_FLAG_LOCSERV,CHECKED
44             MENUITEM "&Remote server",       IDM_FLAG_REMSERV
45         }
46         MENUITEM SEPARATOR
47         MENUITEM "View &Type information",    IDM_TYPEINFO, GRAYED
48         MENUITEM SEPARATOR
49         MENUITEM "Create &Instance",    IDM_CREATEINST, GRAYED
50         MENUITEM "Create Instance &On...",    IDM_CREATEINSTON, GRAYED
51         MENUITEM "&Release Instance",    IDM_RELEASEINST, GRAYED
52         MENUITEM SEPARATOR
53         MENUITEM "Copy C&LSID to clipboard",    IDM_COPYCLSID, GRAYED
54         MENUITEM "Copy &HTML object Tag to clipboard", IDM_HTMLTAG, GRAYED
55         MENUITEM SEPARATOR
56         MENUITEM "&View",       IDM_VIEW, GRAYED
57     }
58     POPUP "&View"
59     {
60         MENUITEM "&Expert mode",    IDM_EXPERT,CHECKED
61         MENUITEM SEPARATOR
62         MENUITEM "&Hidden component categories",    IDM_HIDDEN, GRAYED
63         MENUITEM SEPARATOR
64         MENUITEM "&Toolbar",    IDM_TOOLBAR,CHECKED
65         MENUITEM "&Status Bar",    IDM_STATUSBAR,CHECKED
66         MENUITEM SEPARATOR
67         MENUITEM "&Refresh\tF5",    IDM_REFRESH
68     }
69     POPUP "&Help"
70     {
71         MENUITEM "&About OleView",    IDM_ABOUT
72     }
75 IDM_TYPELIB MENU
77     POPUP "&File"
78     {
79         MENUITEM "&Save as...",    IDM_SAVEAS
80         MENUITEM "&Close",  IDM_CLOSE
81     }
82     POPUP "&View"
83     {
84         MENUITEM "&Group by type kind", IDM_GROUP
85         MENUITEM SEPARATOR
86         MENUITEM "&Toolbar",    IDM_TOOLBAR
87         MENUITEM "&Status Bar", IDM_STATUSBAR,CHECKED
88     }
91 STRINGTABLE
93     IDS_APPNAME            "OleView"
94     IDS_APPTITLE           "OleView"
95     IDS_READY              "Ready"
96     IDS_ABOUT              "OleView - OLE/COM Object Viewer"
97     IDS_ABOUTVER           "version 1.0"
98     IDS_TYPELIBTITLE       "ITypeLib viewer"
99     IDS_OPEN               "Open"
100     IDS_OPEN_FILTER_TYPELIB "TypeLib files (*.tlb; *.olb; *.dll; *.ocx; *.exe)"
101     IDS_OPEN_FILTER_ALL     "All files (*.*)"
103     IDM_BIND,              "Bind to file via a File Moniker"
104     IDM_TYPELIB,           "Open a TypeLib file and view the contents"
105     IDM_SYSCONF,           "Change machine wide Distributed COM settings"
106     IDM_REGEDIT,           "Run the Wine registry editor"
107     IDM_EXIT,              "Quit the application. Prompts to save changes"
108     IDM_CREATEINST,        "Create an instance of the selected object"
109     IDM_CREATEINSTON,      "Create an instance of the selected object on a specific machine"
110     IDM_RELEASEINST,       "Release the currently selected object instance"
111     IDM_COPYCLSID,         "Copy the GUID of the currently selected item to the clipboard"
112     IDM_VIEW,              "Display the viewer for the selected item"
113     IDM_FLAG_INSERV,       "Ask for an in-process server when calling CoGetClassObject"
114     IDM_FLAG_INHANDL,      "Ask for an in-process handler when calling CoGetClassObject"
115     IDM_FLAG_LOCSERV,      "Ask for a local server when calling CoGetClassObject"
116     IDM_FLAG_REMSERV,      "Ask for a remote server when calling CoGetClassObject"
117     IDM_EXPERT,            "Toggle between expert and novice display mode"
118     IDM_HIDDEN,            "Toggle the display of component categories that are not meant to be visible"
119     IDM_TOOLBAR,           "Show or hide the toolbar"
120     IDM_STATUSBAR,         "Show or hide the status bar"
121     IDM_REFRESH,           "Refresh all lists"
122     IDM_ABOUT,             "Display program information, version number and copyright"
124     IDM_SAVEAS,            "Save as an .IDL or .H file"
125     IDM_CLOSE,             "Close window"
126     IDM_GROUP,             "Group typeinfos by kind"
128     IDS_TREE_OC,           "ObjectClasses"
129     IDS_TREE_GBCC,         "Grouped by Component Category"
130     IDS_TREE_O1O,          "OLE 1.0 Objects"
131     IDS_TREE_CLO,          "COM Library Objects"
132     IDS_TREE_AO,           "All Objects"
133     IDS_TREE_AID,          "Application IDs"
134     IDS_TREE_TL,           "Type Libraries"
135     IDS_TL_VER,            "ver."
136     IDS_TREE_I,            "Interfaces"
138     IDS_TAB_REG,           "Registry"
139     IDS_TAB_IMPL,          "Implementation"
140     IDS_TAB_ACTIV,         "Activation"
142     IDS_CGCOFAIL,          "CoGetClassObject failed."
143     IDS_ERROR_UNKN,        "Unknown error"
144     IDS_TRUE,              "True"
145     IDS_FALSE,             "False"
146     IDS_BYTES,             "bytes"
148     IDS_ERROR_LOADTYPELIB, "LoadTypeLib( %s ) failed ($%x)"
149     IDS_INHERITINTERFACES, "Inherited Interfaces"
152 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
154 IDA_OLEVIEW ACCELERATORS
156     VK_F5, IDM_REFRESH, VIRTKEY
159 /* @makedep: toolbar.bmp */
160 IDB_TOOLBAR BITMAP toolbar.bmp