Diff for /Amaya/amaya/HTML.S between versions 1.221 and 1.222

version 1.221, 2006/06/30 13:03:14 version 1.222, 2006/07/05 12:25:19
Line 125  STRUCT Line 125  STRUCT
                   IntHeightPercent = Integer; IntHeightPxl = Integer;                    IntHeightPercent = Integer; IntHeightPxl = Integer;
                   USEMAP = Text; ISAMAP = Yes_;                    USEMAP = Text; ISAMAP = Yes_;
                 { usemap         ismap }                  { usemap         ismap }
                  IsInput = Yes_;    NAME = Text;  
                 { input type=IMAGE  name }  
                   Alignment = Top_, Middle_, Bottom_, Left_, Right_;                    Alignment = Top_, Middle_, Bottom_, Left_, Right_;
                 { align       top   middle   bottom   left   right }                  { align       top   middle   bottom   left   right }
                   Img_border = Integer;                    Img_border = Integer;
Line 180  STRUCT Line 178  STRUCT
                   IntHeightPercent; IntHeightPxl;                    IntHeightPercent; IntHeightPxl;
                   USEMAP; ISAMAP;                    USEMAP; ISAMAP;
                 { usemap  ismap }                  { usemap  ismap }
                  IsInput;    NAME;                    NAME = Text;
                 { input type=IMAGE  name }                  { name }
                   Alignment;                    Alignment;
                 { align   top   middle   bottom   left   right }                  { align   top   middle   bottom   left   right }
                   Img_border;                    Img_border;
Line 547  STRUCT Line 545  STRUCT
   
   Input = CASE OF                                       { formctrl }    Input = CASE OF                                       { formctrl }
     Text_Input                                  { INPUT / TEXT }      Text_Input                                  { INPUT / TEXT }
            (ATTR  NAME; Value_; disabled; readonly;             (ATTR  type = Text;
           { name  value   disabled  readonly }              NAME; Value_; disabled; readonly;
             { type name  value   disabled  readonly }
                   Area_Size = Integer; MaxLength = Integer;                    Area_Size = Integer; MaxLength = Integer;
                 { size                 maxlength }                  { size                 maxlength }
                   IntAreaSize = Integer;                    IntAreaSize = Integer;
Line 557  STRUCT Line 556  STRUCT
                   onfocus; onblur; onselect; onchange;                    onfocus; onblur; onselect; onchange;
                 { onfocus  onblur  onselect  onchange }                  { onfocus  onblur  onselect  onchange }
                   Default_Value) =                    Default_Value) =
                 Input_Text - (Input);                  Input_Text - (Input) with type = 'text';
   
     Password_Input                                      { INPUT / PASSWORD }      Password_Input                                      { INPUT / PASSWORD }
            (ATTR  NAME; Value_; disabled; readonly; ALT;             (ATTR  type; NAME; Value_; disabled; readonly; ALT;
                 { name  value   disabled  readonly alt}                  { type name  value   disabled  readonly alt}
                   Area_Size; IntAreaSize; MaxLength;                    Area_Size; IntAreaSize; MaxLength;
                 { size                    maxlength }                  { size                    maxlength }
                   tabindex; accesskey;                    tabindex; accesskey;
Line 569  STRUCT Line 568  STRUCT
                   onfocus; onblur; onselect; onchange;                    onfocus; onblur; onselect; onchange;
                 { onfocus  onblur  onselect  onchange }                  { onfocus  onblur  onselect  onchange }
                   Default_Value) =                    Default_Value) =
                 Input_Text  - (Input);                  Input_Text  - (Input) with type = 'password';
   
     File_Input                                  { INPUT / FILE }      File_Input                                  { INPUT / FILE }
            (ATTR  NAME; Value_; disabled; readonly; ALT;             (ATTR  type; NAME; Value_; disabled; readonly; ALT;
                 { name  value   disabled  readonly alt }                  { type name  value   disabled  readonly alt }
                   Area_Size; IntAreaSize; MaxLength;                    Area_Size; IntAreaSize; MaxLength;
                 { size                    maxlength }                  { size                    maxlength }
                   tabindex; accesskey;                    tabindex; accesskey;
Line 581  STRUCT Line 580  STRUCT
                   onfocus; onblur; accept = Text;                    onfocus; onblur; accept = Text;
                 { onfocus  onblur }                  { onfocus  onblur }
                   Default_Value) =                    Default_Value) =
                 Input_Text - (Input);                  Input_Text - (Input) with type = 'file';
   
     Checkbox_Input                                      { INPUT / CHECKBOX }      Checkbox_Input                                      { INPUT / CHECKBOX }
            (ATTR  NAME; Value_; Checked = Yes_, No_; ALT;             (ATTR  type; NAME; Value_; Checked = Yes_, No_; ALT;
                 { name  value   checked alt }                  { type name  value   checked alt }
                   disabled; readonly;                    disabled; readonly;
                 { disabled  readonly }                  { disabled  readonly }
                   tabindex; accesskey; onfocus; onblur;                    tabindex; accesskey; onfocus; onblur;
                 { tabindex  accesskey  onfocus  onblur }                  { tabindex  accesskey  onfocus  onblur }
                   DefaultChecked = Yes_, No_) =                    DefaultChecked = Yes_, No_) =
                 CONSTANT C_Empty with Checked ?= No_;                  CONSTANT C_Empty with Checked ?= No_, type = 'checkbox';
   
       Image_Input                                 { INPUT / IMAGE }
              (ATTR  type; NAME; Value_; !SRC; ALT;
                   { type name  value src alt }
                     Area_Size; IntWidthPxl;
                   { size }
                     USEMAP; ISAMAP;
                   { usemap  ismap }
                     disabled; readonly; tabindex; accesskey;
                   { disabled  readonly  tabindex  accesskey }
                     onfocus; onblur;) =
                   { onfocus  onblur }
                   BEGIN
         PICTURE;
                   END with NAME ?= 'radio', type = 'image';
   
     Radio_Input                                 { INPUT / RADIO }      Radio_Input                                 { INPUT / RADIO }
            (ATTR  NAME; Value_; Checked; disabled; ALT;             (ATTR  type; NAME; Value_; Checked; ALT;
                 { name  value   checked  disabled alt }                  { type name  value   checked  disabled alt }
                   readonly; tabindex; accesskey;                    disabled; readonly; tabindex; accesskey;
                 { readonly  tabindex  accesskey }                  { disabled  readonly  tabindex  accesskey }
                   onfocus; onblur;                    onfocus; onblur;
                 { onfocus  onblur }                  { onfocus  onblur }
                   DefaultChecked) =                    DefaultChecked) =
                 CONSTANT C_Empty with Checked ?= No_,                  CONSTANT C_Empty with Checked ?= No_, NAME ?= 'radio', type = 'radio';
                                       NAME ?= 'radio';  
   
     Submit_Input                                        { INPUT / SUBMIT }      Submit_Input                                        { INPUT / SUBMIT }
            (ATTR  NAME; Value_; disabled; readonly; ALT;             (ATTR  type; NAME; Value_; disabled; readonly; ALT;
                 { name  value   disabled; readonly alt }                  { type name  value   disabled; readonly alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
                 { onfocus  onblur }                  { onfocus  onblur }
     BEGIN      BEGIN
     CONSTANT C_Empty;      CONSTANT C_Empty;
     END with Value_ ?= 'Submit';      END with Value_ ?= 'Submit', type = 'submit';
   
     Reset_Input                                 { INPUT / RESET }      Reset_Input                                 { INPUT / RESET }
            (ATTR  NAME; Value_; disabled; readonly; ALT;             (ATTR  type; NAME; Value_; disabled; readonly; ALT;
                 { name  value   disabled  readonly alt }                  { type name  value   disabled  readonly alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
                 { onfocus  onblur }                  { onfocus  onblur }
                 BEGIN                  BEGIN
                 CONSTANT C_Empty;                  CONSTANT C_Empty;
                 END  - (Input) with NAME ?= 'Reset',                  END  - (Input) with NAME ?= 'Reset', Value_ ?= 'Reset', type = 'reset';
                                     Value_ ?= 'Reset';  
   
     Button_Input                                        { INPUT / BUTTON }      Button_Input                                        { INPUT / BUTTON }
            (ATTR  NAME; Value_; disabled; readonly; ALT;             (ATTR  type; NAME; Value_; disabled; readonly; ALT;
                 { name  value   disabled  readonly alt }                  { type name  value   disabled  readonly alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
                 { onfocus  onblur }                  { onfocus  onblur }
                 BEGIN                  BEGIN
                 CONSTANT C_Empty;                  CONSTANT C_Empty;
                 END;                  END with type = 'button';
   
     Hidden_Input                                        { INPUT / HIDDEN }      Hidden_Input                                        { INPUT / HIDDEN }
            (ATTR  NAME; Value_; disabled; ALT;             (ATTR  type; NAME; Value_; disabled; ALT;
                 { name  value   disabled alt }                  { type name  value   disabled alt }
                   tabindex; accesskey;                    tabindex; accesskey;
                 { tabindex  accesskey }                  { tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
                 { onfocus  onblur }                  { onfocus  onblur }
                 CONSTANT C_Empty;                  CONSTANT C_Empty with type = 'hidden';
   
     BUTTON_                                             { BUTTON }      BUTTON_                                             { BUTTON }
            (ATTR  NAME; Value_;             (ATTR  NAME; Value_;
                 { name  value }                  { name  value }
                   Button_type = button, submit, reset;                    Button_type = button, submit, reset;
                 { type          button  submit  reset }                  { button  submit  reset }
                   disabled; tabindex; accesskey;                    disabled; tabindex; accesskey;
                 { disabled  tabindex  accesskey }                  { disabled  tabindex  accesskey }
                   onfocus; onblur) =                    onfocus; onblur) =
Line 921  EXCEPT Line 933  EXCEPT
         Term:           ParagraphBreak;          Term:           ParagraphBreak;
         MAP:            IsDraw, IsMap;          MAP:            IsDraw, IsMap;
   IMG:    IsImg;    IMG:    IsImg;
     Image_Input: IsImg;
         AREA:           MoveResize, ClickableSurface, HighlightChildren;          AREA:           MoveResize, ClickableSurface, HighlightChildren;
   Anchor: ClickableSurface;    Anchor: ClickableSurface;
         Password_Input: Shadow;          Password_Input: Shadow;
Line 942  EXCEPT Line 955  EXCEPT
         IntSizeIncr:    Invisible;          IntSizeIncr:    Invisible;
         IntSizeDecr:    Invisible;          IntSizeDecr:    Invisible;
         IntSizeRel:     Invisible;          IntSizeRel:     Invisible;
         IsInput:        Invisible;  
         x_coord:        Invisible, NewHPos;          x_coord:        Invisible, NewHPos;
         y_coord:        Invisible, NewVPos;          y_coord:        Invisible, NewVPos;
         Ref_IMG:        Invisible;          Ref_IMG:        Invisible;

Removed from v.1.221  
changed lines
  Added in v.1.222


Webmaster