home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / genpw-0.3.tar.gz / genpw-0.3.tar / genpw / genpw.rcp < prev    next >
Text File  |  1999-08-13  |  3KB  |  82 lines

  1. // genpw.rcp
  2. // Define resources for the GenPW program
  3.  
  4. #include "genpw.h"
  5.  
  6. FORM ID genpwFormMain AT (2 2 156 156)
  7. USABLE
  8. MODAL
  9. HELPID genpwHelp1
  10. MENUID genpwMenu1
  11. BEGIN
  12.     TITLE "Generate Password"
  13.     LABEL "Case: " ID idCaseLbl AT (20 30) FONT 0
  14.     PUSHBUTTON "MiXEd" ID idMixedPB AT (PREVRIGHT+1 PREVTOP AUTO AUTO) GROUP 1
  15.     PUSHBUTTON "UPPER" ID idUpperPB AT (PREVRIGHT+1 PREVTOP AUTO AUTO) GROUP 1
  16.     PUSHBUTTON "lower" ID idLowerPB AT (PREVRIGHT+1 PREVTOP AUTO AUTO) GROUP 1
  17.         LABEL "Num: " AUTOID AT (20 PREVBOTTOM+1) FONT 0
  18.         PUSHBUTTON "Hex"   ID idHexPB   AT (PREVRIGHT+1 PREVTOP AUTO AUTO) GROUP 1
  19.         PUSHBUTTON "Dec"   ID idNumPB   AT (PREVRIGHT+1 PREVTOP AUTO AUTO) GROUP 1
  20.     CHECKBOX "Numbers" ID idNumberCB AT (25 PREVBOTTOM+5 AUTO AUTO) CHECKED
  21.     CHECKBOX "Special Characters" ID idSpecCharCB AT (25 PREVBOTTOM+2 AUTO AUTO) CHECKED
  22.     REPEATBUTTON "\002" ID idDownRB AT (57 PREVBOTTOM+6 10 AUTO) FONT 4 NOFRAME ENABLED
  23.     FIELD ID idNumberFld AT (CENTER PREVTOP 15 20) SINGLELINE MAXCHARS 2 FONT 1
  24.     REPEATBUTTON "\003" ID idUpRB AT (84 PREVTOP 10 AUTO) FONT 4 NOFRAME
  25.     FIELD ID idPasswdFld AT (CENTER PREVBOTTOM+8 140 20) UNDERLINED SINGLELINE MAXCHARS 20 FONT 1
  26.  
  27.     BUTTON "Generate" ID idOKB AT (CENTER 130 AUTO AUTO)
  28.         LABEL "v0.3" ID idVersionLbl AT (130 PREVBOTTOM) FONT 0
  29.  
  30. END
  31.  
  32. MENU ID genpwMenu1
  33. BEGIN
  34.       PULLDOWN "File"
  35.       BEGIN
  36.           MENUITEM "Generate\t" idGenMenu "G"
  37.           MENUITEM SEPARATOR
  38.           MENUITEM "Copy\t" idCopyMenu "C"
  39.           MENUITEM SEPARATOR
  40.         MENUITEM "Help\t" idHelpMenu "H"
  41.           MENUITEM "About\t" idAboutMenu "A"
  42.       END
  43. END
  44.  
  45. ALERT RomIncompatibleAlert
  46. INFORMATION
  47. BEGIN
  48.     TITLE "Incompatible Version"
  49.     MESSAGE "Your ROM version is not compatible with GenPW."
  50.     BUTTONS "Ok"
  51. END
  52.  
  53. STRING genpwHelp1 "This Program will generate random passwords.\n\n"\
  54.        "The case pushbuttons allow letter case to be selected.  "\
  55.        "The number pushbuttons generates numbers instead of letters.\n\n"\
  56.        "The Decrement and Increment buttons allow length of "\
  57.        "the password to be selected.  (Min 4, Max 20) \n\n"\
  58.        "The Generate button will generate a new password.\n\n"\
  59.        "The Menu Generate does the same thing as the Generate button.\n\n"\
  60.        "The Menu Copy will copy the currenly displayed "\
  61.        "password to the clipboard.  Be sure to clean the "\
  62.        "clipboard out by copying something else in."
  63.  
  64. STRING genpwAbout1 "GenPW Version 0.3\n"\
  65.        "by Kevin Dupree\n"\
  66.        "kdupree@flash.net\n\n"\
  67.        "This software comes with NO warranty at all and I "\
  68.        "cannot be held responsible for anything it may do. "\
  69.        "I make no claims as to my ability to write programs. "\
  70.        "You have the source code, so check it out. "\
  71.        "The source code for GenPW is distributed under "\
  72.        "the GNU General Public License (GPL).\n"\
  73.        "You can find it at the following URL: \n"\
  74.        " http://www.gnu.org/copyleft/gpl.html\n\n"\
  75.        "A special thanks to all programmers who developed "\
  76.        "pilot-xfer, GCC cross compiler, prctools, pilrc, and xcopilot."
  77.  
  78.  
  79. ICON "genpw.bmp"
  80.  
  81. VERSION 1 "0.3"
  82.