56 lines
2 KiB
Plaintext
56 lines
2 KiB
Plaintext
#include "resource.h"
|
|
|
|
#include <windows.h>
|
|
#include "commctrl.h" // for WC_LINK
|
|
|
|
|
|
// registration info
|
|
REGINST REGINST "selfreg.inf"
|
|
|
|
IDR_SSHOW_EXE BINARY DISCARDABLE "res\\sshow.exe"
|
|
|
|
DLG_RESIZEPICTURES DIALOG DISCARDABLE 0, 0, 219, 94
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Resize Pictures"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
DEFPUSHBUTTON "OK",IDOK,107,73,50,14
|
|
PUSHBUTTON "Cancel",IDCANCEL,162,73,50,14
|
|
LTEXT "What size would you like to make these pictures?", IDC_STATIC, 7,7,205,10
|
|
CONTROL "&Small (fits in a 640 by 480 window)",IDC_RESIZE_SMALL, "Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, 7,23,124,10
|
|
CONTROL "&Medium (fits in a 800 by 600 window)", IDC_RESIZE_MEDIUM,"Button",BS_AUTORADIOBUTTON, 7,36,132,10
|
|
CONTROL "&Large (fits in a 1024 by 768 window)", IDC_RESIZE_LARGE,"Button",BS_AUTORADIOBUTTON, 7,51,129,10
|
|
END
|
|
|
|
DLG_BURNWIZ_SLIDESHOW DIALOGEX 0, 0, 317, 143
|
|
STYLE DS_3DLOOK | DS_FIXEDSYS | WS_CHILD
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "A picture viewer can be included on this disc so that your pictures are automatically displayed as a slide show. Do you want to include a picture viewer when your files are written to the CD?",
|
|
IDC_STATIC,14,8,242,24
|
|
CONTROL "Yes, &add a picture viewer",
|
|
IDC_BURNWIZ_BURNPICTURE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP | BS_MULTILINE,14,53,195,10
|
|
CONTROL "No, &write the pictures to the CD normally",
|
|
IDC_BURNWIZ_BURNDATA,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP | BS_MULTILINE,14,68,195,10
|
|
END
|
|
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_BURNWIZ_SLIDESHOW_HEAD "Do you want to make a picture CD?"
|
|
IDS_BURNWIZ_SLIDESHOW_SUB ""
|
|
IDS_BURN_WIZTITLE "CD Writing Wizard"
|
|
END
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_RESIZEPICTURES "Resize Pictures"
|
|
IDS_RESIZESMALLSUFFIX " (Small)"
|
|
IDS_RESIZEMEDIUMSUFFIX " (Medium)"
|
|
IDS_RESIZELARGESUFFIX " (Large)"
|
|
END
|
|
|
|
|
|
// version information
|
|
#include "resource.rcv"
|