//---------------------------------------------------------------------------- // Project Saie // Jyvaskylan Yliopisto // Copyright © 1996. All Rights Reserved. // // SUBSYSTEM: Saie Application // FILE: saieapp.rc // AUTHOR: Vesa Lappalainen // // OVERVIEW // ~~~~~~~~ // All resources defined here. // //---------------------------------------------------------------------------- #if !defined(WORKSHOP_INVOKED) # include #endif #include "saieapp.rh" // Accelerator table for short-cut to menu commands. (include/owl/editfile.rc) // // Table of help hints displayed in the status bar. // // // OWL string table // // EditFile (include/owl/editfile.rc and include/owl/editsear.rc) // // Exception string resources (include/owl/except.rc) // // General Window's status bar messages. (include/owl/statusba.rc) // // Validator messages (include/owl/validate.rc) // // // Misc application definitions // // Application ICON // // Client Dialog // IDD_SAIEDEMO DIALOG 6, 15, 137, 29 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION CAPTION "Dialog Client" FONT 8, "MS Sans Serif" { CONTROL "&Käynnistä", IDKAYNNISTA, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 84, 4, 50, 14 } // About box. // // TInputDialog class dialog box. // // Slider thumb bitmaps for TSlider and TVSlider (include/owl/slider.rc) // // Version info. // #if !defined(__DEBUG_) // Non-Debug VERSIONINFO // 1 VERSIONINFO LOADONCALL MOVEABLE FILEVERSION 1, 0, 0, 0 PRODUCTVERSION 1, 0, 0, 0 FILEFLAGSMASK 0 FILEFLAGS VS_FFI_FILEFLAGSMASK #if defined(BI_PLAT_WIN32) FILEOS VOS__WINDOWS32 #else FILEOS VOS__WINDOWS16 #endif FILETYPE VFT_APP BEGIN BLOCK "StringFileInfo" BEGIN // Language type = U.S. English(0x0409) and Character Set = Windows, Multilingual(0x04e4) BLOCK "040904E4" // Matches VarFileInfo Translation hex value. BEGIN VALUE "CompanyName", "Jyvaskylan Yliopisto\000" VALUE "FileDescription", "Saie for Windows\000" VALUE "FileVersion", "1.0\000" VALUE "InternalName", "Saie\000" VALUE "LegalCopyright", "Copyright © 1996. All Rights Reserved.\000" VALUE "LegalTrademarks", "Windows(TM) is a trademark of Microsoft Corporation\000" VALUE "OriginalFilename", "Saie.exe\000" VALUE "ProductName", "Saie\000" VALUE "ProductVersion", "1.0\000" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x0409, 0x04e4 // U.S. English(0x0409) & Windows Multilingual(0x04e4) 1252 END END #else // Debug VERSIONINFO // 1 VERSIONINFO LOADONCALL MOVEABLE FILEVERSION 1, 0, 0, 0 PRODUCTVERSION 1, 0, 0, 0 FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PATCHED | VS_FF_PRIVATEBUILD | VS_FF_SPECIALBUILD FILEFLAGS VS_FFI_FILEFLAGSMASK #if defined(BI_PLAT_WIN32) FILEOS VOS__WINDOWS32 #else FILEOS VOS__WINDOWS16 #endif FILETYPE VFT_APP BEGIN BLOCK "StringFileInfo" BEGIN // Language type = U.S. English(0x0409) and Character Set = Windows, Multilingual(0x04e4) BLOCK "040904E4" // Matches VarFileInfo Translation hex value. BEGIN VALUE "CompanyName", "Jyvaskylan Yliopisto\000" VALUE "FileDescription", "Saie for Windows\000" VALUE "FileVersion", "1.0\000" VALUE "InternalName", "Saie\000" VALUE "LegalCopyright", "Copyright © 1996. All Rights Reserved.\000" VALUE "LegalTrademarks", "Windows(TM) is a trademark of Microsoft Corporation\000" VALUE "OriginalFilename", "Saie.exe\000" VALUE "ProductName", "Saie\000" VALUE "ProductVersion", "1.0\000" VALUE "SpecialBuild", "Debug Version\000" VALUE "PrivateBuild", "Built by Vesa Lappalainen\000" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x0409, 0x04e4 // U.S. English(0x0409) & Windows Multilingual(0x04e4) 1252 END END #endif