home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / stepcounter-1.3.tar.gz / stepcounter-1.3.tar / stepcounter-1.3 / step.rcp < prev    next >
Text File  |  2000-03-10  |  1KB  |  50 lines

  1. //
  2. // step.rcp : Resource file for step counter.
  3. //
  4.  
  5. #include "stepRsc.h"
  6.  
  7. FORM ID frm_Main at ( 2 2 156 156 ) USABLE MODAL
  8. HELPID MainHelp
  9. BEGIN
  10.      TITLE "Step Counter V1.3"
  11.  
  12.      BUTTON "Reset Counter" ID but_RESET AT (CENTER 60 AUTO AUTO)
  13.  
  14.      LABEL "Sensivity:" AUTOID AT (18 90) FONT 1
  15.      PUSHBUTTON "low"  ID but_SENSEL AT (18 PREVBOTTOM+3 39 AUTO) GROUP 1
  16.      PUSHBUTTON "medium"  ID but_SENSEM AT (58 PREVTOP 39 AUTO) GROUP 1
  17.      PUSHBUTTON "high" ID but_SENSEH AT (98 PREVTOP 39 AUTO) GROUP 1
  18.  
  19.      LABEL "Axis:" AUTOID AT (18 120) FONT 1
  20.      PUSHBUTTON "vertical"  ID but_AXIS0 AT (18 PREVBOTTOM+3 59 AUTO) GROUP 2
  21.      PUSHBUTTON "horizontal"  ID but_AXIS1 AT (78 PREVTOP 59 AUTO) GROUP 2        
  22. END
  23.  
  24. STRING MainHelp "Step Counter for the ADXL202 acceleration sensor.\n\n"\
  25.   "(c) 1999 by Till Harbaum\n\n"\
  26.   "Use the reset button to restart the counter, the sensivity buttons to "\
  27.   "adjust the minimum acceleration needed to increase the counter and "\
  28.   "the axis buttons to select which sensor axis is used for acceleration measurement."
  29.  
  30. ALERT ID alt_err
  31. ERROR
  32. BEGIN
  33.   TITLE "Error"
  34.   MESSAGE "^1"
  35.  
  36.   BUTTONS "OK"
  37. END
  38.  
  39. STRING TiltHelp "Instructions how to "\
  40.   "add an adxl202 acceleration sensor to your pilot can be found "\
  41.   "at http://www.cs.tu-bs.de/~harbaum/pilot/adxl202.html."
  42.  
  43. ICON "step.pbm"
  44. APPLICATION ID 1 "StCt"
  45. VERSION ID 1 "1.3"
  46.  
  47.  
  48.  
  49.  
  50.