aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-24 21:51:52 -0400
committerMichael <[email protected]>2017-04-24 21:51:52 -0400
commitd22957d2abb77f162ac5ef43a064a4ce056fc046 (patch)
treeff1cb2b143836b0b97a7a0e5dfe57a10c4a5efa4 /ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
parent99b438dd8f22fc95c7512b724618ca3e1c7af790 (diff)
downloadshiftos_thereturn-d22957d2abb77f162ac5ef43a064a4ce056fc046.tar.gz
shiftos_thereturn-d22957d2abb77f162ac5ef43a064a4ce056fc046.tar.bz2
shiftos_thereturn-d22957d2abb77f162ac5ef43a064a4ce056fc046.zip
audio player scrubbing
Diffstat (limited to 'ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs')
-rw-r--r--ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs15
1 files changed, 14 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs b/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
index 825413d..6263ff7 100644
--- a/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
+++ b/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
@@ -64,6 +64,7 @@ namespace ShiftOS.WinForms.Applications
this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shuffleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.loopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.wpaudio)).BeginInit();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
@@ -150,6 +151,9 @@ namespace ShiftOS.WinForms.Applications
this.pgplaytime.Tag = "keepbg";
this.pgplaytime.Text = "shiftedProgressBar1";
this.pgplaytime.Value = 0;
+ this.pgplaytime.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startScrub);
+ this.pgplaytime.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pgplaytime_MouseMove);
+ this.pgplaytime.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pgplaytime_MouseUp);
//
// menuStrip1
//
@@ -158,7 +162,8 @@ namespace ShiftOS.WinForms.Applications
this.addSongToolStripMenuItem,
this.clearToolStripMenuItem,
this.shuffleToolStripMenuItem,
- this.removeToolStripMenuItem});
+ this.removeToolStripMenuItem,
+ this.loopToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(798, 24);
@@ -193,6 +198,13 @@ namespace ShiftOS.WinForms.Applications
this.removeToolStripMenuItem.Text = "Remove";
this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
//
+ // loopToolStripMenuItem
+ //
+ this.loopToolStripMenuItem.CheckOnClick = true;
+ this.loopToolStripMenuItem.Name = "loopToolStripMenuItem";
+ this.loopToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
+ this.loopToolStripMenuItem.Text = "Loop";
+ //
// AudioPlayer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -229,5 +241,6 @@ namespace ShiftOS.WinForms.Applications
private System.Windows.Forms.FlowLayoutPanel flcontrols;
private System.Windows.Forms.Button btnplay;
private Controls.ShiftedProgressBar pgplaytime;
+ private System.Windows.Forms.ToolStripMenuItem loopToolStripMenuItem;
}
}