public ColorableItemFontsAndColorsPropertyNodeFactory(DTE2 dte, FontsAndColorsItems collection,
                                                       ColorableItems property)
 {
     _dte = dte;
     _collection = collection;
     _property = property;
 }
 void CreateFontsAndColorItems()
 {
     fakeHighlightingRules = new FakeCustomizedHighlightingRules();
     items = new FontsAndColorsItems(fakeHighlightingRules);
 }
예제 #3
0
	    private void ExtractUIColorSettingsFromFontsAndColors(FontsAndColorsItems colors, UISettings settings)
	    {
	        ColorableItems item;
	        item = colors.Item("Error");
	        if (null == item)
	        {
	            item = colors.Item("Compiler Error");
	        }
	        settings.ErrorForegroundColor = GetConsoleColor(item.Foreground, settings.ErrorForegroundColor);
	        settings.ErrorBackgroundColor = GetConsoleColor(item.Background, settings.ErrorBackgroundColor);

	        item = colors.Item("Warning");
	        if (null == item)
	        {
	            item = colors.Item("Compiler Warning");
	        }
	        settings.WarningForegroundColor = GetConsoleColor(item.Foreground, settings.WarningForegroundColor);
	        settings.WarningBackgroundColor = GetConsoleColor(item.Background, settings.WarningBackgroundColor);

	        item = colors.Item("String");
	        settings.DebugForegroundColor = GetConsoleColor(item.Foreground, settings.DebugForegroundColor);
	        settings.DebugBackgroundColor = GetConsoleColor(item.Background, settings.DebugBackgroundColor);

	        item = colors.Item("Comment");
	        settings.VerboseForegroundColor = GetConsoleColor(item.Foreground, settings.VerboseForegroundColor);
	        settings.VerboseBackgroundColor = GetConsoleColor(item.Background, settings.VerboseBackgroundColor);
	    }
예제 #4
0
 public FontsAndColorsPropertyNodeFactory(DTE2 dte, FontsAndColorsItems property)
 {
     _dte      = dte;
     _property = property;
 }
        private void OpenOptionsDialogue()
        {
            FontsAndColorsItems faci = ColUtils.GetTextEditorFontAndColorsItems(IDEUtils.DTE);
            Color back = ColUtils.GetBackgroundColourOf(faci, "Plain Text");

            ColorChip colChip_Options = new ColorChip();

            colChip_Options.Name  = "Colours_Options";
            colChip_Options.Color = ColUtils.ConvertToMediaColor(ColUtils.IsLightTheme(back) ? Settings.Default.OptionColorLight : Settings.Default.OptionColorDark);
            prevOptionColour      = colChip_Options.Color;
            Label colChipLabel_Options = new Label();

            colChipLabel_Options.Content    = "Options";
            colChipLabel_Options.Foreground = new SolidColorBrush(ColUtils.GetForegroundColourOf(faci, "Plain Text"));
            DockPanel.SetDock(colChip_Options, Dock.Left);
            DockPanel.SetDock(colChipLabel_Options, Dock.Left);
            ColoursDock_Options.Children.Add(colChip_Options);
            ColoursDock_Options.Children.Add(colChipLabel_Options);

            ColorChip colChip_SubOptions = new ColorChip();

            colChip_SubOptions.Name  = "Colours_SubOptions";
            colChip_SubOptions.Color = ColUtils.ConvertToMediaColor(ColUtils.IsLightTheme(back) ? Settings.Default.SubOptionColorLight : Settings.Default.SubOptionColorDark);
            prevSubOptionColour      = colChip_SubOptions.Color;
            Label colChipLabel_SubOptions = new Label();

            colChipLabel_SubOptions.Content    = "Sub Options";
            colChipLabel_SubOptions.Foreground = new SolidColorBrush(ColUtils.GetForegroundColourOf(faci, "Plain Text"));
            DockPanel.SetDock(colChip_SubOptions, Dock.Left);
            DockPanel.SetDock(colChipLabel_SubOptions, Dock.Left);
            ColoursDock_SubOptions.Children.Add(colChip_SubOptions);
            ColoursDock_SubOptions.Children.Add(colChipLabel_SubOptions);

            ColorChip colChip_Arguments = new ColorChip();

            colChip_Arguments.Name  = "Colours_Arguments";
            colChip_Arguments.Color = ColUtils.ConvertToMediaColor(ColUtils.IsLightTheme(back) ? Settings.Default.ArgumentColorLight : Settings.Default.ArgumentColorDark);
            prevArgumentColour      = colChip_Arguments.Color;
            Label colChipLabel_Arguments = new Label();

            colChipLabel_Arguments.Content    = "Arguments";
            colChipLabel_Arguments.Foreground = new SolidColorBrush(ColUtils.GetForegroundColourOf(faci, "Plain Text"));
            DockPanel.SetDock(colChip_Arguments, Dock.Left);
            DockPanel.SetDock(colChipLabel_Arguments, Dock.Left);
            ColoursDock_Arguments.Children.Add(colChip_Arguments);
            ColoursDock_Arguments.Children.Add(colChipLabel_Arguments);

            ColorChip colChip_Digits = new ColorChip();

            colChip_Digits.Name  = "Colours_Digits";
            colChip_Digits.Color = ColUtils.ConvertToMediaColor(ColUtils.IsLightTheme(back) ? Settings.Default.DigitColorLight : Settings.Default.DigitColorDark);
            prevDigitColour      = colChip_Digits.Color;
            Label colChipLabel_Digits = new Label();

            colChipLabel_Digits.Content    = "Digits";
            colChipLabel_Digits.Foreground = new SolidColorBrush(ColUtils.GetForegroundColourOf(faci, "Plain Text"));
            DockPanel.SetDock(colChip_Digits, Dock.Left);
            DockPanel.SetDock(colChipLabel_Digits, Dock.Left);
            ColoursDock_Digits.Children.Add(colChip_Digits);
            ColoursDock_Digits.Children.Add(colChipLabel_Digits);

            ColorChip colChip_Strings = new ColorChip();

            colChip_Strings.Name  = "Colours_Strings";
            colChip_Strings.Color = ColUtils.ConvertToMediaColor(ColUtils.IsLightTheme(back) ? Settings.Default.StringColorLight : Settings.Default.StringColorDark);
            prevStringColour      = colChip_Strings.Color;
            Label colChipLabel_Strings = new Label();

            colChipLabel_Strings.Content    = "Strings";
            colChipLabel_Strings.Foreground = new SolidColorBrush(ColUtils.GetForegroundColourOf(faci, "Plain Text"));
            DockPanel.SetDock(colChip_Strings, Dock.Left);
            DockPanel.SetDock(colChipLabel_Strings, Dock.Left);
            ColoursDock_Strings.Children.Add(colChip_Strings);
            ColoursDock_Strings.Children.Add(colChipLabel_Strings);

            ColorPickerStandard colPicker = new ColorPickerStandard();

            colPicker.InitialColor          = colChip_Options.Color;
            colPicker.SelectedColor         = colChip_Options.Color;
            colPicker.SelectedColorChanged += colPicker_SelectedColorChanged;
            colPicker.Foreground            = new SolidColorBrush(ColUtils.GetForegroundColourOf(faci, "Plain Text"));
            ColourPanel.Children.Add(colPicker);

            Colours_Options.IsChecked = true;

            HistorySize.Text = Settings.Default.HistorySize.ToString(CultureInfo.CurrentCulture);

            prevFontName = Settings.Default.Font.Name;
            prevFontSize = Settings.Default.Font.SizeInPoints;

            FontCombo.ItemsSource  = Fonts.SystemFontFamilies.OrderBy(s => s.ToString());
            FontCombo.SelectedItem = Fonts.SystemFontFamilies.OrderBy(s => s.ToString()).First(s => s.Source == Settings.Default.Font.Name);

            FontSizeSlider.Value = Settings.Default.Font.SizeInPoints;
        }
        private void colPicker_SelectedColorChanged(object sender, ColorPicker.EventArgs <Color> e)
        {
            List <RadioButton> radios = new List <RadioButton>()
            {
                Colours_Options, Colours_SubOptions, Colours_Arguments, Colours_Digits, Colours_Strings
            };

            RadioButton rad = radios.First(c => c.IsChecked == true);

            ((DockPanel)rad.Content).Children.OfType <ColorChip>().First().Color = e.Value;

            System.Drawing.Color col = ColUtils.ConvertToDrawingColor(e.Value);

            FontsAndColorsItems faci = ColUtils.GetTextEditorFontAndColorsItems(IDEUtils.DTE);
            Color back = ColUtils.GetBackgroundColourOf(faci, "Plain Text");

            if (ColUtils.IsLightTheme(back))
            {
                if (rad == Colours_Options)
                {
                    Settings.Default.OptionColorLight = col;
                }
                else if (rad == Colours_SubOptions)
                {
                    Settings.Default.SubOptionColorLight = col;
                }
                else if (rad == Colours_Arguments)
                {
                    Settings.Default.ArgumentColorLight = col;
                }
                else if (rad == Colours_Digits)
                {
                    Settings.Default.DigitColorLight = col;
                }
                else if (rad == Colours_Strings)
                {
                    Settings.Default.StringColorLight = col;
                }
            }
            else
            {
                if (rad == Colours_Options)
                {
                    Settings.Default.OptionColorDark = col;
                }
                else if (rad == Colours_SubOptions)
                {
                    Settings.Default.SubOptionColorDark = col;
                }
                else if (rad == Colours_Arguments)
                {
                    Settings.Default.ArgumentColorDark = col;
                }
                else if (rad == Colours_Digits)
                {
                    Settings.Default.DigitColorDark = col;
                }
                else if (rad == Colours_Strings)
                {
                    Settings.Default.StringColorDark = col;
                }
            }
        }
예제 #7
0
        private void SetTextBoxProperties()
        {
            FontsAndColorsItems faci = ColUtils.GetTextEditorFontAndColorsItems(IDEUtils.DTE);
            Color back = ColUtils.GetBackgroundColourOf(faci, "Plain Text");

            CmdArgs.Background = new SolidColorBrush(back);

            if (ColUtils.IsLightTheme(back))
            {
                CmdArgs.SyntaxHighlighting = ResourceLoader.LoadHighlightingDefinition("Resources.CmdArgs-light.xshd");
            }
            else
            {
                CmdArgs.SyntaxHighlighting = ResourceLoader.LoadHighlightingDefinition("Resources.CmdArgs-dark.xshd");
            }

            Color digitColor;
            Color optionColor;
            Color subOptionColor;
            Color stringColor;
            Color argumentColor;

            if (ColUtils.IsLightTheme(back))
            {
                digitColor     = ColUtils.ConvertToMediaColor(Properties.Settings.Default.DigitColorLight);
                optionColor    = ColUtils.ConvertToMediaColor(Properties.Settings.Default.OptionColorLight);
                subOptionColor = ColUtils.ConvertToMediaColor(Properties.Settings.Default.SubOptionColorLight);
                stringColor    = ColUtils.ConvertToMediaColor(Properties.Settings.Default.StringColorLight);
                argumentColor  = ColUtils.ConvertToMediaColor(Properties.Settings.Default.ArgumentColorLight);
            }
            else
            {
                digitColor     = ColUtils.ConvertToMediaColor(Properties.Settings.Default.DigitColorDark);
                optionColor    = ColUtils.ConvertToMediaColor(Properties.Settings.Default.OptionColorDark);
                subOptionColor = ColUtils.ConvertToMediaColor(Properties.Settings.Default.SubOptionColorDark);
                stringColor    = ColUtils.ConvertToMediaColor(Properties.Settings.Default.StringColorDark);
                argumentColor  = ColUtils.ConvertToMediaColor(Properties.Settings.Default.ArgumentColorDark);
            }
            foreach (HighlightingColor hColor in CmdArgs.SyntaxHighlighting.NamedHighlightingColors)
            {
                switch (hColor.Name)
                {
                case "Digits":
                    hColor.Foreground = new SimpleHighlightingBrush(digitColor);
                    break;

                case "Option":
                    hColor.Foreground = new SimpleHighlightingBrush(optionColor);
                    break;

                case "SubOption":
                    hColor.Foreground = new SimpleHighlightingBrush(subOptionColor);
                    break;

                case "String":
                    hColor.Foreground = new SimpleHighlightingBrush(stringColor);
                    break;
                }
            }
            CmdArgs.Foreground = new SolidColorBrush(argumentColor);

            CmdArgs.FontSize   = Properties.Settings.Default.Font.SizeInPoints * (96.0 / 72.0);
            CmdArgs.FontFamily = new FontFamily(Properties.Settings.Default.Font.Name);
        }
 public FontsAndColorsPropertyNodeFactory(DTE2 dte, FontsAndColorsItems property)
 {
     _dte = dte;
     _property = property;
 }