home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / rude-1.3.tar.gz / rude-1.3.tar / rude / rude.rcp < prev    next >
Text File  |  2000-04-24  |  906b  |  42 lines

  1. #include "rude.h"
  2.  
  3. APPLICATIONICONNAME 1000 "Rude"
  4. ICON "rude.bmp"
  5.  
  6. VERSION ID 1 "1.3"
  7.  
  8. MENU ID RudeMenu
  9. BEGIN
  10.     PULLDOWN "Options"
  11.     BEGIN
  12.         MENUITEM "Aboot..." ID AbootMenu "A"
  13.     END
  14. END
  15.  
  16. FORM MainForm 0 0 160 160
  17. MENUID RudeMenu
  18. BEGIN
  19.     TITLE "Rude"
  20.     FIELD ID SentenceField AT (5 30 150 100) NONEDITABLE MAXCHARS 255 MULTIPLELINES
  21.     BUTTON "New" ID NewButton AT (7 140 AUTO AUTO)
  22. END
  23.  
  24. ALERT AbootAlert
  25. INFORMATION
  26. HELPID AbootHelp
  27. BEGIN
  28.     TITLE "Aboot Rude"
  29.     MESSAGE "Rude v1.3\n" \
  30.         "(C) 2000 James Wilkinson\n\n" \
  31.         "This software is freeware and is " \
  32.         "provided under the GNU GPL."
  33.     BUTTONS "OK"
  34. END
  35.  
  36. STRING AbootHelp "Based on a short piece of code floating around the " \
  37.          "netj0, with additional words added by some helpful " \
  38.          "Venturers at Dragonskin 2000 (Activity 202 :)." \
  39.          "\n\n" \
  40.          "Check http://www.cse.unsw.edu.au/~s2230937/palm for the " \
  41.          "latest version of Rude."
  42.