RetroZilla/modules/plugin/samples/default/os2/npnulos2.rc

109 lines
5.2 KiB
Plaintext
Raw Normal View History

2015-10-21 05:03:22 +02:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mozilla Communicator client code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#define INCL_NOBASEAPI
#include <os2.h>
#include "npnulos2.h"
RCDATA NP_INFO_ProductVersion { 1,0,0,15, }
RCDATA NP_INFO_MIMEType { "*\0" }
RCDATA NP_INFO_FileExtents { "*\0" }
RCDATA NP_INFO_FileOpenName{ "Mozilla Default Plug-in (*.*)\0" }
RCDATA NP_INFO_FileVersion { 1,0,0,15, }
RCDATA NP_INFO_CompanyName { "mozilla.org\0" }
RCDATA NP_INFO_FileDescription { "Default Plug-in file\0" }
RCDATA NP_INFO_InternalName { "DEFPLUGIN\0" }
RCDATA NP_INFO_LegalCopyright { "Copyright (C) 1995-2000\0" }
RCDATA NP_INFO_OriginalFilename { "NPNULOS2.DLL\0" }
RCDATA NP_INFO_ProductName { "Mozilla Default Plug-in\0" }
/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//
DLGTEMPLATE IDD_PLUGIN_DOWNLOAD DISCARDABLE
BEGIN
DIALOG "Title", IDD_PLUGIN_DOWNLOAD, 0, 125, 225, 122,
WS_VISIBLE | FS_DLGBORDER | FS_SCREENALIGN,
FCF_TITLEBAR | FCF_SYSMENU | FCF_NOMOVEWITHOWNER
PRESPARAMS PP_FONTNAMESIZE, "8.Helv"
BEGIN
LTEXT "Information on this page requires a plug-in for:",IDC_STATIC_INFO, 7, 108, 211, 8,SS_TEXT | DT_WORDBREAK | DT_MNEMONIC
LTEXT "Communicator can retrieve the plug-in for you from:",IDC_STATIC_LOCATION, 7, 89, 211, 7,SS_TEXT | DT_WORDBREAK | DT_MNEMONIC
CTEXT "What would you like to do?",IDC_STATIC_QUESTION, 7, 21, 211, 7,SS_TEXT | DT_WORDBREAK | DT_MNEMONIC
DEFPUSHBUTTON "Get the Plug-in",IDC_GET_PLUGIN, 41, 6, 64, 12,
PUSHBUTTON "Cancel", DID_CANCEL, 109, 6, 64, 12,
CTEXT "type/x-type",IDC_STATIC_INFOTYPE, 7, 100, 211, 7, SS_TEXT | DT_WORDBREAK | DT_MNEMONIC
LTEXT "The SmartUpdate feature makes it easy to install new plug-ins. To take advantage of SmartUpdate, you must enable Java, JavaScript and AutoInstall in the Advanced panel of the Preferences, then click the plug-in icon on the page.",IDC_STATIC_WARNING, 7, 32, 211, 29,SS_TEXT | DT_WORDBREAK | DT_MNEMONIC
LTEXT "Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static Static ",IDC_STATIC_URL, 7, 67, 211, 20,SS_TEXT | DT_WORDBREAK | DT_MNEMONIC
END
END
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
ICON IDI_PLUGICON DISCARDABLE "npnulos2.ico"
/////////////////////////////////////////////////////////////////////////////
//
// String Table
//
STRINGTABLE DISCARDABLE
BEGIN
IDS_INFO "Information on this page requires a plug-in for:"
END
STRINGTABLE DISCARDABLE
BEGIN
IDS_LOCATION "You can retrieve the plug-in from:"
IDS_TITLE "Plug-in Not Loaded"
IDS_QUESTION "What would you like to do?"
IDS_WARNING_JS "To retrieve the plug-in now, click the Get the Plug-in button and then select the plug-in you need from the page that appears."
IDS_WARNING_OFFLINE "However, you are currently offline. If you would like to get the plug-in, click Cancel, select ""Work Online"" from the File menu, then click the plug-in icon on the page."
IDS_FINDER_PAGE "Plug-in Finder page"
IDS_CLICK_TO_GET "Click here to get the plugin"
IDS_CLICK_WHEN_DONE "After installing the plugin, click here."
END