asciipumper

- mspaint style program to create irc ascii art
git clone git://git.acid.vegas/asciipumper.git
Log | Files | Refs | Archive | README

MainForm.Designer.cs (29968B)

      1 namespace AsciiPumper
      2 {
      3 	partial class MainForm
      4 	{
      5 		/// <summary>
      6 		/// Required designer variable.
      7 		/// </summary>
      8 		private System.ComponentModel.IContainer components = null;
      9 
     10 		/// <summary>
     11 		/// Clean up any resources being used.
     12 		/// </summary>
     13 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
     14 		protected override void Dispose(bool disposing)
     15 		{
     16 			if (disposing && (components != null))
     17 			{
     18 				components.Dispose();
     19 			}
     20 			base.Dispose(disposing);
     21 		}
     22 
     23 		#region Windows Form Designer generated code
     24 
     25 		/// <summary>
     26 		/// Required method for Designer support - do not modify
     27 		/// the contents of this method with the code editor.
     28 		/// </summary>
     29 		private void InitializeComponent()
     30 		{
     31             this.components = new System.ComponentModel.Container();
     32             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     33             this.fontDialog1 = new System.Windows.Forms.FontDialog();
     34             this.colorDialog1 = new System.Windows.Forms.ColorDialog();
     35             this.splitContainer = new System.Windows.Forms.SplitContainer();
     36             this.PaintPanel = new System.Windows.Forms.Panel();
     37             this.AsciiPaintCanvas = new AsciiPumper.PaintCanvas();
     38             this.txtWatermark = new System.Windows.Forms.TextBox();
     39             this.chkWatermark = new System.Windows.Forms.CheckBox();
     40             this.panel1 = new System.Windows.Forms.Panel();
     41             this.radioRemoveFormatting = new System.Windows.Forms.RadioButton();
     42             this.radioUnderline = new System.Windows.Forms.RadioButton();
     43             this.radioBold = new System.Windows.Forms.RadioButton();
     44             this.radioFill = new System.Windows.Forms.RadioButton();
     45             this.radioPaintBrush = new System.Windows.Forms.RadioButton();
     46             this.btnCopy = new System.Windows.Forms.Button();
     47             this.checkRMBfg = new System.Windows.Forms.CheckBox();
     48             this.colorRMB = new System.Windows.Forms.PictureBox();
     49             this.lblRMB = new System.Windows.Forms.Label();
     50             this.checkMMBfg = new System.Windows.Forms.CheckBox();
     51             this.colorMMB = new System.Windows.Forms.PictureBox();
     52             this.lblMMB = new System.Windows.Forms.Label();
     53             this.lblForeground = new System.Windows.Forms.Label();
     54             this.checkLMBfg = new System.Windows.Forms.CheckBox();
     55             this.colorLMB = new System.Windows.Forms.PictureBox();
     56             this.lblLeftMouseButton = new System.Windows.Forms.Label();
     57             this.colorSelector1 = new AsciiPumper.ColorSelector();
     58             this.numColumns = new System.Windows.Forms.NumericUpDown();
     59             this.lblColumns = new System.Windows.Forms.Label();
     60             this.numRows = new System.Windows.Forms.NumericUpDown();
     61             this.lblRows = new System.Windows.Forms.Label();
     62             this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     63             this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     64             this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     65             this.splitContainer.Panel1.SuspendLayout();
     66             this.splitContainer.Panel2.SuspendLayout();
     67             this.splitContainer.SuspendLayout();
     68             this.PaintPanel.SuspendLayout();
     69             this.panel1.SuspendLayout();
     70             ((System.ComponentModel.ISupportInitialize)(this.colorRMB)).BeginInit();
     71             ((System.ComponentModel.ISupportInitialize)(this.colorMMB)).BeginInit();
     72             ((System.ComponentModel.ISupportInitialize)(this.colorLMB)).BeginInit();
     73             ((System.ComponentModel.ISupportInitialize)(this.numColumns)).BeginInit();
     74             ((System.ComponentModel.ISupportInitialize)(this.numRows)).BeginInit();
     75             this.SuspendLayout();
     76             // 
     77             // fontDialog1
     78             // 
     79             this.fontDialog1.FixedPitchOnly = true;
     80             // 
     81             // splitContainer
     82             // 
     83             this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     84             this.splitContainer.Location = new System.Drawing.Point(0, 0);
     85             this.splitContainer.Name = "splitContainer";
     86             // 
     87             // splitContainer.Panel1
     88             // 
     89             this.splitContainer.Panel1.Controls.Add(this.PaintPanel);
     90             // 
     91             // splitContainer.Panel2
     92             // 
     93             this.splitContainer.Panel2.Controls.Add(this.txtWatermark);
     94             this.splitContainer.Panel2.Controls.Add(this.chkWatermark);
     95             this.splitContainer.Panel2.Controls.Add(this.panel1);
     96             this.splitContainer.Panel2.Controls.Add(this.btnCopy);
     97             this.splitContainer.Panel2.Controls.Add(this.checkRMBfg);
     98             this.splitContainer.Panel2.Controls.Add(this.colorRMB);
     99             this.splitContainer.Panel2.Controls.Add(this.lblRMB);
    100             this.splitContainer.Panel2.Controls.Add(this.checkMMBfg);
    101             this.splitContainer.Panel2.Controls.Add(this.colorMMB);
    102             this.splitContainer.Panel2.Controls.Add(this.lblMMB);
    103             this.splitContainer.Panel2.Controls.Add(this.lblForeground);
    104             this.splitContainer.Panel2.Controls.Add(this.checkLMBfg);
    105             this.splitContainer.Panel2.Controls.Add(this.colorLMB);
    106             this.splitContainer.Panel2.Controls.Add(this.lblLeftMouseButton);
    107             this.splitContainer.Panel2.Controls.Add(this.colorSelector1);
    108             this.splitContainer.Panel2.Controls.Add(this.numColumns);
    109             this.splitContainer.Panel2.Controls.Add(this.lblColumns);
    110             this.splitContainer.Panel2.Controls.Add(this.numRows);
    111             this.splitContainer.Panel2.Controls.Add(this.lblRows);
    112             
    113             this.splitContainer.Size = new System.Drawing.Size(978, 438);
    114             this.splitContainer.Panel2MinSize = 220;
    115             this.splitContainer.SplitterDistance = 751;
    116             this.splitContainer.TabIndex = 2;
    117             // 
    118             // PaintPanel
    119             // 
    120             this.PaintPanel.AutoScroll = true;
    121             this.PaintPanel.Controls.Add(this.AsciiPaintCanvas);
    122             this.PaintPanel.Dock = System.Windows.Forms.DockStyle.Fill;
    123             this.PaintPanel.Location = new System.Drawing.Point(0, 0);
    124             this.PaintPanel.Name = "PaintPanel";
    125             this.PaintPanel.Size = new System.Drawing.Size(751, 438);
    126             this.PaintPanel.TabIndex = 2;
    127             // 
    128             // AsciiPaintCanvas
    129             // 
    130             this.AsciiPaintCanvas.BackColor = System.Drawing.Color.White;
    131             this.AsciiPaintCanvas.CausesValidation = false;
    132             this.AsciiPaintCanvas.CellHeight = 20;
    133             this.AsciiPaintCanvas.CellWidth = 10;
    134             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.White);
    135             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.Black);
    136             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(127))))));
    137             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(147)))), ((int)(((byte)(0))))));
    138             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))));
    139             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))));
    140             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(0)))), ((int)(((byte)(156))))));
    141             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(127)))), ((int)(((byte)(0))))));
    142             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))));
    143             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(252)))), ((int)(((byte)(0))))));
    144             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(147)))), ((int)(((byte)(147))))));
    145             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))));
    146             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(252))))));
    147             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))));
    148             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127))))));
    149             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))));
    150             this.AsciiPaintCanvas.Columns = 60;
    151             this.AsciiPaintCanvas.DontRepaint = false;
    152             this.AsciiPaintCanvas.Font = new System.Drawing.Font("Consolas", 10F);
    153             this.AsciiPaintCanvas.HighlightColor = System.Drawing.Color.Salmon;
    154             this.AsciiPaintCanvas.HighlightWidth = 2;
    155             this.AsciiPaintCanvas.LeftMouseColor = ((byte)(0));
    156             this.AsciiPaintCanvas.LeftMouseIsForeground = false;
    157             this.AsciiPaintCanvas.Location = new System.Drawing.Point(0, 0);
    158             this.AsciiPaintCanvas.MiddleMouseColor = ((byte)(4));
    159             this.AsciiPaintCanvas.MiddleMouseIsForeground = true;
    160             this.AsciiPaintCanvas.Modified = false;
    161             this.AsciiPaintCanvas.MostRecentForegroundColor = ((byte)(4));
    162             this.AsciiPaintCanvas.Name = "AsciiPaintCanvas";
    163             this.AsciiPaintCanvas.PaintMode = AsciiPumper.PaintCanvas.PaintModes.PaintBrush;
    164             this.AsciiPaintCanvas.RightMouseColor = ((byte)(1));
    165             this.AsciiPaintCanvas.RightMouseIsForeground = false;
    166             this.AsciiPaintCanvas.Rows = 20;
    167             this.AsciiPaintCanvas.SelectedCellPosition = new System.Drawing.Point(0, 0);
    168             this.AsciiPaintCanvas.SeperatorColor = System.Drawing.Color.DimGray;
    169             this.AsciiPaintCanvas.SeperatorWidth = 1;
    170             this.AsciiPaintCanvas.Size = new System.Drawing.Size(600, 400);
    171             this.AsciiPaintCanvas.TabIndex = 0;
    172             // 
    173             // txtWatermark
    174             // 
    175             this.txtWatermark.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    176                         | System.Windows.Forms.AnchorStyles.Right)));
    177             this.txtWatermark.Location = new System.Drawing.Point(2, 345);
    178             this.txtWatermark.Name = "txtWatermark";
    179             this.txtWatermark.Size = new System.Drawing.Size(218, 22);
    180             this.txtWatermark.TabIndex = 18;
    181             this.txtWatermark.Text = "http://code.google.com/p/asciipumper/ ";
    182             this.txtWatermark.Enter += new System.EventHandler(this.txtWatermark_Enter);
    183             // 
    184             // chkWatermark
    185             // 
    186             this.chkWatermark.AutoSize = true;
    187             this.chkWatermark.Location = new System.Drawing.Point(3, 322);
    188             this.chkWatermark.Name = "chkWatermark";
    189             this.chkWatermark.Size = new System.Drawing.Size(166, 17);
    190             this.chkWatermark.TabIndex = 17;
    191             this.chkWatermark.Text = "Hardspace with watermark:";
    192             this.chkWatermark.UseVisualStyleBackColor = true;
    193             this.chkWatermark.CheckedChanged += new System.EventHandler(this.chkWatermark_CheckedChanged);
    194             // 
    195             // panel1
    196             // 
    197             this.panel1.Controls.Add(this.radioRemoveFormatting);
    198             this.panel1.Controls.Add(this.radioUnderline);
    199             this.panel1.Controls.Add(this.radioBold);
    200             this.panel1.Controls.Add(this.radioFill);
    201             this.panel1.Controls.Add(this.radioPaintBrush);
    202             this.panel1.Location = new System.Drawing.Point(3, 213);
    203             this.panel1.Name = "panel1";
    204             this.panel1.Size = new System.Drawing.Size(210, 73);
    205             this.panel1.TabIndex = 16;
    206             // 
    207             // radioRemoveFormatting
    208             // 
    209             this.radioRemoveFormatting.AutoSize = true;
    210             this.radioRemoveFormatting.Location = new System.Drawing.Point(4, 50);
    211             this.radioRemoveFormatting.Name = "radioRemoveFormatting";
    212             this.radioRemoveFormatting.Size = new System.Drawing.Size(123, 17);
    213             this.radioRemoveFormatting.TabIndex = 4;
    214             this.radioRemoveFormatting.Text = "Remove formatting";
    215             this.radioRemoveFormatting.UseVisualStyleBackColor = true;
    216             this.radioRemoveFormatting.CheckedChanged += new System.EventHandler(this.radioRemoveFormatting_CheckedChanged);
    217             // 
    218             // radioUnderline
    219             // 
    220             this.radioUnderline.AutoSize = true;
    221             this.radioUnderline.Location = new System.Drawing.Point(118, 27);
    222             this.radioUnderline.Name = "radioUnderline";
    223             this.radioUnderline.Size = new System.Drawing.Size(76, 17);
    224             this.radioUnderline.TabIndex = 3;
    225             this.radioUnderline.Text = "Underline";
    226             this.radioUnderline.UseVisualStyleBackColor = true;
    227             this.radioUnderline.CheckedChanged += new System.EventHandler(this.radioUnderline_CheckedChanged);
    228             // 
    229             // radioBold
    230             // 
    231             this.radioBold.AutoSize = true;
    232             this.radioBold.Location = new System.Drawing.Point(118, 4);
    233             this.radioBold.Name = "radioBold";
    234             this.radioBold.Size = new System.Drawing.Size(49, 17);
    235             this.radioBold.TabIndex = 2;
    236             this.radioBold.Text = "Bold";
    237             this.radioBold.UseVisualStyleBackColor = true;
    238             this.radioBold.CheckedChanged += new System.EventHandler(this.radioBold_CheckedChanged);
    239             // 
    240             // radioFill
    241             // 
    242             this.radioFill.AutoSize = true;
    243             this.radioFill.Location = new System.Drawing.Point(4, 27);
    244             this.radioFill.Name = "radioFill";
    245             this.radioFill.Size = new System.Drawing.Size(40, 17);
    246             this.radioFill.TabIndex = 1;
    247             this.radioFill.Text = "Fill";
    248             this.radioFill.UseVisualStyleBackColor = true;
    249             this.radioFill.CheckedChanged += new System.EventHandler(this.radioFill_CheckedChanged);
    250             // 
    251             // radioPaintBrush
    252             // 
    253             this.radioPaintBrush.AutoSize = true;
    254             this.radioPaintBrush.Checked = true;
    255             this.radioPaintBrush.Location = new System.Drawing.Point(4, 4);
    256             this.radioPaintBrush.Name = "radioPaintBrush";
    257             this.radioPaintBrush.Size = new System.Drawing.Size(84, 17);
    258             this.radioPaintBrush.TabIndex = 0;
    259             this.radioPaintBrush.TabStop = true;
    260             this.radioPaintBrush.Text = "Paint brush";
    261             this.radioPaintBrush.UseVisualStyleBackColor = true;
    262             this.radioPaintBrush.CheckedChanged += new System.EventHandler(this.radioPaintBrush_CheckedChanged);
    263             // 
    264             // btnCopy
    265             // 
    266             this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    267                         | System.Windows.Forms.AnchorStyles.Right)));
    268             this.btnCopy.Location = new System.Drawing.Point(0, 292);
    269             this.btnCopy.Name = "btnCopy";
    270             this.btnCopy.Size = new System.Drawing.Size(218, 23);
    271             this.btnCopy.TabIndex = 15;
    272             this.btnCopy.Text = "Copy art to clipboard";
    273             this.btnCopy.UseVisualStyleBackColor = true;
    274             this.btnCopy.Click += new System.EventHandler(this.button1_Click);
    275             // 
    276             // checkRMBfg
    277             // 
    278             this.checkRMBfg.AutoSize = true;
    279             this.checkRMBfg.Location = new System.Drawing.Point(164, 193);
    280             this.checkRMBfg.Name = "checkRMBfg";
    281             this.checkRMBfg.Size = new System.Drawing.Size(15, 14);
    282             this.checkRMBfg.TabIndex = 14;
    283             this.checkRMBfg.UseVisualStyleBackColor = true;
    284             this.checkRMBfg.CheckedChanged += new System.EventHandler(this.checkRMBfg_CheckedChanged);
    285             // 
    286             // colorRMB
    287             // 
    288             this.colorRMB.BackColor = System.Drawing.SystemColors.ControlDarkDark;
    289             this.colorRMB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    290             this.colorRMB.Location = new System.Drawing.Point(121, 187);
    291             this.colorRMB.Name = "colorRMB";
    292             this.colorRMB.Size = new System.Drawing.Size(20, 20);
    293             this.colorRMB.TabIndex = 13;
    294             this.colorRMB.TabStop = false;
    295             // 
    296             // lblRMB
    297             // 
    298             this.lblRMB.AutoSize = true;
    299             this.lblRMB.Location = new System.Drawing.Point(1, 194);
    300             this.lblRMB.Name = "lblRMB";
    301             this.lblRMB.Size = new System.Drawing.Size(115, 13);
    302             this.lblRMB.TabIndex = 12;
    303             this.lblRMB.Text = "Right Mouse Button:";
    304             // 
    305             // checkMMBfg
    306             // 
    307             this.checkMMBfg.AutoSize = true;
    308             this.checkMMBfg.Checked = true;
    309             this.checkMMBfg.CheckState = System.Windows.Forms.CheckState.Checked;
    310             this.checkMMBfg.Location = new System.Drawing.Point(164, 167);
    311             this.checkMMBfg.Name = "checkMMBfg";
    312             this.checkMMBfg.Size = new System.Drawing.Size(15, 14);
    313             this.checkMMBfg.TabIndex = 11;
    314             this.checkMMBfg.UseVisualStyleBackColor = true;
    315             this.checkMMBfg.CheckedChanged += new System.EventHandler(this.checkMMBfg_CheckedChanged);
    316             // 
    317             // colorMMB
    318             // 
    319             this.colorMMB.BackColor = System.Drawing.SystemColors.ControlDarkDark;
    320             this.colorMMB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    321             this.colorMMB.Location = new System.Drawing.Point(121, 161);
    322             this.colorMMB.Name = "colorMMB";
    323             this.colorMMB.Size = new System.Drawing.Size(20, 20);
    324             this.colorMMB.TabIndex = 10;
    325             this.colorMMB.TabStop = false;
    326             // 
    327             // lblMMB
    328             // 
    329             this.lblMMB.AutoSize = true;
    330             this.lblMMB.Location = new System.Drawing.Point(1, 168);
    331             this.lblMMB.Name = "lblMMB";
    332             this.lblMMB.Size = new System.Drawing.Size(123, 13);
    333             this.lblMMB.TabIndex = 9;
    334             this.lblMMB.Text = "Middle Mouse Button:";
    335             // 
    336             // lblForeground
    337             // 
    338             this.lblForeground.AutoSize = true;
    339             this.lblForeground.Location = new System.Drawing.Point(140, 118);
    340             this.lblForeground.Name = "lblForeground";
    341             this.lblForeground.Size = new System.Drawing.Size(74, 13);
    342             this.lblForeground.TabIndex = 8;
    343             this.lblForeground.Text = "Foreground?";
    344             // 
    345             // checkLMBfg
    346             // 
    347             this.checkLMBfg.AutoSize = true;
    348             this.checkLMBfg.Location = new System.Drawing.Point(164, 140);
    349             this.checkLMBfg.Name = "checkLMBfg";
    350             this.checkLMBfg.Size = new System.Drawing.Size(15, 14);
    351             this.checkLMBfg.TabIndex = 7;
    352             this.checkLMBfg.UseVisualStyleBackColor = true;
    353             this.checkLMBfg.CheckedChanged += new System.EventHandler(this.checkLMBfg_CheckedChanged);
    354             // 
    355             // colorLMB
    356             // 
    357             this.colorLMB.BackColor = System.Drawing.SystemColors.ControlDarkDark;
    358             this.colorLMB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    359             this.colorLMB.Location = new System.Drawing.Point(121, 134);
    360             this.colorLMB.Name = "colorLMB";
    361             this.colorLMB.Size = new System.Drawing.Size(20, 20);
    362             this.colorLMB.TabIndex = 6;
    363             this.colorLMB.TabStop = false;
    364             // 
    365             // lblLeftMouseButton
    366             // 
    367             this.lblLeftMouseButton.AutoSize = true;
    368             this.lblLeftMouseButton.Location = new System.Drawing.Point(1, 141);
    369             this.lblLeftMouseButton.Name = "lblLeftMouseButton";
    370             this.lblLeftMouseButton.Size = new System.Drawing.Size(106, 13);
    371             this.lblLeftMouseButton.TabIndex = 5;
    372             this.lblLeftMouseButton.Text = "Left Mouse Button:";
    373             // 
    374             // colorSelector1
    375             // 
    376             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.White);
    377             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.Black);
    378             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(127))))));
    379             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(147)))), ((int)(((byte)(0))))));
    380             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))));
    381             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))));
    382             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(0)))), ((int)(((byte)(156))))));
    383             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(127)))), ((int)(((byte)(0))))));
    384             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))));
    385             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(252)))), ((int)(((byte)(0))))));
    386             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(147)))), ((int)(((byte)(147))))));
    387             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))));
    388             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(252))))));
    389             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))));
    390             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127))))));
    391             new AsciiPumper.ColorPalette().Add(System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))));
    392             this.colorSelector1.Location = new System.Drawing.Point(3, 51);
    393             this.colorSelector1.Name = "colorSelector1";
    394             this.colorSelector1.Size = new System.Drawing.Size(209, 54);
    395             this.colorSelector1.TabIndex = 4;
    396             this.colorSelector1.ButtonColorChanged += new System.EventHandler<AsciiPumper.ColorSelector.ButtonColorChangedEventArgs>(this.colorSelector1_ButtonColorChanged);
    397             // 
    398             // numColumns
    399             // 
    400             this.numColumns.Location = new System.Drawing.Point(106, 16);
    401             this.numColumns.Maximum = new decimal(new int[] {
    402             10000,
    403             0,
    404             0,
    405             0});
    406             this.numColumns.Minimum = new decimal(new int[] {
    407             1,
    408             0,
    409             0,
    410             0});
    411             this.numColumns.Name = "numColumns";
    412             this.numColumns.Size = new System.Drawing.Size(46, 22);
    413             this.numColumns.TabIndex = 3;
    414             this.numColumns.Value = new decimal(new int[] {
    415             80,
    416             0,
    417             0,
    418             0});
    419             this.numColumns.ValueChanged += new System.EventHandler(this.numColumns_ValueChanged);
    420             // 
    421             // lblColumns
    422             // 
    423             this.lblColumns.AutoSize = true;
    424             this.lblColumns.Location = new System.Drawing.Point(103, 0);
    425             this.lblColumns.Name = "lblColumns";
    426             this.lblColumns.Size = new System.Drawing.Size(55, 13);
    427             this.lblColumns.TabIndex = 2;
    428             this.lblColumns.Text = "Columns:";
    429             // 
    430             // numRows
    431             // 
    432             this.numRows.Location = new System.Drawing.Point(44, 23);
    433             this.numRows.Maximum = new decimal(new int[] {
    434             10000,
    435             0,
    436             0,
    437             0});
    438             this.numRows.Minimum = new decimal(new int[] {
    439             1,
    440             0,
    441             0,
    442             0});
    443             this.numRows.Name = "numRows";
    444             this.numRows.Size = new System.Drawing.Size(46, 22);
    445             this.numRows.TabIndex = 1;
    446             this.numRows.Value = new decimal(new int[] {
    447             50,
    448             0,
    449             0,
    450             0});
    451             this.numRows.ValueChanged += new System.EventHandler(this.numRows_ValueChanged);
    452             // 
    453             // lblRows
    454             // 
    455             this.lblRows.AutoSize = true;
    456             this.lblRows.Location = new System.Drawing.Point(6, 25);
    457             this.lblRows.Name = "lblRows";
    458             this.lblRows.Size = new System.Drawing.Size(38, 13);
    459             this.lblRows.TabIndex = 0;
    460             this.lblRows.Text = "Rows:";
    461             // 
    462             // saveFileDialog
    463             // 
    464             this.saveFileDialog.DefaultExt = "txt";
    465             this.saveFileDialog.Filter = "Text files|*.txt|All files|*.*";
    466             // 
    467             // openFileDialog
    468             // 
    469             this.openFileDialog.DefaultExt = "txt";
    470             this.openFileDialog.Filter = "Text files|*.txt|All files|*.*";
    471             // 
    472             // MainForm
    473             // 
    474             this.ClientSize = new System.Drawing.Size(978, 438);
    475             this.Controls.Add(this.splitContainer);
    476             this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    477             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
    478             this.Name = "MainForm";
    479             this.Text = "Ascii Pumper";
    480             this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
    481             this.Load += new System.EventHandler(this.MainForm_Load);
    482             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
    483             this.Resize += new System.EventHandler(this.MainForm_Resize);
    484             this.splitContainer.Panel1.ResumeLayout(false);
    485             this.splitContainer.Panel2.ResumeLayout(false);
    486             this.splitContainer.Panel2.PerformLayout();
    487             this.splitContainer.ResumeLayout(false);
    488             this.PaintPanel.ResumeLayout(false);
    489             this.panel1.ResumeLayout(false);
    490             this.panel1.PerformLayout();
    491             ((System.ComponentModel.ISupportInitialize)(this.colorRMB)).EndInit();
    492             ((System.ComponentModel.ISupportInitialize)(this.colorMMB)).EndInit();
    493             ((System.ComponentModel.ISupportInitialize)(this.colorLMB)).EndInit();
    494             ((System.ComponentModel.ISupportInitialize)(this.numColumns)).EndInit();
    495             ((System.ComponentModel.ISupportInitialize)(this.numRows)).EndInit();
    496             this.ResumeLayout(false);
    497 
    498 		}
    499 
    500 		#endregion
    501 
    502 		private System.Windows.Forms.FontDialog fontDialog1;
    503 		private System.Windows.Forms.ColorDialog colorDialog1;
    504 		private System.Windows.Forms.SplitContainer splitContainer;
    505 		private System.Windows.Forms.Panel PaintPanel;
    506 		private PaintCanvas AsciiPaintCanvas;
    507 		private System.Windows.Forms.NumericUpDown numColumns;
    508 		private System.Windows.Forms.Label lblColumns;
    509 		private System.Windows.Forms.NumericUpDown numRows;
    510 		private System.Windows.Forms.Label lblRows;
    511 		private ColorSelector colorSelector1;
    512 		private System.Windows.Forms.Label lblLeftMouseButton;
    513 		private System.Windows.Forms.PictureBox colorLMB;
    514 		private System.Windows.Forms.CheckBox checkRMBfg;
    515 		private System.Windows.Forms.PictureBox colorRMB;
    516 		private System.Windows.Forms.Label lblRMB;
    517 		private System.Windows.Forms.CheckBox checkMMBfg;
    518 		private System.Windows.Forms.PictureBox colorMMB;
    519 		private System.Windows.Forms.Label lblMMB;
    520 		private System.Windows.Forms.Label lblForeground;
    521 		private System.Windows.Forms.CheckBox checkLMBfg;
    522 		private System.Windows.Forms.Button btnCopy;
    523 		private System.Windows.Forms.SaveFileDialog saveFileDialog;
    524 		private System.Windows.Forms.OpenFileDialog openFileDialog;
    525 		private System.Windows.Forms.Panel panel1;
    526 		private System.Windows.Forms.RadioButton radioFill;
    527 		private System.Windows.Forms.RadioButton radioPaintBrush;
    528 		private System.Windows.Forms.CheckBox chkWatermark;
    529 		private System.Windows.Forms.ToolTip toolTip1;
    530 		private System.Windows.Forms.TextBox txtWatermark;
    531 		private System.Windows.Forms.RadioButton radioRemoveFormatting;
    532 		private System.Windows.Forms.RadioButton radioUnderline;
    533 		private System.Windows.Forms.RadioButton radioBold;
    534 	}
    535 }
    536