/GitUI/CommitInfo.Designer.cs
https://github.com/adrianoc/gitextensions · C# · 235 lines · 167 code · 6 blank · 62 comment · 3 complexity · 355e3f27f3d4967898986da34f64b81e MD5 · raw file
- using System.Windows.Forms;
- namespace GitUI
- {
- partial class CommitInfo
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Component Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.tableLayout = new System.Windows.Forms.TableLayoutPanel();
- this.gravatar1 = new GitUI.GravatarControl();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this._RevisionHeader = new System.Windows.Forms.RichTextBox();
- this.commitInfoContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.copyCommitInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
- this.showContainedInBranchesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.showContainedInBranchesRemoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.showContainedInTagsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.RevisionInfo = new System.Windows.Forms.RichTextBox();
- this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
- this.addNoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.tableLayout.SuspendLayout();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- this.commitInfoContextMenuStrip.SuspendLayout();
- this.SuspendLayout();
- //
- // tableLayout
- //
- this.tableLayout.BackColor = System.Drawing.SystemColors.Window;
- this.tableLayout.ColumnCount = 2;
- this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
- this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayout.Controls.Add(this.gravatar1, 0, 0);
- this.tableLayout.Controls.Add(this.splitContainer1, 1, 0);
- this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayout.Location = new System.Drawing.Point(0, 0);
- this.tableLayout.Margin = new System.Windows.Forms.Padding(0);
- this.tableLayout.Name = "tableLayout";
- this.tableLayout.RowCount = 1;
- this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayout.Size = new System.Drawing.Size(766, 334);
- this.tableLayout.TabIndex = 3;
- this.tableLayout.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayout_Paint);
- //
- // gravatar1
- //
- this.gravatar1.BackColor = System.Drawing.SystemColors.Window;
- this.gravatar1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gravatar1.Font = new System.Drawing.Font("Tahoma", 9.75F);
- this.gravatar1.Location = new System.Drawing.Point(0, 0);
- this.gravatar1.Margin = new System.Windows.Forms.Padding(0);
- this.gravatar1.Name = "gravatar1";
- this.gravatar1.Size = new System.Drawing.Size(90, 334);
- this.gravatar1.TabIndex = 1;
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
- this.splitContainer1.IsSplitterFixed = true;
- this.splitContainer1.Location = new System.Drawing.Point(93, 2);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this._RevisionHeader);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.RevisionInfo);
- this.splitContainer1.Size = new System.Drawing.Size(670, 330);
- this.splitContainer1.SplitterDistance = 115;
- this.splitContainer1.SplitterWidth = 1;
- this.splitContainer1.TabIndex = 2;
- //
- // _RevisionHeader
- //
- this._RevisionHeader.BackColor = System.Drawing.SystemColors.ControlLight;
- this._RevisionHeader.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this._RevisionHeader.ContextMenuStrip = this.commitInfoContextMenuStrip;
- this._RevisionHeader.Dock = System.Windows.Forms.DockStyle.Fill;
- this._RevisionHeader.Font = new System.Drawing.Font("Tahoma", 9.75F);
- this._RevisionHeader.LanguageOption = RichTextBoxLanguageOptions.UIFonts;
- this._RevisionHeader.Location = new System.Drawing.Point(0, 0);
- this._RevisionHeader.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this._RevisionHeader.Name = "_RevisionHeader";
- this._RevisionHeader.ReadOnly = true;
- this._RevisionHeader.Size = new System.Drawing.Size(670, 115);
- this._RevisionHeader.TabIndex = 0;
- this._RevisionHeader.Text = "";
- //
- // commitInfoContextMenuStrip
- //
- this.commitInfoContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.copyCommitInfoToolStripMenuItem,
- this.toolStripSeparator1,
- this.showContainedInBranchesToolStripMenuItem,
- this.showContainedInBranchesRemoteToolStripMenuItem,
- this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem,
- this.showContainedInTagsToolStripMenuItem,
- this.toolStripSeparator2,
- this.addNoteToolStripMenuItem});
- this.commitInfoContextMenuStrip.Name = "commitInfoContextMenuStrip";
- this.commitInfoContextMenuStrip.Size = new System.Drawing.Size(422, 170);
- //
- // copyCommitInfoToolStripMenuItem
- //
- this.copyCommitInfoToolStripMenuItem.Name = "copyCommitInfoToolStripMenuItem";
- this.copyCommitInfoToolStripMenuItem.Size = new System.Drawing.Size(421, 22);
- this.copyCommitInfoToolStripMenuItem.Text = "Copy commit info";
- this.copyCommitInfoToolStripMenuItem.Click += new System.EventHandler(this.copyCommitInfoToolStripMenuItem_Click);
- //
- // toolStripSeparator1
- //
- this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(418, 6);
- //
- // showContainedInBranchesToolStripMenuItem
- //
- this.showContainedInBranchesToolStripMenuItem.Name = "showContainedInBranchesToolStripMenuItem";
- this.showContainedInBranchesToolStripMenuItem.Size = new System.Drawing.Size(421, 22);
- this.showContainedInBranchesToolStripMenuItem.Text = "Show local branches containing this commit";
- this.showContainedInBranchesToolStripMenuItem.Click += new System.EventHandler(this.showContainedInBranchesToolStripMenuItem_Click);
- //
- // showContainedInBranchesRemoteToolStripMenuItem
- //
- this.showContainedInBranchesRemoteToolStripMenuItem.Name = "showContainedInBranchesRemoteToolStripMenuItem";
- this.showContainedInBranchesRemoteToolStripMenuItem.Size = new System.Drawing.Size(421, 22);
- this.showContainedInBranchesRemoteToolStripMenuItem.Text = "Show remote branches containing this commit";
- this.showContainedInBranchesRemoteToolStripMenuItem.Click += new System.EventHandler(this.showContainedInBranchesRemoteToolStripMenuItem_Click);
- //
- // showContainedInBranchesRemoteIfNoLocalToolStripMenuItem
- //
- this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem.Name = "showContainedInBranchesRemoteIfNoLocalToolStripMenuItem";
- this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem.Size = new System.Drawing.Size(421, 22);
- this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem.Text = "Show remote branches only when no local branch contains this commit";
- this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem.Click += new System.EventHandler(this.showContainedInBranchesRemoteIfNoLocalToolStripMenuItem_Click);
- //
- // showContainedInTagsToolStripMenuItem
- //
- this.showContainedInTagsToolStripMenuItem.Name = "showContainedInTagsToolStripMenuItem";
- this.showContainedInTagsToolStripMenuItem.Size = new System.Drawing.Size(421, 22);
- this.showContainedInTagsToolStripMenuItem.Text = "Show tags containing this commit";
- this.showContainedInTagsToolStripMenuItem.Click += new System.EventHandler(this.showContainedInTagsToolStripMenuItem_Click);
- //
- // RevisionInfo
- //
- this.RevisionInfo.BackColor = System.Drawing.SystemColors.Window;
- this.RevisionInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.RevisionInfo.ContextMenuStrip = this.commitInfoContextMenuStrip;
- this.RevisionInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.RevisionInfo.LanguageOption = RichTextBoxLanguageOptions.UIFonts;
- this.RevisionInfo.Location = new System.Drawing.Point(0, 0);
- this.RevisionInfo.Margin = new System.Windows.Forms.Padding(4);
- this.RevisionInfo.Name = "RevisionInfo";
- this.RevisionInfo.ReadOnly = true;
- this.RevisionInfo.Size = new System.Drawing.Size(670, 214);
- this.RevisionInfo.TabIndex = 0;
- this.RevisionInfo.Text = "";
- //
- // toolStripSeparator2
- //
- this.toolStripSeparator2.Name = "toolStripSeparator2";
- this.toolStripSeparator2.Size = new System.Drawing.Size(418, 6);
- //
- // addNoteToolStripMenuItem
- //
- this.addNoteToolStripMenuItem.Name = "addNoteToolStripMenuItem";
- this.addNoteToolStripMenuItem.Size = new System.Drawing.Size(421, 22);
- this.addNoteToolStripMenuItem.Text = "Add notes";
- this.addNoteToolStripMenuItem.Click += new System.EventHandler(this.addNoteToolStripMenuItem_Click);
- //
- // CommitInfo
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.tableLayout);
- this.Name = "CommitInfo";
- this.Size = new System.Drawing.Size(766, 334);
- this.tableLayout.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- this.splitContainer1.ResumeLayout(false);
- this.commitInfoContextMenuStrip.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TableLayoutPanel tableLayout;
- private GravatarControl gravatar1;
- private System.Windows.Forms.RichTextBox RevisionInfo;
- private System.Windows.Forms.ContextMenuStrip commitInfoContextMenuStrip;
- private System.Windows.Forms.ToolStripMenuItem showContainedInBranchesToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem showContainedInTagsToolStripMenuItem;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.RichTextBox _RevisionHeader;
- private System.Windows.Forms.ToolStripMenuItem copyCommitInfoToolStripMenuItem;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
- private System.Windows.Forms.ToolStripMenuItem showContainedInBranchesRemoteToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem showContainedInBranchesRemoteIfNoLocalToolStripMenuItem;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
- private System.Windows.Forms.ToolStripMenuItem addNoteToolStripMenuItem;
- }
- }