Ejemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 public MgColor()
 {
     Alpha         = 255;
     Blue          = 0;
     Green         = 0;
     Red           = 0;
     IsTransparent = false;
     IsSystemColor = false;
     SystemColor   = MagicSystemColor.Undefined;
 }
Ejemplo n.º 2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="alpha"></param>
        /// <param name="red"></param>
        /// <param name="green"></param>
        /// <param name="blue"></param>
        /// <param name="magicSystemColor"></param>
        /// <param name="isTransparent"></param>
        public MgColor(int alpha, int red, int green, int blue, MagicSystemColor magicSystemColor, bool isTransparent)
        {
            Alpha         = alpha;
            Red           = red;
            Green         = green;
            Blue          = blue;
            SystemColor   = magicSystemColor;
            IsTransparent = isTransparent;

            IsSystemColor = (SystemColor != MagicSystemColor.Undefined);
        }
Ejemplo n.º 3
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="colorStr"></param>
        public MgColor(String colorStr)
        {
            SystemColor = MagicSystemColor.Undefined;

            // check if it is a system color
            if (colorStr.StartsWith("FF"))
            {
                String subStr = colorStr.Substring(0, 8);
                int    res    = -hexToInt(subStr);

                // sometimes values of colors in magic color table are corrupted
                if (Enum.IsDefined(SystemColor.GetType(), res))
                {
                    SystemColor = (MagicSystemColor)res;
                }

                IsSystemColor = (SystemColor != MagicSystemColor.Undefined);

                // initialize the rest of the final members
                Red   = 0;
                Green = 0;
                Blue  = 0;
                Alpha = 255;
            }
            else
            {
                Alpha = 255 - Convert.ToInt32(colorStr.Substring(0, (2) - (0)), 16);
                Blue  = Convert.ToInt32(colorStr.Substring(2, (4) - (2)), 16);
                Green = Convert.ToInt32(colorStr.Substring(4, (6) - (4)), 16);
                Red   = Convert.ToInt32(colorStr.Substring(6, (8) - (6)), 16);

                // initialize the rest of the final members
                IsSystemColor = false;
            }
            IsTransparent = colorStr[8] == 'Y';
        }