ShareX/ShareX.HistoryLib/HistoryForm.Designer.cs

281 lines
14 KiB
C#
Raw Normal View History

2014-12-11 09:25:20 +13:00
namespace ShareX.HistoryLib
2013-11-03 23:53:49 +13:00
{
partial class HistoryForm
{
/// <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 Windows Form 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HistoryForm));
this.btnApplyFilters = new System.Windows.Forms.Button();
this.scMain = new ShareX.HelpersLib.SplitContainerCustomSplitter();
this.lvHistory = new ShareX.HelpersLib.MyListView();
this.chIcon = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chDateTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chFilename = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chURL = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.pbThumbnail = new ShareX.HelpersLib.MyPictureBox();
this.gbFilters = new System.Windows.Forms.GroupBox();
this.cbHostFilterSelection = new System.Windows.Forms.ComboBox();
this.btnRemoveFilters = new System.Windows.Forms.Button();
this.cbTypeFilterSelection = new System.Windows.Forms.ComboBox();
this.cbHostFilter = new System.Windows.Forms.CheckBox();
this.cbTypeFilter = new System.Windows.Forms.CheckBox();
2013-11-03 23:53:49 +13:00
this.dtpFilterFrom = new System.Windows.Forms.DateTimePicker();
2014-10-17 03:56:51 +13:00
this.lblFilterFrom = new System.Windows.Forms.Label();
this.cbFilenameFilter = new System.Windows.Forms.CheckBox();
2014-10-17 03:56:51 +13:00
this.lblFilterTo = new System.Windows.Forms.Label();
this.cbDateFilter = new System.Windows.Forms.CheckBox();
2013-11-03 23:53:49 +13:00
this.dtpFilterTo = new System.Windows.Forms.DateTimePicker();
this.txtFilenameFilter = new System.Windows.Forms.TextBox();
this.cbFilenameFilterMethod = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.scMain)).BeginInit();
this.scMain.Panel1.SuspendLayout();
this.scMain.Panel2.SuspendLayout();
this.scMain.SuspendLayout();
2013-11-03 23:53:49 +13:00
this.gbFilters.SuspendLayout();
this.SuspendLayout();
//
// btnApplyFilters
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.btnApplyFilters, "btnApplyFilters");
this.btnApplyFilters.Name = "btnApplyFilters";
this.btnApplyFilters.UseVisualStyleBackColor = true;
this.btnApplyFilters.Click += new System.EventHandler(this.btnApplyFilters_Click);
2013-11-03 23:53:49 +13:00
//
// scMain
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.scMain, "scMain");
this.scMain.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.scMain.Name = "scMain";
2013-11-03 23:53:49 +13:00
//
// scMain.Panel1
2013-11-03 23:53:49 +13:00
//
this.scMain.Panel1.Controls.Add(this.lvHistory);
2013-11-03 23:53:49 +13:00
//
// scMain.Panel2
2013-11-03 23:53:49 +13:00
//
this.scMain.Panel2.Controls.Add(this.pbThumbnail);
this.scMain.Panel2.Controls.Add(this.gbFilters);
this.scMain.SplitterColor = System.Drawing.Color.DarkGray;
this.scMain.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.scMain_SplitterMoved);
2013-11-03 23:53:49 +13:00
//
// lvHistory
2013-11-03 23:53:49 +13:00
//
this.lvHistory.AllowColumnSort = true;
this.lvHistory.AutoFillColumn = true;
this.lvHistory.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lvHistory.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chIcon,
this.chDateTime,
this.chFilename,
this.chURL});
resources.ApplyResources(this.lvHistory, "lvHistory");
this.lvHistory.FullRowSelect = true;
this.lvHistory.HideSelection = false;
this.lvHistory.Name = "lvHistory";
this.lvHistory.UseCompatibleStateImageBehavior = false;
this.lvHistory.View = System.Windows.Forms.View.Details;
this.lvHistory.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.lvHistory_ItemSelectionChanged);
this.lvHistory.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvHistory_KeyDown);
this.lvHistory.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvHistory_MouseDoubleClick);
this.lvHistory.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvHistory_MouseUp);
2013-11-03 23:53:49 +13:00
//
// chIcon
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.chIcon, "chIcon");
2013-11-03 23:53:49 +13:00
//
// chDateTime
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.chDateTime, "chDateTime");
2013-11-03 23:53:49 +13:00
//
// chFilename
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.chFilename, "chFilename");
2013-11-03 23:53:49 +13:00
//
// chURL
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.chURL, "chURL");
2013-11-03 23:53:49 +13:00
//
// pbThumbnail
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.pbThumbnail, "pbThumbnail");
this.pbThumbnail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pbThumbnail.DrawCheckeredBackground = true;
this.pbThumbnail.FullscreenOnClick = true;
this.pbThumbnail.Name = "pbThumbnail";
this.pbThumbnail.ShowImageSizeLabel = true;
2013-11-03 23:53:49 +13:00
//
// gbFilters
//
2016-03-01 15:03:39 +13:00
resources.ApplyResources(this.gbFilters, "gbFilters");
this.gbFilters.Controls.Add(this.cbHostFilterSelection);
2013-11-03 23:53:49 +13:00
this.gbFilters.Controls.Add(this.btnRemoveFilters);
this.gbFilters.Controls.Add(this.btnApplyFilters);
this.gbFilters.Controls.Add(this.cbTypeFilterSelection);
this.gbFilters.Controls.Add(this.cbHostFilter);
this.gbFilters.Controls.Add(this.cbTypeFilter);
this.gbFilters.Controls.Add(this.dtpFilterFrom);
2014-10-17 03:56:51 +13:00
this.gbFilters.Controls.Add(this.lblFilterFrom);
2013-11-03 23:53:49 +13:00
this.gbFilters.Controls.Add(this.cbFilenameFilter);
2014-10-17 03:56:51 +13:00
this.gbFilters.Controls.Add(this.lblFilterTo);
2013-11-03 23:53:49 +13:00
this.gbFilters.Controls.Add(this.cbDateFilter);
this.gbFilters.Controls.Add(this.dtpFilterTo);
this.gbFilters.Controls.Add(this.txtFilenameFilter);
this.gbFilters.Controls.Add(this.cbFilenameFilterMethod);
this.gbFilters.Name = "gbFilters";
this.gbFilters.TabStop = false;
//
// cbHostFilterSelection
//
this.cbHostFilterSelection.FormattingEnabled = true;
resources.ApplyResources(this.cbHostFilterSelection, "cbHostFilterSelection");
this.cbHostFilterSelection.Name = "cbHostFilterSelection";
//
2013-11-03 23:53:49 +13:00
// btnRemoveFilters
//
resources.ApplyResources(this.btnRemoveFilters, "btnRemoveFilters");
2013-11-03 23:53:49 +13:00
this.btnRemoveFilters.Name = "btnRemoveFilters";
this.btnRemoveFilters.UseVisualStyleBackColor = true;
this.btnRemoveFilters.Click += new System.EventHandler(this.btnRemoveFilters_Click);
//
// cbTypeFilterSelection
//
this.cbTypeFilterSelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbTypeFilterSelection.FormattingEnabled = true;
resources.ApplyResources(this.cbTypeFilterSelection, "cbTypeFilterSelection");
2013-11-03 23:53:49 +13:00
this.cbTypeFilterSelection.Name = "cbTypeFilterSelection";
//
// cbHostFilter
//
resources.ApplyResources(this.cbHostFilter, "cbHostFilter");
this.cbHostFilter.Name = "cbHostFilter";
this.cbHostFilter.UseVisualStyleBackColor = true;
//
// cbTypeFilter
//
resources.ApplyResources(this.cbTypeFilter, "cbTypeFilter");
this.cbTypeFilter.Name = "cbTypeFilter";
this.cbTypeFilter.UseVisualStyleBackColor = true;
//
// dtpFilterFrom
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.dtpFilterFrom, "dtpFilterFrom");
this.dtpFilterFrom.Name = "dtpFilterFrom";
2013-11-03 23:53:49 +13:00
//
// lblFilterFrom
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.lblFilterFrom, "lblFilterFrom");
this.lblFilterFrom.Name = "lblFilterFrom";
2013-11-03 23:53:49 +13:00
//
// cbFilenameFilter
//
resources.ApplyResources(this.cbFilenameFilter, "cbFilenameFilter");
this.cbFilenameFilter.Name = "cbFilenameFilter";
this.cbFilenameFilter.UseVisualStyleBackColor = true;
//
// lblFilterTo
2016-03-01 15:03:39 +13:00
//
resources.ApplyResources(this.lblFilterTo, "lblFilterTo");
this.lblFilterTo.Name = "lblFilterTo";
2016-03-01 15:03:39 +13:00
//
// cbDateFilter
//
resources.ApplyResources(this.cbDateFilter, "cbDateFilter");
this.cbDateFilter.Name = "cbDateFilter";
this.cbDateFilter.UseVisualStyleBackColor = true;
//
// dtpFilterTo
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.dtpFilterTo, "dtpFilterTo");
this.dtpFilterTo.Name = "dtpFilterTo";
2013-11-03 23:53:49 +13:00
//
// txtFilenameFilter
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.txtFilenameFilter, "txtFilenameFilter");
this.txtFilenameFilter.Name = "txtFilenameFilter";
this.txtFilenameFilter.TextChanged += new System.EventHandler(this.txtFilenameFilter_TextChanged);
2013-11-03 23:53:49 +13:00
//
// cbFilenameFilterMethod
2013-11-03 23:53:49 +13:00
//
this.cbFilenameFilterMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFilenameFilterMethod.FormattingEnabled = true;
this.cbFilenameFilterMethod.Items.AddRange(new object[] {
resources.GetString("cbFilenameFilterMethod.Items"),
resources.GetString("cbFilenameFilterMethod.Items1"),
resources.GetString("cbFilenameFilterMethod.Items2"),
resources.GetString("cbFilenameFilterMethod.Items3")});
resources.ApplyResources(this.cbFilenameFilterMethod, "cbFilenameFilterMethod");
this.cbFilenameFilterMethod.Name = "cbFilenameFilterMethod";
2013-11-03 23:53:49 +13:00
//
// HistoryForm
//
this.AcceptButton = this.btnApplyFilters;
resources.ApplyResources(this, "$this");
2013-11-03 23:53:49 +13:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.scMain);
2013-11-03 23:53:49 +13:00
this.KeyPreview = true;
this.Name = "HistoryForm";
this.Shown += new System.EventHandler(this.HistoryForm_Shown);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HistoryForm_KeyDown);
this.Resize += new System.EventHandler(this.HistoryForm_Resize);
this.scMain.Panel1.ResumeLayout(false);
this.scMain.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.scMain)).EndInit();
this.scMain.ResumeLayout(false);
2013-11-03 23:53:49 +13:00
this.gbFilters.ResumeLayout(false);
this.gbFilters.PerformLayout();
this.ResumeLayout(false);
}
#endregion Windows Form Designer generated code
2014-12-11 09:25:20 +13:00
private ShareX.HelpersLib.MyListView lvHistory;
2013-11-03 23:53:49 +13:00
private System.Windows.Forms.ColumnHeader chFilename;
private System.Windows.Forms.ColumnHeader chDateTime;
private System.Windows.Forms.ColumnHeader chURL;
private System.Windows.Forms.DateTimePicker dtpFilterFrom;
private System.Windows.Forms.CheckBox cbDateFilter;
2014-10-17 03:56:51 +13:00
private System.Windows.Forms.Label lblFilterFrom;
private System.Windows.Forms.Label lblFilterTo;
2013-11-03 23:53:49 +13:00
private System.Windows.Forms.DateTimePicker dtpFilterTo;
private System.Windows.Forms.Button btnApplyFilters;
private System.Windows.Forms.TextBox txtFilenameFilter;
private System.Windows.Forms.ComboBox cbFilenameFilterMethod;
private System.Windows.Forms.CheckBox cbFilenameFilter;
2014-12-11 09:25:20 +13:00
private ShareX.HelpersLib.MyPictureBox pbThumbnail;
2013-11-03 23:53:49 +13:00
private System.Windows.Forms.GroupBox gbFilters;
private System.Windows.Forms.Button btnRemoveFilters;
private System.Windows.Forms.ComboBox cbTypeFilterSelection;
private System.Windows.Forms.CheckBox cbHostFilter;
private System.Windows.Forms.CheckBox cbTypeFilter;
2016-03-01 15:03:39 +13:00
private System.Windows.Forms.ColumnHeader chIcon;
private ShareX.HelpersLib.SplitContainerCustomSplitter scMain;
private System.Windows.Forms.ComboBox cbHostFilterSelection;
2013-11-03 23:53:49 +13:00
}
}