home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / prtcproj.zip / PRTDEMO.RC < prev    next >
Text File  |  1996-01-01  |  5KB  |  99 lines

  1. /* Version of 95/05/11 by Peter Kanis */
  2. /************************************************************************
  3. *  Project     : PRTGRAPH                 Date    : 95/05/11            *
  4. *  Module      : C Library demo                                         *
  5. *  Filename    : prtdemo.rc               Author  : Peter Kanis         *
  6. *************************************************************************
  7. *                                                                       *
  8. *  Description:                                                         *
  9. *                                                                       *
  10. *  Export:                                                              *
  11. *                                                                       *
  12. *  Intenal:                                                             *
  13. *                                                                       *
  14. *  Locals:      none                                                    *
  15. *                                                                       *
  16. *  Revisions:   none                                                    *
  17. *                                                                       *
  18. *************************************************************************
  19. *                                                                       *
  20. *  (c) ADD Consulting  All Rights Reserved                              *
  21. *                                                                       *
  22. *************************************************************************/
  23.  
  24. #define     INCL_WIN
  25. #include    <os2.h>
  26. #include    "prtdemo.h"
  27.  
  28. ICON DEMO_DLG PRTMAN.ICO
  29.  
  30. MENU DEMO_DLG
  31.  
  32. BEGIN
  33.     SUBMENU             "~File",                500
  34.         BEGIN
  35.             MENUITEM    "~Set printer...\tF4",  PB_PRINTER
  36.             MENUITEM    SEPARATOR
  37.             MENUITEM    "E~xit\tF3",            DID_CANCEL
  38.         END
  39.     
  40.     SUBMENU             "~Help",                501
  41.         BEGIN
  42.             MENUITEM    "~About...",            PB_ABOUT
  43.         END
  44. END
  45.  
  46. ACCELTABLE DEMO_DLG
  47.  
  48. BEGIN
  49.   VK_F3,    DID_CANCEL,         VIRTUALKEY
  50.   VK_F4,    PB_PRINTER,         VIRTUALKEY
  51. END
  52.  
  53. RCINCLUDE "DIALOG.DLG"
  54.  
  55. /************************************************************************/
  56. /* Hint texts for dialog.                                               */
  57. /************************************************************************/
  58.  
  59. STRINGTABLE LOADONCALL DISCARDABLE
  60.  
  61.     BEGIN
  62.         SPIN_HW_TXT                     "Line thickness for header in TWIPS"
  63.         SPIN_HS_TXT                     "Fill style for header"
  64.         CB_HEADER_TXT                   "Print a header"
  65.         CB_ALLPAGES_TXT                 "Print the header on every page"
  66.         SPIN_FW_TXT                     "Line thickness for footer in TWIPS"
  67.         SPIN_FS_TXT                     "Fill style for footer"
  68.         CB_FOOTER_TXT                   "Print a footer"
  69.         SPIN_BW_TXT                     "Line width for page border in TWIPS"
  70.         SPIN_BS_TXT                     "Fill style for page"
  71.         CB_BORDER_TXT                   "Print a border around the page"
  72.         SPIN_INTERL_TXT                 "Interline spacing fr text printing"
  73.         SPIN_LM_TXT                     "Left margin in millimetres"
  74.         SPIN_RM_TXT                     "Right margin in millimetres"
  75.         SPIN_TM_TXT                     "Top margin in millimetres"
  76.         SPIN_BM_TXT                     "Bottom margin in millimetres"
  77.         RB_TEXTL_TXT                    "Print text justified on left margin"
  78.         RB_TEXTR_TXT                    "Print text justified on right margin"
  79.         RB_TEXTC_TXT                    "Print text centred between margins"
  80.         RB_TEXTJ_TXT                    "Print text justified"
  81.         RB_BITMAP_TXT                   "Print the OS/2 bitmap"
  82.         RB_TABLES_TXT                   "Print some table examples"
  83.         RB_STYLES_TXT                   "Print boxes with the available fill styles"
  84.         RB_TABBED_TXT                   "Print example with tabs and moving"
  85.         PB_FONT_TXT                     "Choose the font for headers and text"
  86.         EF_FONT_TXT                     "Current font"
  87.         PB_PRINTER_TXT                  "Select a printer"
  88.         PB_JOBPROPS_TXT                 "See the job properties for the current printer"
  89.         PB_PRINT_TXT                    "PRINT IT !!!"
  90.     END
  91.  
  92. /************************************************************************/
  93. /*                                                                      */
  94. /*                         (c) ADD Consulting 1995                      */
  95. /*                                                                      */
  96. /*                               END OF FILE.                           */
  97. /*                                                                      */
  98. /************************************************************************/
  99.