home *** CD-ROM | disk | FTP | other *** search
/ Freelog 10 / Freelog010.iso / BAS / Genealog / Revolution / src / revolution.rc < prev    next >
Text File  |  2000-03-04  |  4KB  |  92 lines

  1. //
  2. // Definition of the "Revolution" interface
  3. //
  4.  
  5. #include "revolutionRc.h"
  6.  
  7. ICON "icon.pbitm"
  8. SMALLICON "small-icon.pbitm"
  9. VERSION 1 "0.9"
  10.  
  11. MENU ID MainMenuBar
  12. BEGIN
  13.     PULLDOWN "Edition"
  14.     BEGIN
  15.     MENUITEM "Copier" CopyMenu "c"
  16.         MENUITEM "A propos: Revolution" AboutMenu "a"
  17.     END
  18. END
  19.  
  20. FORM MainForm 0 0 160 160
  21. USABLE
  22. NOFRAME
  23. MENUID MainMenuBar
  24. BEGIN
  25.     TITLE "Revolution"
  26.  
  27.     LABEL "AnnΘe:" AUTOID  AT (2 20)
  28.  
  29.     PUSHBUTTON "1" ID Y1PushButton AT (54 20 12 12) GROUP YGroup
  30.     PUSHBUTTON "2" ID Y2PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP YGroup
  31.     PUSHBUTTON "3" ID Y3PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP YGroup
  32.     PUSHBUTTON "4" ID Y4PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP YGroup
  33.     PUSHBUTTON "5" ID Y5PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP YGroup
  34.     PUSHBUTTON "6" ID Y6PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP YGroup
  35.     PUSHBUTTON "7" ID Y7PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP YGroup
  36.  
  37.     BUTTON "\003" ForwardButton AT(145 19 12 13) FONT 4 NOFRAME
  38.  
  39.  
  40.     PUSHBUTTON "8" ID Y8PushButton AT (54 20 12 12) NONUSABLE GROUP YGroup
  41.     PUSHBUTTON "9" ID Y9PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) NONUSABLE GROUP YGroup
  42.     PUSHBUTTON "10" ID Y10PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) NONUSABLE GROUP YGroup
  43.     PUSHBUTTON "11" ID Y11PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) NONUSABLE GROUP YGroup
  44.     PUSHBUTTON "12" ID Y12PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) NONUSABLE GROUP YGroup
  45.     PUSHBUTTON "13" ID Y13PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) NONUSABLE GROUP YGroup
  46.     PUSHBUTTON "14" ID Y14PushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) NONUSABLE GROUP YGroup
  47.  
  48.     BUTTON "\002" BackwardButton AT (41 19 12 13) NONUSABLE FONT 4 NOFRAME
  49.  
  50.  
  51.     LABEL "Mois:" AUTOID  AT (2 72)
  52.  
  53.     PUSHBUTTON "Vend" ID MVendPushButton AT (5 42 24 12) GROUP MGroup
  54.     PUSHBUTTON "Brum" ID MBrumPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  55.     PUSHBUTTON "Frim" ID MFrimPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  56.     PUSHBUTTON "Nivo" ID MNivoPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  57.     PUSHBUTTON "Pluv" ID MPluvPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  58.     PUSHBUTTON "Vent" ID MVentPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  59.  
  60.     PUSHBUTTON "Germ" ID MGermPushButton AT (5 56 24 12) GROUP MGroup
  61.     PUSHBUTTON "Flor" ID MFlorPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  62.     PUSHBUTTON "Prai" ID MPraiPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  63.     PUSHBUTTON "Mess" ID MMessPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  64.     PUSHBUTTON "Ther" ID MTherPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  65.     PUSHBUTTON "Fruc" ID MFrucPushButton AT (PrevRight+1 PrevTop PrevWidth PrevHeight) GROUP MGroup
  66.  
  67.     PUSHBUTTON "Jours complΘm." ID JoursComplPushButton AT (92 70 62 12) GROUP MGroup
  68.  
  69.  
  70.     LABEL "GrΘgorien:" AUTOID  AT (21 144)
  71.  
  72.     FIELD GregorianDateField  AT (72 144 50 13) NONEDITABLE UNDERLINED SINGLELINE MAXCHARS 20
  73. END
  74.  
  75. ALERT ID RomIncompatibleAlert
  76. ERROR
  77. BEGIN
  78.     TITLE "ROM Incompatible"
  79.     MESSAGE "Ce programme ne fonctionne qu'avec Palm OS 2.0 ou postΘrieur. DΘsolΘ."
  80.     BUTTONS "OK"
  81. END
  82.  
  83. ALERT ID RevolutionHelpAlert
  84. INFORMATION
  85. BEGIN
  86.     TITLE "RΘvolution version 0.9"
  87.     MESSAGE "Calendrier RΘpublicain par B. Marchandise http://marchanb.free.fr\n"\
  88.             "DistribuΘ sous les termes de la License GPL 2.0 ou ultΘrieure"
  89.     BUTTONS "OK"
  90. END
  91.  
  92.