home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lzwsrc.zip / IMGVIEW.RC < prev    next >
Text File  |  1996-09-05  |  2KB  |  55 lines

  1. //***************************************************************************
  2. //
  3. // ImgView.rc
  4. //
  5. //***************************************************************************
  6.  
  7. #include <windows.h>
  8. #include "Resource.h"
  9.  
  10. IDB_LOGO BITMAP LeadLogo.bmp
  11.  
  12. IDR_MENU MENU
  13. BEGIN
  14.     POPUP "&Options" {
  15.         MENUITEM "&Copy to Clipboard",      IDM_COPY
  16.         MENUITEM "&Status Bar",             IDM_STATUS,     CHECKED
  17.         MENUITEM SEPARATOR
  18.         MENUITEM "&About This Viewer...",   IDM_ABOUT
  19.         MENUITEM SEPARATOR
  20.         MENUITEM "E&xit",                   IDM_EXIT
  21.     }
  22. END
  23.  
  24. STRINGTABLE
  25. BEGIN
  26.     SC_RESTORE      "Restores this window to normal size"
  27.     SC_MOVE         "Moves this window to another screen location"
  28.     SC_SIZE         "Resizes this window"
  29.     SC_MINIMIZE     "Collapses this window to an icon"
  30.     SC_MAXIMIZE     "Expands this window to full screen size"
  31.     SC_CLOSE        "Closes this window"
  32.     IDM_COPY        "Copies the image to the clipboard"
  33.     IDM_STATUS      "Toggles the status bar on or off"
  34.     IDM_ABOUT       "Displays program information, version number, and copyright"
  35.     IDM_EXIT        "Quits Quick View"
  36. END
  37.  
  38. IDD_ABOUTDLG DIALOG 0, 0, 320, 238
  39. STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
  40. CAPTION "About ImgView"
  41. FONT 8, "MS Sans Serif"
  42. BEGIN
  43.     CTEXT           "ImgView Version 1.0", IDC_TITLE, 8, 12, 304, 28
  44.     CTEXT           "Copyright ⌐ 1996 Ziff-Davis Publishing Company.", -1, 8, 40, 304, 8
  45.     CTEXT           "All rights reserved.", -1, 12, 48, 296, 8
  46.     CTEXT           "First appeared in PC Magazine, U.S. Edition, December 3, 1996.", -1 , 8, 64, 304, 8
  47.     CTEXT           "Written by Jeff Prosise.", -1, 8, 72, 304, 8
  48.     LTEXT           "", -1, 8, 92, 304, 2, SS_SUNKEN
  49.     LTEXT           "Graphics power provided by", -1, 8, 110, 304, 8
  50.     CONTROL         IDB_LOGO, -1, "static", SS_BITMAP | SS_CENTERIMAGE | SS_REALSIZEIMAGE | SS_SUNKEN, 8, 120, 304, 64
  51.     LTEXT           "For information about the LEADTOOLS imaging library, visit LEAD Technologies' Web site at", -1, 8, 186, 304, 8
  52.     LTEXT           "www.leadtools.com or call 704-332-5532.", -1, 8, 194, 304, 8
  53.     DEFPUSHBUTTON   "OK", IDOK, 135, 212, 50, 14
  54. END
  55.