Source code of Windows XP (NT5)
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.

119 lines
3.3 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxview.rc
  5. Abstract:
  6. This file contains all resources for faxview.exe
  7. Author:
  8. Wesley Witt (wesw) 16-Feb-1996
  9. Environment:
  10. User Mode
  11. --*/
  12. #include <windows.h>
  13. #include <commctrl.h>
  14. #include <ntverp.h>
  15. #include "resource.h"
  16. IDI_APPICON ICON "faxview.ico"
  17. IDB_OPEN_BIG BITMAP "24open.bmp"
  18. IDB_PRINT_BIG BITMAP "24print.bmp"
  19. IDB_HELP_BIG BITMAP "24help.bmp"
  20. IDB_ZOOM_BIG BITMAP "24zoom.bmp"
  21. IDB_COOLBAR BITMAP "coolbar.bmp"
  22. #define VER_FILETYPE VFT_APP
  23. #define VER_FILESUBTYPE VFT2_UNKNOWN
  24. #define VER_FILEDESCRIPTION_STR "Fax Viewer"
  25. #define VER_INTERNALNAME_STR "faxview.exe\0"
  26. #define VER_ORIGINALFILENAME_STR "faxview.exe\0"
  27. #include "common.ver"
  28. FAXVIEW MENU
  29. BEGIN
  30. POPUP "&File"
  31. BEGIN
  32. MENUITEM "&Open...\tF4", IDM_FILEOPEN
  33. MENUITEM "&Close", IDM_CLOSE, GRAYED
  34. MENUITEM SEPARATOR
  35. MENUITEM "&Print...", IDM_PRINT, GRAYED
  36. MENUITEM "Print Set&up...", IDM_PRINT_SETUP, GRAYED
  37. MENUITEM SEPARATOR
  38. MENUITEM "E&xit", IDM_EXIT
  39. END
  40. POPUP "&View"
  41. BEGIN
  42. MENUITEM "&Next Page\tCtrl+PgDn", IDM_PAGE_DOWN, GRAYED
  43. MENUITEM "&Previous Page\tCtrl+PgUp", IDM_PAGE_UP, GRAYED
  44. MENUITEM SEPARATOR
  45. POPUP "&Zoom"
  46. BEGIN
  47. MENUITEM "1&00%", IDM_ZOOM_100, CHECKED
  48. MENUITEM "&90%", IDM_ZOOM_90
  49. MENUITEM "&80%", IDM_ZOOM_80
  50. MENUITEM "&70%", IDM_ZOOM_70
  51. MENUITEM "&60%", IDM_ZOOM_60
  52. MENUITEM "&50%", IDM_ZOOM_50
  53. MENUITEM "&40%", IDM_ZOOM_40
  54. MENUITEM "&30%", IDM_ZOOM_30
  55. MENUITEM "&20%", IDM_ZOOM_20
  56. MENUITEM "&10%", IDM_ZOOM_10
  57. END
  58. END
  59. POPUP "&Help"
  60. BEGIN
  61. MENUITEM "&Help Topics\tF1", IDM_HELP
  62. MENUITEM "&About...", IDM_ABOUT
  63. END
  64. END
  65. STRINGTABLE DISCARDABLE
  66. BEGIN
  67. IDM_FILEOPEN "Open"
  68. IDM_PRINT "Print"
  69. IDM_HELP "Help"
  70. END
  71. IDD_VIEWER DIALOG DISCARDABLE 0, 0, 197, 101
  72. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  73. CAPTION "FaxView"
  74. FONT 8, "MS Shell Dlg"
  75. BEGIN
  76. LTEXT "The Fax Viewer is not the default TIFF document viewer.",
  77. -1,10,15,180,8
  78. LTEXT "Would would you like to make it the default?",
  79. -1,10,30,145,8
  80. CONTROL "Don't ask this again.",IDC_DEFAULT_VIEWER,"Button",
  81. BS_AUTOCHECKBOX | WS_TABSTOP,10,55,80,10
  82. DEFPUSHBUTTON "&Yes",IDOK,40,80,50,14
  83. PUSHBUTTON "&No",IDCANCEL,106,80,50,14
  84. END
  85. //
  86. // this resource exists ONLY so that the
  87. // toolbar can be edited with the MSVC
  88. // toolbar editor.
  89. //
  90. IDB_TOOLBAR TOOLBAR DISCARDABLE 30,28
  91. BEGIN
  92. BUTTON IDM_FILEOPEN
  93. BUTTON IDM_PRINT
  94. BUTTON IDM_PAGE_UP
  95. BUTTON IDM_PAGE_DOWN
  96. END