2019-04-30 21:29:50 +02:00
|
|
|
|
namespace DS4Windows.Forms
|
2014-05-30 22:39:39 +02:00
|
|
|
|
{
|
Version 1.4.222
Added Press/Toggle Key to Special Actions, you can hold a trigger to
hold a key or toggle a key with one set of buttons, and untoggle it by
pressing or releasing another set of buttons
Added Disconnect BT to Special Actions, PS+Options to d/c is now added
to Special actions and can be enabled for each profile. You can now set
Disconnect BT to any control(s) and how long you need to hold the
control(s) to take affect
Added Partial German Translation (Thanks Michél)
Added 95% Finished Russian Translation (Thanks overclockers.ru members:
KoNoRIMCI & Sr_psycho)
Added Partial Italian Translation (Thanks Giulio)
Updates to the translations sheets, they should now have every bit of
text in DS4Windows, minus the controls of the controller
English Spelling fixes
Main/Starting tab only shows info for connected controllers, and context
menu only shows options for connected controllers.
Mouse wheel scrolling with analog sticks/triggers/gyro, the mouse now
scrolls smoothly
Slightly reworked analog mouse movement + mouse acceleration (not as
janky anymore)
When starting DS4Windows, if no controllers are connected, DS4Windows
defaults to the profile tab
Certain log warnings (Like unable to get controller exclusively) shows
up in red
Easter egg: try pressing a few buttons in sequence while in the log tab
Fixed Start Profile with TP off being unchecked next time a profile is
opened
Other minor Bug Fixes, such as clearing the log then moving to a new tab
crashing DS4W
2015-01-17 21:16:48 +01:00
|
|
|
|
partial class DupBox
|
2014-05-30 22:39:39 +02:00
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
Version 1.4.222
Added Press/Toggle Key to Special Actions, you can hold a trigger to
hold a key or toggle a key with one set of buttons, and untoggle it by
pressing or releasing another set of buttons
Added Disconnect BT to Special Actions, PS+Options to d/c is now added
to Special actions and can be enabled for each profile. You can now set
Disconnect BT to any control(s) and how long you need to hold the
control(s) to take affect
Added Partial German Translation (Thanks Michél)
Added 95% Finished Russian Translation (Thanks overclockers.ru members:
KoNoRIMCI & Sr_psycho)
Added Partial Italian Translation (Thanks Giulio)
Updates to the translations sheets, they should now have every bit of
text in DS4Windows, minus the controls of the controller
English Spelling fixes
Main/Starting tab only shows info for connected controllers, and context
menu only shows options for connected controllers.
Mouse wheel scrolling with analog sticks/triggers/gyro, the mouse now
scrolls smoothly
Slightly reworked analog mouse movement + mouse acceleration (not as
janky anymore)
When starting DS4Windows, if no controllers are connected, DS4Windows
defaults to the profile tab
Certain log warnings (Like unable to get controller exclusively) shows
up in red
Easter egg: try pressing a few buttons in sequence while in the log tab
Fixed Start Profile with TP off being unchecked next time a profile is
opened
Other minor Bug Fixes, such as clearing the log then moving to a new tab
crashing DS4W
2015-01-17 21:16:48 +01:00
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DupBox));
|
2014-11-04 04:44:55 +01:00
|
|
|
|
this.btnSave = new System.Windows.Forms.Button();
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.tBProfile = new System.Windows.Forms.TextBox();
|
2014-11-04 04:44:55 +01:00
|
|
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
2014-11-04 04:44:55 +01:00
|
|
|
|
// btnSave
|
2014-05-30 22:39:39 +02:00
|
|
|
|
//
|
2014-11-04 04:44:55 +01:00
|
|
|
|
resources.ApplyResources(this.btnSave, "btnSave");
|
|
|
|
|
this.btnSave.Name = "btnSave";
|
|
|
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnSave.Click += new System.EventHandler(this.button1_Click);
|
2014-05-30 22:39:39 +02:00
|
|
|
|
//
|
|
|
|
|
// tBProfile
|
|
|
|
|
//
|
2014-08-17 00:09:15 +02:00
|
|
|
|
resources.ApplyResources(this.tBProfile, "tBProfile");
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.tBProfile.ForeColor = System.Drawing.SystemColors.GrayText;
|
|
|
|
|
this.tBProfile.Name = "tBProfile";
|
|
|
|
|
this.tBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged);
|
|
|
|
|
this.tBProfile.Enter += new System.EventHandler(this.tBProfile_Enter);
|
|
|
|
|
this.tBProfile.Leave += new System.EventHandler(this.tBProfile_Leave);
|
|
|
|
|
//
|
2014-11-04 04:44:55 +01:00
|
|
|
|
// btnCancel
|
2014-05-30 22:39:39 +02:00
|
|
|
|
//
|
2014-11-04 04:44:55 +01:00
|
|
|
|
resources.ApplyResources(this.btnCancel, "btnCancel");
|
|
|
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
|
|
|
this.btnCancel.Name = "btnCancel";
|
|
|
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnCancel.Click += new System.EventHandler(this.button2_Click);
|
2014-05-30 22:39:39 +02:00
|
|
|
|
//
|
Version 1.4.222
Added Press/Toggle Key to Special Actions, you can hold a trigger to
hold a key or toggle a key with one set of buttons, and untoggle it by
pressing or releasing another set of buttons
Added Disconnect BT to Special Actions, PS+Options to d/c is now added
to Special actions and can be enabled for each profile. You can now set
Disconnect BT to any control(s) and how long you need to hold the
control(s) to take affect
Added Partial German Translation (Thanks Michél)
Added 95% Finished Russian Translation (Thanks overclockers.ru members:
KoNoRIMCI & Sr_psycho)
Added Partial Italian Translation (Thanks Giulio)
Updates to the translations sheets, they should now have every bit of
text in DS4Windows, minus the controls of the controller
English Spelling fixes
Main/Starting tab only shows info for connected controllers, and context
menu only shows options for connected controllers.
Mouse wheel scrolling with analog sticks/triggers/gyro, the mouse now
scrolls smoothly
Slightly reworked analog mouse movement + mouse acceleration (not as
janky anymore)
When starting DS4Windows, if no controllers are connected, DS4Windows
defaults to the profile tab
Certain log warnings (Like unable to get controller exclusively) shows
up in red
Easter egg: try pressing a few buttons in sequence while in the log tab
Fixed Start Profile with TP off being unchecked next time a profile is
opened
Other minor Bug Fixes, such as clearing the log then moving to a new tab
crashing DS4W
2015-01-17 21:16:48 +01:00
|
|
|
|
// DupBox
|
2014-05-30 22:39:39 +02:00
|
|
|
|
//
|
2014-11-04 04:44:55 +01:00
|
|
|
|
this.AcceptButton = this.btnSave;
|
2014-08-17 00:09:15 +02:00
|
|
|
|
resources.ApplyResources(this, "$this");
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));
|
2014-11-04 04:44:55 +01:00
|
|
|
|
this.CancelButton = this.btnCancel;
|
|
|
|
|
this.Controls.Add(this.btnCancel);
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.Controls.Add(this.tBProfile);
|
2014-11-04 04:44:55 +01:00
|
|
|
|
this.Controls.Add(this.btnSave);
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
|
|
|
this.MaximizeBox = false;
|
|
|
|
|
this.MinimizeBox = false;
|
Version 1.4.222
Added Press/Toggle Key to Special Actions, you can hold a trigger to
hold a key or toggle a key with one set of buttons, and untoggle it by
pressing or releasing another set of buttons
Added Disconnect BT to Special Actions, PS+Options to d/c is now added
to Special actions and can be enabled for each profile. You can now set
Disconnect BT to any control(s) and how long you need to hold the
control(s) to take affect
Added Partial German Translation (Thanks Michél)
Added 95% Finished Russian Translation (Thanks overclockers.ru members:
KoNoRIMCI & Sr_psycho)
Added Partial Italian Translation (Thanks Giulio)
Updates to the translations sheets, they should now have every bit of
text in DS4Windows, minus the controls of the controller
English Spelling fixes
Main/Starting tab only shows info for connected controllers, and context
menu only shows options for connected controllers.
Mouse wheel scrolling with analog sticks/triggers/gyro, the mouse now
scrolls smoothly
Slightly reworked analog mouse movement + mouse acceleration (not as
janky anymore)
When starting DS4Windows, if no controllers are connected, DS4Windows
defaults to the profile tab
Certain log warnings (Like unable to get controller exclusively) shows
up in red
Easter egg: try pressing a few buttons in sequence while in the log tab
Fixed Start Profile with TP off being unchecked next time a profile is
opened
Other minor Bug Fixes, such as clearing the log then moving to a new tab
crashing DS4W
2015-01-17 21:16:48 +01:00
|
|
|
|
this.Name = "DupBox";
|
2014-05-30 22:39:39 +02:00
|
|
|
|
this.ShowInTaskbar = false;
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2014-11-04 04:44:55 +01:00
|
|
|
|
private System.Windows.Forms.Button btnSave;
|
2014-05-30 22:39:39 +02:00
|
|
|
|
private System.Windows.Forms.TextBox tBProfile;
|
2014-11-04 04:44:55 +01:00
|
|
|
|
private System.Windows.Forms.Button btnCancel;
|
2014-05-30 22:39:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|