예제 #1
0
        public DialogSubtitleStyle()
        {
            InitializeComponent();

            comboBoxMiscEncoding.Items.AddRange(StyleEncoding.getDefaultList().ToArray());
            comboBoxMiscEncoding.SelectedIndex = 1;

            style = new InfoStyle();
            updateGUI();
        }
예제 #2
0
        private void updateGUI()
        {
            this.fontDialog.Font                     = style.Font;
            this.panelColorPrimary.BackColor         = style.ColorPrimary;
            this.panelColorSecondary.BackColor       = style.ColorSecondary;
            this.panelColorOutline.BackColor         = style.ColorOutline;
            this.panelColorShadow.BackColor          = style.ColorShadow;
            this.numericUpDownOpacityPrimary.Value   = (decimal)style.OpacityPrimary;
            this.numericUpDownOpacitySecondary.Value = (decimal)style.OpacitySecondary;
            this.numericUpDownOpacityOutline.Value   = (decimal)style.OpacityOutline;
            this.numericUpDownOpacityShadow.Value    = (decimal)style.OpacityShadow;
            this.numericUpDownOutline.Value          = (decimal)style.Outline;
            this.numericUpDownShadow.Value           = (decimal)style.Shadow;
            this.checkBoxOpaqueBox.Checked           = style.OpaqueBox;

            this.radioButtonAlignment1.Checked = false;
            this.radioButtonAlignment2.Checked = false;
            this.radioButtonAlignment3.Checked = false;
            this.radioButtonAlignment4.Checked = false;
            this.radioButtonAlignment5.Checked = false;
            this.radioButtonAlignment6.Checked = false;
            this.radioButtonAlignment7.Checked = false;
            this.radioButtonAlignment8.Checked = false;
            this.radioButtonAlignment9.Checked = false;

            switch (style.Alignment)
            {
            case 1: this.radioButtonAlignment1.Checked = true; break;

            case 2: this.radioButtonAlignment2.Checked = true; break;

            case 3: this.radioButtonAlignment3.Checked = true; break;

            case 4: this.radioButtonAlignment4.Checked = true; break;

            case 5: this.radioButtonAlignment5.Checked = true; break;

            case 6: this.radioButtonAlignment6.Checked = true; break;

            case 7: this.radioButtonAlignment7.Checked = true; break;

            case 8: this.radioButtonAlignment8.Checked = true; break;

            case 9: this.radioButtonAlignment9.Checked = true; break;
            }

            this.numericUpDownMarginsLeft.Value     = (decimal)style.MarginLeft;
            this.numericUpDownMarginsRight.Value    = (decimal)style.MarginRight;
            this.numericUpDownMarginsVertical.Value = (decimal)style.MarginVertical;
            this.numericUpDownMiscScaleX.Value      = (decimal)style.ScaleX;
            this.numericUpDownMiscScaleY.Value      = (decimal)style.ScaleY;
            this.numericUpDownMiscRotation.Value    = (decimal)style.Rotation;
            this.numericUpDownMiscSpacing.Value     = (decimal)style.Spacing;

            for (int i = 0; i < StyleEncoding.getDefaultList().Count; i++)
            {
                if (comboBoxMiscEncoding.Items[i].ToString() == style.Encoding.ToString())
                {
                    comboBoxMiscEncoding.SelectedIndex = i;
                    break;
                }
            }

            updateFontPreview();
        }
예제 #3
0
        private void updateSettings()
        {
            style.Font             = this.fontDialog.Font;
            style.ColorPrimary     = this.panelColorPrimary.BackColor;
            style.ColorSecondary   = this.panelColorSecondary.BackColor;
            style.ColorOutline     = this.panelColorOutline.BackColor;
            style.ColorShadow      = this.panelColorShadow.BackColor;
            style.OpacityPrimary   = (int)this.numericUpDownOpacityPrimary.Value;
            style.OpacitySecondary = (int)this.numericUpDownOpacitySecondary.Value;
            style.OpacityOutline   = (int)this.numericUpDownOpacityOutline.Value;
            style.OpacityShadow    = (int)this.numericUpDownOpacityShadow.Value;
            style.Outline          = (int)this.numericUpDownOutline.Value;
            style.Shadow           = (int)this.numericUpDownShadow.Value;
            style.OpaqueBox        = this.checkBoxOpaqueBox.Checked;

            if (this.radioButtonAlignment1.Checked)
            {
                style.Alignment = 1;
            }
            else if (this.radioButtonAlignment2.Checked)
            {
                style.Alignment = 2;
            }
            else if (this.radioButtonAlignment3.Checked)
            {
                style.Alignment = 3;
            }
            else if (this.radioButtonAlignment4.Checked)
            {
                style.Alignment = 4;
            }
            else if (this.radioButtonAlignment5.Checked)
            {
                style.Alignment = 5;
            }
            else if (this.radioButtonAlignment6.Checked)
            {
                style.Alignment = 6;
            }
            else if (this.radioButtonAlignment7.Checked)
            {
                style.Alignment = 7;
            }
            else if (this.radioButtonAlignment8.Checked)
            {
                style.Alignment = 8;
            }
            else if (this.radioButtonAlignment9.Checked)
            {
                style.Alignment = 9;
            }

            style.MarginLeft     = (int)this.numericUpDownMarginsLeft.Value;
            style.MarginRight    = (int)this.numericUpDownMarginsRight.Value;
            style.MarginVertical = (int)this.numericUpDownMarginsVertical.Value;
            style.ScaleX         = (int)this.numericUpDownMiscScaleX.Value;
            style.ScaleY         = (int)this.numericUpDownMiscScaleY.Value;
            style.Rotation       = (int)this.numericUpDownMiscRotation.Value;
            style.Spacing        = (int)this.numericUpDownMiscSpacing.Value;
            style.Encoding       = StyleEncoding.getDefaultList()[this.comboBoxMiscEncoding.SelectedIndex];
        }