Exemplo n.º 1
0
 protected bool Equals(MorphDataPropMask other)
 {
     return(HasVariousPropertyBits == other.HasVariousPropertyBits && HasBackColor == other.HasBackColor && HasForeColor == other.HasForeColor &&
            HasMaxLength == other.HasMaxLength && HasBorderStyle == other.HasBorderStyle && HasScrollBars == other.HasScrollBars &&
            HasDisplayStyle == other.HasDisplayStyle && HasMousePointer == other.HasMousePointer && HasSize == other.HasSize &&
            HasPasswordChar == other.HasPasswordChar && HasListWidth == other.HasListWidth && HasBoundColumn == other.HasBoundColumn &&
            HasTextColumn == other.HasTextColumn && HasColumnCount == other.HasColumnCount && HasListRows == other.HasListRows &&
            HasColumnInfoCount == other.HasColumnInfoCount && HasMatchEntry == other.HasMatchEntry && HasListStyle == other.HasListStyle &&
            HasShowDropDownWhen == other.HasShowDropDownWhen && HasDropButtonStyle == other.HasDropButtonStyle && HasMultiSelect == other.HasMultiSelect &&
            HasValue == other.HasValue && HasCaption == other.HasCaption && HasPicturePosition == other.HasPicturePosition &&
            HasBorderColor == other.HasBorderColor && HasSpecialEffect == other.HasSpecialEffect && HasMouseIcon == other.HasMouseIcon &&
            HasPicture == other.HasPicture && HasAccelerator == other.HasAccelerator && HasGroupName == other.HasGroupName);
 }
Exemplo n.º 2
0
        public MorphDataControl(byte[] b)
        {
            using (var st = new MemoryStream(b))
                using (var r = new FrxReader(st))
                {
                    MinorVersion = r.ReadByte();
                    MajorVersion = r.ReadByte();

                    var cbMorphData = r.ReadUInt16();
                    PropMask = new MorphDataPropMask(r.ReadUInt64());

                    // DataBlock
                    VariousPropertyBits = PropMask.HasVariousPropertyBits ? r.ReadUInt32() : 0;
                    BackColor           = PropMask.HasBackColor ? r.ReadOleColor() : null;
                    ForeColor           = PropMask.HasForeColor ? r.ReadOleColor() : null;
                    MaxLength           = PropMask.HasMaxLength ? r.ReadUInt32() : 0;
                    BorderStyle         = PropMask.HasBorderStyle ? r.ReadBorderStyle() : BorderStyle.None;
                    ScrollBars          = new FormScrollBarFlags(PropMask.HasScrollBars ? r.ReadByte() : (byte)0);
                    DisplayStyle        = PropMask.HasDisplayStyle ? r.ReadByte() : (byte)0;
                    MousePointer        = PropMask.HasMousePointer ? r.ReadMousePointer() : MousePointer.Default;
                    PasswordChar        = PropMask.HasPasswordChar ? r.ReadWChar() : "";
                    ListWidth           = PropMask.HasListWidth ? r.ReadUInt32() : 0;
                    BoundColumn         = PropMask.HasBoundColumn ? r.ReadUInt16() : (ushort)0;
                    TextColumn          = PropMask.HasTextColumn ? r.ReadInt16() : (short)0;
                    ColumnCount         = PropMask.HasColumnCount ? r.ReadInt16() : (short)0;
                    ListRows            = PropMask.HasListRows ? r.ReadUInt16() : (ushort)0;
                    ColumnInfoCount     = PropMask.HasColumnInfoCount ? r.ReadUInt16() : (ushort)0;
                    MatchEntry          = PropMask.HasMatchEntry ? r.ReadByte() : (byte)0;
                    ListStyle           = PropMask.HasListStyle ? r.ReadByte() : (byte)0;
                    ShowDropButtonWhen  = PropMask.HasShowDropDownWhen ? r.ReadByte() : (byte)0;
                    DropButtonStyle     = PropMask.HasDropButtonStyle ? r.ReadByte() : (byte)0;
                    MultiSelect         = PropMask.HasMultiSelect ? r.ReadByte() : (byte)0;
                    var valueCcb   = PropMask.HasValue ? r.ReadCcb() : Tuple.Create(0, false);
                    var captionCcb = PropMask.HasCaption ? r.ReadCcb() : Tuple.Create(0, false);
                    PicturePosition = PropMask.HasPicturePosition ? r.ReadPicturePosition() : PicturePosition.RightTop;
                    BorderColor     = PropMask.HasBorderColor ? r.ReadOleColor() : null;
                    SpecialEffect   = PropMask.HasSpecialEffect ? r.ReadSpecialEffect4() : SpecialEffect.Flat;
                    if (PropMask.HasMouseIcon)
                    {
                        r.Skip2Bytes();
                    }

                    if (PropMask.HasPicture)
                    {
                        r.Skip2Bytes();
                    }

                    Accelerator = PropMask.HasAccelerator ? r.ReadWChar() : "";
                    var groupNameCcb = PropMask.HasGroupName ? r.ReadCcb() : Tuple.Create(0, false);

                    // ExtraDataBlock
                    Size      = PropMask.HasSize ? r.ReadCoords() : Tuple.Create(0, 0);
                    Value     = r.ReadStringFromCcb(valueCcb);
                    Caption   = r.ReadStringFromCcb(captionCcb);
                    GroupName = r.ReadStringFromCcb(groupNameCcb);

                    r.AlignTo(4);
                    if (cbMorphData != r.BaseStream.Position - 4)
                    {
                        throw new ApplicationException(string.Format(VBASyncResources.ErrorFrxStreamSizeMismatch,
                                                                     "o", "cbMorphData", r.BaseStream.Position - 4, cbMorphData));
                    }

                    // StreamData
                    MouseIcon = PropMask.HasMouseIcon ? r.ReadGuidAndPicture() : new byte[0];
                    Picture   = PropMask.HasPicture ? r.ReadGuidAndPicture() : new byte[0];

                    TextProps = r.ReadTextProps();

                    Remainder = st.Position < st.Length ? r.Unaligned.ReadBytes((int)(st.Length - st.Position)) : new byte[0];
                }
        }