You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
5.1 KiB
135 lines
5.1 KiB
//
|
|
// FILE: RIAFUI.RC
|
|
//
|
|
// Abstract: Resource file for OEM UI plugin module.
|
|
//
|
|
// Revision History:
|
|
// 02/29/2000 -Masatoshi Kubokura-
|
|
// Modified for PCL5e/PScript plugin from RPDL code.
|
|
// 08/03/2000 -Masatoshi Kubokura-
|
|
// Modified for NT4
|
|
// 09/07/2000 -Masatoshi Kubokura-
|
|
// "Sample Print" -> "Locked Print"
|
|
// 02/23/2001 -Masatoshi Kubokura-
|
|
// Expand width of Password editbox
|
|
// 06/14/2001 -Masatoshi Kubokura-
|
|
// Driver versioning enhancement
|
|
//
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#ifdef VER_COMPANYNAME_STR
|
|
#undef VER_COMPANYNAME_STR
|
|
#endif
|
|
#ifdef VER_PRODUCTNAME_STR
|
|
#undef VER_PRODUCTNAME_STR
|
|
#endif
|
|
#ifdef VER_PRODUCTVERSION
|
|
#undef VER_PRODUCTVERSION
|
|
#endif
|
|
#ifdef VER_PRODUCTVERSION_STR
|
|
#undef VER_PRODUCTVERSION_STR
|
|
#endif
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1981-2002"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright(C) Microsoft & Ricoh " VER_LEGALCOPYRIGHT_YEARS
|
|
#define VER_COMPANYNAME_STR "Ricoh Co., Ltd."
|
|
#define VER_FILEDESCRIPTION_STR "PCL Unidrv Printer Driver UI Plugin"
|
|
#define VER_PRODUCTNAME_STR "Ricoh PCL Unidrv Printer Driver"
|
|
#define VER_INTERNALNAME_STR "RIAFUI"
|
|
#ifdef RIAFUI0
|
|
#undef VER_INTERNALNAME_STR
|
|
#define VER_INTERNALNAME_STR "RIAFUI0"
|
|
#endif
|
|
#ifdef RIAFUI1
|
|
#undef VER_INTERNALNAME_STR
|
|
#define VER_INTERNALNAME_STR "RIAFUI1"
|
|
#endif
|
|
#ifdef RIAFUI2
|
|
#undef VER_INTERNALNAME_STR
|
|
#define VER_INTERNALNAME_STR "RIAFUI2"
|
|
#endif
|
|
#define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR ".DLL"
|
|
#ifdef WINNT_40
|
|
#define VER_FILESUBTYPE VFT2_DRV_PRINTER
|
|
#define VER_PRODUCTVERSION 4,50,124
|
|
#define VER_PRODUCTVERSION_STR "4.50.124"
|
|
#else // !WINNT_40
|
|
#define VER_FILESUBTYPE VFT2_DRV_VERSIONED_PRINTER
|
|
#ifdef RICOH_RELEASE
|
|
// Past VER_FILEVERSION: 0x0511(5.1.122)
|
|
#define VER_FILEVERSION 0,3,0x0513,0 // Ricoh Web Release 5.1.124
|
|
#else // !RICOH_RELEASE
|
|
#define VER_FILEVERSION 0,3,0x0501,0 // XP inbox 5.01.121
|
|
#endif // !RICOH_RELEASE
|
|
#define VER_PRODUCTVERSION 5,1,124
|
|
#define VER_PRODUCTVERSION_STR "5.1.124"
|
|
#endif // !WINNT_40
|
|
|
|
#include <common.ver>
|
|
|
|
#ifdef OEM_MULTILINGUAL
|
|
#include "RIAFMSVS.RC"
|
|
#else // !OEM_MULTILINGUAL
|
|
#include "resource.h"
|
|
#pragma code_page(1252)
|
|
IDD_JOBMAIN DIALOG DISCARDABLE 0, 0, 292, 198
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Job/Log"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "User &ID:",IDC_LABEL_JOBMAIN_USERID,31,14,57,12,
|
|
NOT WS_GROUP
|
|
EDITTEXT IDC_EDIT_JOBMAIN_USERID,90,12,48,13,ES_AUTOHSCROLL
|
|
LTEXT "(Up to 8 alphanumeric characters)",IDC_LABEL_JOBMAIN_USERID2,145,14,
|
|
135,12,NOT WS_GROUP
|
|
LTEXT "User ID is mandatory for Print Job, and is recommended setting for Log.",
|
|
IDC_LABEL_JOBMAIN_USERID3,41,31,240,12,NOT WS_GROUP
|
|
GROUPBOX "Print Job",IDC_LABEL_JOBMAIN_JOB,6,49,278,69
|
|
CONTROL "&Normal",IDC_RADIO_JOB_NORMAL,"Button",
|
|
BS_AUTORADIOBUTTON | WS_GROUP,31,63,56,13
|
|
CONTROL "&Sample Print",IDC_RADIO_JOB_SAMPLE,"Button",
|
|
BS_AUTORADIOBUTTON,92,63,56,13
|
|
CONTROL "&Locked Print",IDC_RADIO_JOB_SECURE,"Button",
|
|
BS_AUTORADIOBUTTON,153,63,56,13
|
|
LTEXT "&Password:",IDC_LABEL_JOBMAIN_PASSWORD,31,83,57,12,
|
|
NOT WS_GROUP
|
|
EDITTEXT IDC_EDIT_JOBMAIN_PASSWORD,90,81,48,13,ES_PASSWORD |
|
|
ES_AUTOHSCROLL
|
|
LTEXT "(4 digits)",IDC_LABEL_JOBMAIN_PASSWORD2,145,83,135,
|
|
12,NOT WS_GROUP
|
|
CONTROL "Restore &Defaults After Printing",
|
|
IDC_CHECK_JOB_DEFAULT,"Button",BS_AUTOCHECKBOX |
|
|
WS_TABSTOP,31,100,249,13
|
|
GROUPBOX "Log",IDC_LABEL_JOBMAIN_LOG,6,125,278,54
|
|
CONTROL "Disa&bled",IDC_RADIO_LOG_DISABLED,"Button",
|
|
BS_AUTORADIOBUTTON | WS_GROUP,31,139,56,13
|
|
CONTROL "&Enabled",IDC_RADIO_LOG_ENABLED,"Button",
|
|
BS_AUTORADIOBUTTON,92,139,56,13
|
|
LTEXT "User &Code:",IDC_LABEL_JOBMAIN_USERCODE,31,159,
|
|
57,12,NOT WS_GROUP
|
|
EDITTEXT IDC_EDIT_JOBMAIN_USERCODE,90,157,48,13,ES_AUTOHSCROLL
|
|
LTEXT "(Up to 8 digits)",IDC_LABEL_JOBMAIN_USERCODE2,145,
|
|
159,135,12,NOT WS_GROUP
|
|
END
|
|
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_ERR_USERID_TITLE "User ID Error"
|
|
IDS_ERR_USERID_MSG "Enter a valid User ID."
|
|
IDS_ERR_PASSWORD_TITLE "Password Error"
|
|
IDS_ERR_PASSWORD_MSG "Enter a valid Password."
|
|
IDS_ERR_USERCODE_TITLE "User Code Error"
|
|
IDS_ERR_USERCODE_MSG "Enter a valid User Code."
|
|
END
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_ITEM_HARDDISK "Hard Disk"
|
|
IDS_ITEM_MEMORY_HARDDISK "Memory / Hard Disk"
|
|
END
|
|
|
|
#endif // !OEM_MULTILINGUAL
|