home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / timup13.zip / source.zip / timeup.rc < prev    next >
Text File  |  1993-06-21  |  4KB  |  87 lines

  1. ; TIMEUP.RC - Ronald Van Iwaarden 1993
  2. ; Modified from VMEM.RC - Copyright (c) 1992 M.B.Mallory
  3.  
  4. #include <os2.h>
  5. #include "timeup.h"
  6.  
  7. POINTER    TIMEUP_ICON    TIMEUP.ico
  8.  
  9. DLGTEMPLATE IDD_HELP
  10.   {
  11.   DIALOG "TimeUp Help information" 0, -45,-75,342,226,, 
  12.                 FCF_DLGBORDER | FCF_TITLEBAR
  13.     {
  14.     LTEXT "TimeUP consists simply of a title bar and a system menu. Data is displayed"  -1,5, 208,340,8
  15.     LTEXT "  in the title bar itself." -1,5, 200,340,8
  16.  
  17.     LTEXT "OPTIONS can be accessed by selecting it from the system menu"    -1,5, 188,340,8
  18.  
  19.     LTEXT "TimeUP:"                                             -1,5, 176,340,8
  20.     LTEXT "  If checked the program will display the amount of time that has elapsed" -1,5, 168,340,8
  21.     LTEXT "  since the system was booted"        -1,5, 160,340,8
  22.  
  23.     LTEXT "Record TimeUP:"                                       -1,5, 148,340,8
  24.     LTEXT "  If checked the program will display the maximum recorded Time UP and"   -1,5, 140,340,8
  25.     LTEXT "  append the time with an R."   -1,5, 132,340,8
  26.     LTEXT "  NOTE: The record time is flushed if restore defaults is checked when"       -1,5, 124,340,8
  27.     LTEXT "  this app is terminated!"  -1,5, 116,340,8
  28.     LTEXT "  This is also toggled by double clicking the right mouse button on the" -1,5, 132,340,8
  29.     LTEXT "  title bar"                     -1,5, 108,340,8
  30.  
  31.     LTEXT "Save screen position:"                               -1,5, 96,340,8
  32.     LTEXT "  If checked when the program is closed, the current position of TimeUP"        -1,5, 88,340,8
  33.     LTEXT "  on the screen and the record Time UP is saved."-1,5, 80,340,8
  34.  
  35.     LTEXT "Restore defaults:"                                  -1,5, 68,340,8
  36.     LTEXT "  If checked when the program is closed, all saved TimeUP data is deleted" -1,5, 60,340,8
  37.     LTEXT "  and hard coded defaults are used the next time the program is started "   -1,5, 52,340,8
  38.     LTEXT "  This option should be performed before removing TimeUP from your system"   -1,5, 44,340,8
  39.     LTEXT "  NOTE: If this is checked, Maximum TimeUP will be flushed when the"    -1,5, 36,340,8
  40.     LTEXT "         program is exited!!"    -1,5, 28,340,8
  41.  
  42.     DEFPUSHBUTTON  "~OK" DID_OK, 155, 3, 40, 14, WS_GROUP
  43.     }
  44.   }
  45.  
  46. DLGTEMPLATE IDD_ABOUT
  47.   {
  48.   DIALOG "About  TimeUp" 0, -20,-40,180,85,, FCF_DLGBORDER | FCF_TITLEBAR
  49.     {                                                      
  50.     ICON   TIMEUP_ICON                            -1,  78,69,  0,0
  51.     CTEXT "TimeUp  1.3        R. Van Iwaarden"   -1,  10,59,160,8
  52.     CTEXT "Adapted from Vmem 1.0"   -1,  10,51,160,8
  53.     CTEXT "(C) 1992 M.B.Mallory"   -1,  10,43,160,8
  54.     CTEXT "Displays the amount of time"       -1,  10,31,160,8
  55.     CTEXT "since last reboot of OS/2 2.O"-1,  10,22,160,8  
  56.  
  57.     DEFPUSHBUTTON  "~OK" DID_OK, 70,  5,  40, 14,WS_GROUP
  58.     }
  59.   }
  60.  
  61. #define  ARB  AUTORADIOBUTTON
  62. #define  ACB  AUTOCHECKBOX
  63. #define  CB   CHECKBOX
  64.  
  65. DLGTEMPLATE IDD_OPTIONS
  66.   {
  67.   DIALOG "TIMEUP  Options" 0, -15,-112,140,102,,FCF_DLGBORDER | FCF_TITLEBAR
  68.     {
  69.     GROUPBOX    "Termination control"           -1,  10,24,120,35
  70.       CB  "~Save position & Record"   ACB_SAVESCRPOS,  15,39,110,10,
  71.         BS_3STATE | WS_VISIBLE | WS_TABSTOP | WS_GROUP
  72.       ACB "~Restore defaults"          ACB_RESTORE,  15,29,110,10
  73.  
  74.     DEFPUSHBUTTON "~OK"                     DID_OK,  10, 5, 40,14,WS_GROUP
  75.     PUSHBUTTON    "~About"               DID_ABOUT,  50, 5, 40,14
  76.     PUSHBUTTON    "~Help"                 DID_HELP,  90, 5, 40,14
  77.  
  78.     GROUPBOX    "Display Control"           -1,  10,62,120,35
  79.       ARB "~TimeUP"          ARB_TIMEUP,  15,77,110,10
  80.       ARB  "Record Time UP"   ARB_RECORD,  15,67,110,10,
  81.  
  82.     }
  83.   }
  84.  
  85.  
  86.  
  87.