Files
duplicati/Duplicati/Library/Encryption/GPGCommonOptions.Designer.cs
T
kenneth.skovhede@gmail.com a40f6acf37 A fairly large refactoring of the code.
This was based on the idea that the interfaces should remain static.
I hope this change is enough to ensure stable interfaces until release 1.2.

Overview of changes:
Moved all interfaces into the same dll.
Encryption and compression is now plugable modules, just as the backends.
Encryption/compression can now register an UI.
Encryption now uses AESCrypt as a default.
GPG does not default to using the --armor option.
Added support for generic modules, but none are written yet.
Added support for plugable settings pages in the "Options" dialog.

Fixed issue #148.
Duplicati now uses AESCrypt as the default encryption format.

Fixed issue #199.
GPG now supports custom commandline options.

Fixed issue #207.
Encryption modules are now plugable.

Fixed issue #118.
S3 credentials are now stored.

Fixed issue #151.
Backends can now register system wide options.


git-svn-id: https://duplicati.googlecode.com/svn/trunk@427 59da171f-624f-0410-aa54-27559c288bec
2010-06-19 21:08:21 +00:00

89 lines
3.6 KiB
C#

namespace Duplicati.Library.Encryption
{
partial class GPGCommonOptions
{
/// <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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GPGCommonOptions));
this.label1 = new System.Windows.Forms.Label();
this.GPGPath = new System.Windows.Forms.ComboBox();
this.BrowseForGPGPathButton = new System.Windows.Forms.Button();
this.BrowseForGPGDialog = new System.Windows.Forms.OpenFileDialog();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// GPGPath
//
resources.ApplyResources(this.GPGPath, "GPGPath");
this.GPGPath.FormattingEnabled = true;
this.GPGPath.Name = "GPGPath";
this.GPGPath.TextChanged += new System.EventHandler(this.GPGPath_TextChanged);
//
// BrowseForGPGPathButton
//
resources.ApplyResources(this.BrowseForGPGPathButton, "BrowseForGPGPathButton");
this.BrowseForGPGPathButton.Name = "BrowseForGPGPathButton";
this.BrowseForGPGPathButton.UseVisualStyleBackColor = true;
this.BrowseForGPGPathButton.Click += new System.EventHandler(this.BrowseForGPGPathButton_Click);
//
// BrowseForGPGDialog
//
this.BrowseForGPGDialog.DefaultExt = "exe";
this.BrowseForGPGDialog.FileName = "gpg.exe";
resources.ApplyResources(this.BrowseForGPGDialog, "BrowseForGPGDialog");
//
// GPGCommonOptions
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.BrowseForGPGPathButton);
this.Controls.Add(this.GPGPath);
this.Controls.Add(this.label1);
this.MinimumSize = new System.Drawing.Size(283, 32);
this.Name = "GPGCommonOptions";
this.Load += new System.EventHandler(this.GPGCommonOptions_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox GPGPath;
private System.Windows.Forms.Button BrowseForGPGPathButton;
private System.Windows.Forms.OpenFileDialog BrowseForGPGDialog;
private System.Windows.Forms.ToolTip toolTip;
}
}