Пример #1
0
        public override NSColor GetNamedColor(string name)
        {
            switch (name)
            {
            case Checkerboard0Color:
                return(Styles.PropertyPad.Checkerboard0);

            case Checkerboard1Color:
                return(Styles.PropertyPad.Checkerboard1);

            case DescriptionLabelColor:
                return(NSColor.SecondaryLabelColor);

            case ForegroundColor:
                return((HslColor)Ide.Gui.Styles.BaseForegroundColor);

            case PadBackgroundColor:
                return((HslColor)Ide.Gui.Styles.PadBackground);

            case PanelTabBackground:
                return(Styles.PropertyPad.PanelTabBackground);

            case TabBorderColor:
                return(Styles.PropertyPad.TabBorderColor);

            case ValueBlockBackgroundColor:
                return(Styles.PropertyPad.ValueBlockBackgroundColor);

            case FrameBoxButtonBackgroundColor:
                return(Styles.PropertyPad.FrameBoxButtonBackgroundColor);
            }
            return(NSColor.FromName(name));
        }
Пример #2
0
            public Color GetNamedColor(string name)
            {
#if __IOS__
                UIColor resultColor = null;

                // If not iOS 13, but 11+ we can only get the named colors
                if (!IsiOS13OrNewer && IsiOS11OrNewer)
                {
                    return((resultColor = UIColor.FromName(name)) == null ? Color.Default : resultColor.ToColor());
                }

                // If iOS 13+ check all dynamic colors too
                switch (name)
                {
                case NamedPlatformColor.Label:
                    resultColor = UIColor.LabelColor;
                    break;

                case NamedPlatformColor.Link:
                    resultColor = UIColor.LinkColor;
                    break;

                case NamedPlatformColor.OpaqueSeparator:
                    resultColor = UIColor.OpaqueSeparatorColor;
                    break;

                case NamedPlatformColor.PlaceholderText:
                    resultColor = UIColor.PlaceholderTextColor;
                    break;

                case NamedPlatformColor.QuaternaryLabel:
                    resultColor = UIColor.QuaternaryLabelColor;
                    break;

                case NamedPlatformColor.SecondaryLabel:
                    resultColor = UIColor.SecondaryLabelColor;
                    break;

                case NamedPlatformColor.Separator:
                    resultColor = UIColor.SeparatorColor;
                    break;

                case NamedPlatformColor.SystemBlue:
                    resultColor = UIColor.SystemBlueColor;
                    break;

                case NamedPlatformColor.SystemGray:
                    resultColor = UIColor.SystemGrayColor;
                    break;

                case NamedPlatformColor.SystemGray2:
                    resultColor = UIColor.SystemGray2Color;
                    break;

                case NamedPlatformColor.SystemGray3:
                    resultColor = UIColor.SystemGray3Color;
                    break;

                case NamedPlatformColor.SystemGray4:
                    resultColor = UIColor.SystemGray4Color;
                    break;

                case NamedPlatformColor.SystemGray5:
                    resultColor = UIColor.SystemGray5Color;
                    break;

                case NamedPlatformColor.SystemGray6:
                    resultColor = UIColor.SystemGray6Color;
                    break;

                case NamedPlatformColor.SystemGreen:
                    resultColor = UIColor.SystemGreenColor;
                    break;

                case NamedPlatformColor.SystemIndigo:
                    resultColor = UIColor.SystemIndigoColor;
                    break;

                case NamedPlatformColor.SystemOrange:
                    resultColor = UIColor.SystemOrangeColor;
                    break;

                case NamedPlatformColor.SystemPink:
                    resultColor = UIColor.SystemPinkColor;
                    break;

                case NamedPlatformColor.SystemPurple:
                    resultColor = UIColor.SystemPurpleColor;
                    break;

                case NamedPlatformColor.SystemRed:
                    resultColor = UIColor.SystemRedColor;
                    break;

                case NamedPlatformColor.SystemTeal:
                    resultColor = UIColor.SystemTealColor;
                    break;

                case NamedPlatformColor.SystemYellow:
                    resultColor = UIColor.SystemYellowColor;
                    break;

                case NamedPlatformColor.TertiaryLabel:
                    resultColor = UIColor.TertiaryLabelColor;
                    break;

                default:
                    resultColor = UIColor.FromName(name);
                    break;
                }

                if (resultColor == null)
                {
                    return(Color.Default);
                }

                return(resultColor.ToColor());
#elif __MACOS__
                NSColor resultColor = null;

                switch (name)
                {
                case NamedPlatformColor.AlternateSelectedControlTextColor:
                    resultColor = NSColor.AlternateSelectedControlText;
                    break;

                case NamedPlatformColor.ControlAccent:
                    if (IsMojaveOrNewer)
                    {
                        resultColor = NSColor.ControlAccentColor;
                    }
                    break;

                case NamedPlatformColor.ControlBackgroundColor:
                    resultColor = NSColor.ControlBackground;
                    break;

                case NamedPlatformColor.ControlColor:
                    resultColor = NSColor.Control;
                    break;

                case NamedPlatformColor.ControlTextColor:
                    resultColor = NSColor.ControlText;
                    break;

                case NamedPlatformColor.DisabledControlTextColor:
                    resultColor = NSColor.DisabledControlText;
                    break;

                case NamedPlatformColor.FindHighlightColor:
                    if (IsHighSierraOrNewer)
                    {
                        resultColor = NSColor.FindHighlightColor;
                    }
                    break;

                case NamedPlatformColor.GridColor:
                    resultColor = NSColor.Grid;
                    break;

                case NamedPlatformColor.HeaderTextColor:
                    resultColor = NSColor.HeaderText;
                    break;

                case NamedPlatformColor.HighlightColor:
                    resultColor = NSColor.Highlight;
                    break;

                case NamedPlatformColor.KeyboardFocusIndicatorColor:
                    resultColor = NSColor.KeyboardFocusIndicator;
                    break;

                case NamedPlatformColor.LabelColor:
                    resultColor = NSColor.LabelColor;
                    break;

                case NamedPlatformColor.LinkColor:
                    resultColor = NSColor.LinkColor;
                    break;

                case NamedPlatformColor.PlaceholderTextColor:
                    resultColor = NSColor.PlaceholderTextColor;
                    break;

                case NamedPlatformColor.QuaternaryLabelColor:
                    resultColor = NSColor.QuaternaryLabelColor;
                    break;

                case NamedPlatformColor.SecondaryLabelColor:
                    resultColor = NSColor.SecondaryLabelColor;
                    break;

                case NamedPlatformColor.SelectedContentBackgroundColor:
                    resultColor = NSColor.SelectedContentBackgroundColor;
                    break;

                case NamedPlatformColor.SelectedControlColor:
                    resultColor = NSColor.SelectedControl;
                    break;

                case NamedPlatformColor.SelectedControlTextColor:
                    resultColor = NSColor.SelectedControlText;
                    break;

                case NamedPlatformColor.SelectedMenuItemTextColor:
                    resultColor = NSColor.SelectedMenuItemText;
                    break;

                case NamedPlatformColor.SelectedTextBackgroundColor:
                    resultColor = NSColor.SelectedTextBackground;
                    break;

                case NamedPlatformColor.SelectedTextColor:
                    resultColor = NSColor.SelectedText;
                    break;

                case NamedPlatformColor.SeparatorColor:
                    resultColor = NSColor.SeparatorColor;
                    break;

                case NamedPlatformColor.ShadowColor:
                    resultColor = NSColor.Shadow;
                    break;

                case NamedPlatformColor.TertiaryLabelColor:
                    resultColor = NSColor.TertiaryLabelColor;
                    break;

                case NamedPlatformColor.TextBackgroundColor:
                    resultColor = NSColor.TextBackground;
                    break;

                case NamedPlatformColor.TextColor:
                    resultColor = NSColor.Text;
                    break;

                case NamedPlatformColor.UnderPageBackgroundColor:
                    resultColor = NSColor.UnderPageBackgroundColor;
                    break;

                case NamedPlatformColor.UnemphasizedSelectedContentBackgroundColor:
                    if (IsMojaveOrNewer)
                    {
                        resultColor = NSColor.UnemphasizedSelectedContentBackgroundColor;
                    }
                    break;

                case NamedPlatformColor.UnemphasizedSelectedTextBackgroundColor:
                    if (IsMojaveOrNewer)
                    {
                        resultColor = NSColor.UnemphasizedSelectedTextBackgroundColor;
                    }
                    break;

                case NamedPlatformColor.UnemphasizedSelectedTextColor:
                    if (IsMojaveOrNewer)
                    {
                        resultColor = NSColor.UnemphasizedSelectedTextColor;
                    }
                    break;

                case NamedPlatformColor.WindowBackgroundColor:
                    resultColor = NSColor.WindowBackground;
                    break;

                case NamedPlatformColor.WindowFrameTextColor:
                    resultColor = NSColor.WindowFrameText;
                    break;

                case NamedPlatformColor.Label:
                    resultColor = NSColor.LabelColor;
                    break;

                case NamedPlatformColor.Link:
                    resultColor = NSColor.LinkColor;
                    break;

                case NamedPlatformColor.PlaceholderText:
                    resultColor = NSColor.PlaceholderTextColor;
                    break;

                case NamedPlatformColor.QuaternaryLabel:
                    resultColor = NSColor.QuaternaryLabelColor;
                    break;

                case NamedPlatformColor.SecondaryLabel:
                    resultColor = NSColor.SecondaryLabelColor;
                    break;

                case NamedPlatformColor.Separator:
                    if (IsMojaveOrNewer)
                    {
                        resultColor = NSColor.SeparatorColor;
                    }
                    break;

                case NamedPlatformColor.SystemBlue:
                    resultColor = NSColor.SystemBlueColor;
                    break;

                case NamedPlatformColor.SystemGray:
                    resultColor = NSColor.SystemGrayColor;
                    break;

                case NamedPlatformColor.SystemGreen:
                    resultColor = NSColor.SystemGreenColor;
                    break;

                case NamedPlatformColor.SystemIndigo:
                    resultColor = NSColor.SystemIndigoColor;
                    break;

                case NamedPlatformColor.SystemOrange:
                    resultColor = NSColor.SystemOrangeColor;
                    break;

                case NamedPlatformColor.SystemPink:
                    resultColor = NSColor.SystemPinkColor;
                    break;

                case NamedPlatformColor.SystemPurple:
                    resultColor = NSColor.SystemPurpleColor;
                    break;

                case NamedPlatformColor.SystemRed:
                    resultColor = NSColor.SystemRedColor;
                    break;

                case NamedPlatformColor.SystemTeal:
                    resultColor = NSColor.SystemTealColor;
                    break;

                case NamedPlatformColor.SystemYellow:
                    resultColor = NSColor.SystemYellowColor;
                    break;

                case NamedPlatformColor.TertiaryLabel:
                    resultColor = NSColor.TertiaryLabelColor;
                    break;

                default:
                    resultColor = NSColor.FromName(name);
                    break;
                }

                if (resultColor == null)
                {
                    return(Color.Default);
                }

                return(resultColor.ToColor(NSColorSpace.GenericRGBColorSpace));
#else
                return(Color.Default);
#endif
            }
Пример #3
0
 public virtual NSColor GetNamedColor(string name)
 {
     return(NSColor.FromName(name));
 }