MainForm.Designer.cs 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182
  1. using System;
  2. namespace MusicPlayer
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. bool clicked = false;
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.components = new System.ComponentModel.Container();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  33. this.SongsTableView = new System.Windows.Forms.DataGridView();
  34. this.GenreListBox = new System.Windows.Forms.ListBox();
  35. this.AlbumListView = new System.Windows.Forms.ListView();
  36. this.ArtistListBox = new System.Windows.Forms.ListBox();
  37. this.MainPanel = new System.Windows.Forms.Panel();
  38. this.AddToQueueLabel = new System.Windows.Forms.Label();
  39. this.SplitContainer = new System.Windows.Forms.SplitContainer();
  40. this.PlaylistBox = new System.Windows.Forms.ListBox();
  41. this.AlbumListLabel = new System.Windows.Forms.Label();
  42. this.ArtistListLabel = new System.Windows.Forms.Label();
  43. this.GenreListLabel = new System.Windows.Forms.Label();
  44. this.PlaylistListLabel = new System.Windows.Forms.Label();
  45. this.MenuStrip = new System.Windows.Forms.MenuStrip();
  46. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  47. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  48. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  49. this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  50. this.overviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  51. this.playlistsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  52. this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
  53. this.ViewQueueButton = new System.Windows.Forms.ToolStripMenuItem();
  54. this.playbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  55. this.PlayNextSongButton = new System.Windows.Forms.ToolStripMenuItem();
  56. this.LoopSongButton = new System.Windows.Forms.ToolStripMenuItem();
  57. this.ShuffleSongButton = new System.Windows.Forms.ToolStripMenuItem();
  58. this.playlistToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  59. this.makeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  60. this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
  61. this.viewPlaylistToolstripMenuButton = new System.Windows.Forms.ToolStripMenuItem();
  62. this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  63. this.SearchGenresToolStripLabel = new System.Windows.Forms.ToolStripMenuItem();
  64. this.SearchGenresTextBox = new System.Windows.Forms.ToolStripTextBox();
  65. this.ClearGenreSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  66. this.SearchArtistToolStripLabel = new System.Windows.Forms.ToolStripMenuItem();
  67. this.SearchArtistsTextBox = new System.Windows.Forms.ToolStripTextBox();
  68. this.ClearArtistSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  69. this.songsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  70. this.SearchSongsTextBox = new System.Windows.Forms.ToolStripTextBox();
  71. this.SearchSongsButton = new System.Windows.Forms.ToolStripMenuItem();
  72. this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
  73. this.AdvancedSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  74. this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  75. this.serverToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  76. this.SelectServerJancoButton = new System.Windows.Forms.ToolStripMenuItem();
  77. this.SelectServerYorickButton = new System.Windows.Forms.ToolStripMenuItem();
  78. this.radioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  79. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  80. this.fMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  81. this.slamFMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  82. this.qDanceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  83. this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
  84. this.customToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  85. this.RadioStationTextBox = new System.Windows.Forms.ToolStripTextBox();
  86. this.SetRadioStationButton = new System.Windows.Forms.ToolStripMenuItem();
  87. this.ControlsPanel = new System.Windows.Forms.Panel();
  88. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  89. this.NextButton = new System.Windows.Forms.Button();
  90. this.PreviousButton = new System.Windows.Forms.Button();
  91. this.CurrentSongLabel = new System.Windows.Forms.Label();
  92. this.LabelTotalTime = new System.Windows.Forms.Label();
  93. this.LabelCurrentTime = new System.Windows.Forms.Label();
  94. this.PositionTrackBar = new System.Windows.Forms.TrackBar();
  95. this.BufferLabel = new System.Windows.Forms.Label();
  96. this.BufferBar = new System.Windows.Forms.ProgressBar();
  97. this.StopButton = new System.Windows.Forms.Button();
  98. this.PauseButton = new System.Windows.Forms.Button();
  99. this.PlayButton = new System.Windows.Forms.Button();
  100. this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
  101. this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
  102. this.NotifyMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  103. this.NotifyMenuStripPlayingLabel = new System.Windows.Forms.ToolStripMenuItem();
  104. this.NotifyMenuStripPlayingSongLabel = new System.Windows.Forms.ToolStripMenuItem();
  105. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  106. this.NotifyMenuStripPlayButton = new System.Windows.Forms.ToolStripMenuItem();
  107. this.NotifyMenuStripPauseButton = new System.Windows.Forms.ToolStripMenuItem();
  108. this.NotifyMenuStripStopButton = new System.Windows.Forms.ToolStripMenuItem();
  109. this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
  110. this.VolumeMenuStripButton = new System.Windows.Forms.ToolStripMenuItem();
  111. this.VolumeCurrentLabel = new System.Windows.Forms.ToolStripMenuItem();
  112. this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
  113. this.Volume100Button = new System.Windows.Forms.ToolStripMenuItem();
  114. this.Volume75Button = new System.Windows.Forms.ToolStripMenuItem();
  115. this.Volume50Button = new System.Windows.Forms.ToolStripMenuItem();
  116. this.Volume25Button = new System.Windows.Forms.ToolStripMenuItem();
  117. this.Volume0Button = new System.Windows.Forms.ToolStripMenuItem();
  118. this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
  119. this.VolumeCustomButton = new System.Windows.Forms.ToolStripMenuItem();
  120. this.VolumeCustomTextBox = new System.Windows.Forms.ToolStripTextBox();
  121. this.VolumeCustomSetButton = new System.Windows.Forms.ToolStripMenuItem();
  122. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  123. this.NotifyMenuStripNextButton = new System.Windows.Forms.ToolStripMenuItem();
  124. this.NotifyMenuStripPreviousButton = new System.Windows.Forms.ToolStripMenuItem();
  125. this.VolumeControl = new System.Windows.Forms.NumericUpDown();
  126. this.VolumeLabel = new System.Windows.Forms.Label();
  127. this.SaveBufferButton = new System.Windows.Forms.ToolStripMenuItem();
  128. this.ExitNotifyIconMenuStrip = new System.Windows.Forms.ToolStripMenuItem();
  129. this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
  130. ((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).BeginInit();
  131. this.MainPanel.SuspendLayout();
  132. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).BeginInit();
  133. this.SplitContainer.Panel1.SuspendLayout();
  134. this.SplitContainer.Panel2.SuspendLayout();
  135. this.SplitContainer.SuspendLayout();
  136. this.MenuStrip.SuspendLayout();
  137. this.ControlsPanel.SuspendLayout();
  138. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  139. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).BeginInit();
  140. this.NotifyMenuStrip.SuspendLayout();
  141. ((System.ComponentModel.ISupportInitialize)(this.VolumeControl)).BeginInit();
  142. this.SuspendLayout();
  143. //
  144. // SongsTableView
  145. //
  146. this.SongsTableView.AllowUserToAddRows = false;
  147. this.SongsTableView.AllowUserToDeleteRows = false;
  148. this.SongsTableView.AllowUserToResizeRows = false;
  149. this.SongsTableView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  150. this.SongsTableView.BackgroundColor = System.Drawing.SystemColors.Control;
  151. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  152. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.ControlLight;
  153. dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  154. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
  155. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  156. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  157. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  158. this.SongsTableView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  159. this.SongsTableView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  160. this.SongsTableView.Dock = System.Windows.Forms.DockStyle.Fill;
  161. this.SongsTableView.Location = new System.Drawing.Point(0, 0);
  162. this.SongsTableView.MultiSelect = false;
  163. this.SongsTableView.Name = "SongsTableView";
  164. this.SongsTableView.ReadOnly = true;
  165. this.SongsTableView.RowHeadersVisible = false;
  166. this.SongsTableView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  167. this.SongsTableView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  168. this.SongsTableView.Size = new System.Drawing.Size(760, 174);
  169. this.SongsTableView.TabIndex = 0;
  170. this.SongsTableView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.SongsTableView_CellDoubleClick);
  171. this.SongsTableView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseDown);
  172. this.SongsTableView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseMove);
  173. this.SongsTableView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseUp);
  174. //
  175. // GenreListBox
  176. //
  177. this.GenreListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  178. | System.Windows.Forms.AnchorStyles.Left)));
  179. this.GenreListBox.BackColor = System.Drawing.SystemColors.Control;
  180. this.GenreListBox.FormattingEnabled = true;
  181. this.GenreListBox.Location = new System.Drawing.Point(0, 0);
  182. this.GenreListBox.Name = "GenreListBox";
  183. this.GenreListBox.Size = new System.Drawing.Size(175, 121);
  184. this.GenreListBox.Sorted = true;
  185. this.GenreListBox.TabIndex = 1;
  186. this.GenreListBox.SelectedIndexChanged += new System.EventHandler(this.GenreListBox_SelectedIndexChanged);
  187. //
  188. // AlbumListView
  189. //
  190. this.AlbumListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  191. | System.Windows.Forms.AnchorStyles.Left)
  192. | System.Windows.Forms.AnchorStyles.Right)));
  193. this.AlbumListView.BackColor = System.Drawing.SystemColors.Control;
  194. this.AlbumListView.Location = new System.Drawing.Point(362, 0);
  195. this.AlbumListView.MultiSelect = false;
  196. this.AlbumListView.Name = "AlbumListView";
  197. this.AlbumListView.Size = new System.Drawing.Size(398, 121);
  198. this.AlbumListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
  199. this.AlbumListView.TabIndex = 2;
  200. this.AlbumListView.TileSize = new System.Drawing.Size(185, 30);
  201. this.AlbumListView.UseCompatibleStateImageBehavior = false;
  202. this.AlbumListView.View = System.Windows.Forms.View.Tile;
  203. this.AlbumListView.SelectedIndexChanged += new System.EventHandler(this.AlbumListView_SelectedIndexChanged);
  204. //
  205. // ArtistListBox
  206. //
  207. this.ArtistListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  208. | System.Windows.Forms.AnchorStyles.Left)));
  209. this.ArtistListBox.BackColor = System.Drawing.SystemColors.Control;
  210. this.ArtistListBox.FormattingEnabled = true;
  211. this.ArtistListBox.Location = new System.Drawing.Point(181, 0);
  212. this.ArtistListBox.Name = "ArtistListBox";
  213. this.ArtistListBox.Size = new System.Drawing.Size(175, 121);
  214. this.ArtistListBox.Sorted = true;
  215. this.ArtistListBox.TabIndex = 3;
  216. this.ArtistListBox.SelectedIndexChanged += new System.EventHandler(this.ArtistListBox_SelectedIndexChanged);
  217. //
  218. // MainPanel
  219. //
  220. this.MainPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  221. | System.Windows.Forms.AnchorStyles.Left)
  222. | System.Windows.Forms.AnchorStyles.Right)));
  223. this.MainPanel.BackColor = System.Drawing.SystemColors.Window;
  224. this.MainPanel.Controls.Add(this.AddToQueueLabel);
  225. this.MainPanel.Controls.Add(this.SplitContainer);
  226. this.MainPanel.Controls.Add(this.AlbumListLabel);
  227. this.MainPanel.Controls.Add(this.ArtistListLabel);
  228. this.MainPanel.Controls.Add(this.GenreListLabel);
  229. this.MainPanel.Controls.Add(this.PlaylistListLabel);
  230. this.MainPanel.Location = new System.Drawing.Point(0, 24);
  231. this.MainPanel.Name = "MainPanel";
  232. this.MainPanel.Size = new System.Drawing.Size(784, 351);
  233. this.MainPanel.TabIndex = 5;
  234. //
  235. // AddToQueueLabel
  236. //
  237. this.AddToQueueLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  238. this.AddToQueueLabel.AutoSize = true;
  239. this.AddToQueueLabel.BackColor = System.Drawing.SystemColors.Control;
  240. this.AddToQueueLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  241. this.AddToQueueLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  242. this.AddToQueueLabel.Location = new System.Drawing.Point(668, 4);
  243. this.AddToQueueLabel.Name = "AddToQueueLabel";
  244. this.AddToQueueLabel.Size = new System.Drawing.Size(104, 18);
  245. this.AddToQueueLabel.TabIndex = 10;
  246. this.AddToQueueLabel.Text = "Add to Queue";
  247. this.AddToQueueLabel.Visible = false;
  248. //
  249. // SplitContainer
  250. //
  251. this.SplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  252. | System.Windows.Forms.AnchorStyles.Left)
  253. | System.Windows.Forms.AnchorStyles.Right)));
  254. this.SplitContainer.Location = new System.Drawing.Point(12, 25);
  255. this.SplitContainer.Name = "SplitContainer";
  256. this.SplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
  257. //
  258. // SplitContainer.Panel1
  259. //
  260. this.SplitContainer.Panel1.Controls.Add(this.AlbumListView);
  261. this.SplitContainer.Panel1.Controls.Add(this.ArtistListBox);
  262. this.SplitContainer.Panel1.Controls.Add(this.GenreListBox);
  263. this.SplitContainer.Panel1.Controls.Add(this.PlaylistBox);
  264. //
  265. // SplitContainer.Panel2
  266. //
  267. this.SplitContainer.Panel2.Controls.Add(this.SongsTableView);
  268. this.SplitContainer.Size = new System.Drawing.Size(760, 313);
  269. this.SplitContainer.SplitterDistance = 131;
  270. this.SplitContainer.SplitterWidth = 8;
  271. this.SplitContainer.TabIndex = 9;
  272. //
  273. // PlaylistBox
  274. //
  275. this.PlaylistBox.BackColor = System.Drawing.SystemColors.Control;
  276. this.PlaylistBox.Dock = System.Windows.Forms.DockStyle.Fill;
  277. this.PlaylistBox.FormattingEnabled = true;
  278. this.PlaylistBox.Location = new System.Drawing.Point(0, 0);
  279. this.PlaylistBox.Name = "PlaylistBox";
  280. this.PlaylistBox.Size = new System.Drawing.Size(760, 131);
  281. this.PlaylistBox.TabIndex = 4;
  282. this.PlaylistBox.Visible = false;
  283. this.PlaylistBox.SelectedIndexChanged += new System.EventHandler(this.PlaylistBox_SelectedIndexChanged);
  284. //
  285. // AlbumListLabel
  286. //
  287. this.AlbumListLabel.AutoSize = true;
  288. this.AlbumListLabel.Location = new System.Drawing.Point(371, 9);
  289. this.AlbumListLabel.Name = "AlbumListLabel";
  290. this.AlbumListLabel.Size = new System.Drawing.Size(36, 13);
  291. this.AlbumListLabel.TabIndex = 6;
  292. this.AlbumListLabel.Text = "Album";
  293. //
  294. // ArtistListLabel
  295. //
  296. this.ArtistListLabel.AutoSize = true;
  297. this.ArtistListLabel.Location = new System.Drawing.Point(190, 9);
  298. this.ArtistListLabel.Name = "ArtistListLabel";
  299. this.ArtistListLabel.Size = new System.Drawing.Size(30, 13);
  300. this.ArtistListLabel.TabIndex = 5;
  301. this.ArtistListLabel.Text = "Artist";
  302. //
  303. // GenreListLabel
  304. //
  305. this.GenreListLabel.AutoSize = true;
  306. this.GenreListLabel.Location = new System.Drawing.Point(9, 9);
  307. this.GenreListLabel.Name = "GenreListLabel";
  308. this.GenreListLabel.Size = new System.Drawing.Size(36, 13);
  309. this.GenreListLabel.TabIndex = 4;
  310. this.GenreListLabel.Text = "Genre";
  311. //
  312. // PlaylistListLabel
  313. //
  314. this.PlaylistListLabel.AutoSize = true;
  315. this.PlaylistListLabel.Location = new System.Drawing.Point(12, 9);
  316. this.PlaylistListLabel.Name = "PlaylistListLabel";
  317. this.PlaylistListLabel.Size = new System.Drawing.Size(39, 13);
  318. this.PlaylistListLabel.TabIndex = 7;
  319. this.PlaylistListLabel.Text = "Playlist";
  320. this.PlaylistListLabel.Visible = false;
  321. //
  322. // MenuStrip
  323. //
  324. this.MenuStrip.BackColor = System.Drawing.SystemColors.GrayText;
  325. this.MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  326. this.fileToolStripMenuItem,
  327. this.viewToolStripMenuItem,
  328. this.playbackToolStripMenuItem,
  329. this.playlistToolStripMenuItem,
  330. this.searchToolStripMenuItem,
  331. this.serverToolStripMenuItem,
  332. this.radioToolStripMenuItem});
  333. this.MenuStrip.Location = new System.Drawing.Point(0, 0);
  334. this.MenuStrip.Name = "MenuStrip";
  335. this.MenuStrip.Size = new System.Drawing.Size(784, 24);
  336. this.MenuStrip.TabIndex = 6;
  337. this.MenuStrip.Text = "Menu";
  338. //
  339. // fileToolStripMenuItem
  340. //
  341. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  342. this.SaveBufferButton,
  343. this.toolStripSeparator1,
  344. this.exitToolStripMenuItem});
  345. this.fileToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText;
  346. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  347. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  348. this.fileToolStripMenuItem.Text = "File";
  349. //
  350. // toolStripSeparator1
  351. //
  352. this.toolStripSeparator1.Name = "toolStripSeparator1";
  353. this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
  354. //
  355. // exitToolStripMenuItem
  356. //
  357. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  358. this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  359. this.exitToolStripMenuItem.Text = "Exit";
  360. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
  361. //
  362. // viewToolStripMenuItem
  363. //
  364. this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  365. this.overviewToolStripMenuItem,
  366. this.playlistsToolStripMenuItem,
  367. this.toolStripSeparator4,
  368. this.ViewQueueButton});
  369. this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
  370. this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
  371. this.viewToolStripMenuItem.Text = "View";
  372. //
  373. // overviewToolStripMenuItem
  374. //
  375. this.overviewToolStripMenuItem.Name = "overviewToolStripMenuItem";
  376. this.overviewToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  377. this.overviewToolStripMenuItem.Text = "Overview";
  378. this.overviewToolStripMenuItem.Click += new System.EventHandler(this.overviewToolStripMenuItem_Click);
  379. //
  380. // playlistsToolStripMenuItem
  381. //
  382. this.playlistsToolStripMenuItem.Name = "playlistsToolStripMenuItem";
  383. this.playlistsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  384. this.playlistsToolStripMenuItem.Text = "Playlists";
  385. this.playlistsToolStripMenuItem.Click += new System.EventHandler(this.playlistsToolStripMenuItem_Click);
  386. //
  387. // toolStripSeparator4
  388. //
  389. this.toolStripSeparator4.Name = "toolStripSeparator4";
  390. this.toolStripSeparator4.Size = new System.Drawing.Size(149, 6);
  391. //
  392. // ViewQueueButton
  393. //
  394. this.ViewQueueButton.Name = "ViewQueueButton";
  395. this.ViewQueueButton.Size = new System.Drawing.Size(152, 22);
  396. this.ViewQueueButton.Text = "Queue";
  397. this.ViewQueueButton.Click += new System.EventHandler(this.ViewCurrentPlaylistButton_Click);
  398. //
  399. // playbackToolStripMenuItem
  400. //
  401. this.playbackToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  402. this.PlayNextSongButton,
  403. this.LoopSongButton,
  404. this.ShuffleSongButton});
  405. this.playbackToolStripMenuItem.Name = "playbackToolStripMenuItem";
  406. this.playbackToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
  407. this.playbackToolStripMenuItem.Text = "Playback";
  408. //
  409. // PlayNextSongButton
  410. //
  411. this.PlayNextSongButton.Checked = true;
  412. this.PlayNextSongButton.CheckOnClick = true;
  413. this.PlayNextSongButton.CheckState = System.Windows.Forms.CheckState.Checked;
  414. this.PlayNextSongButton.Name = "PlayNextSongButton";
  415. this.PlayNextSongButton.Size = new System.Drawing.Size(152, 22);
  416. this.PlayNextSongButton.Text = "Play Next";
  417. //
  418. // LoopSongButton
  419. //
  420. this.LoopSongButton.Checked = true;
  421. this.LoopSongButton.CheckOnClick = true;
  422. this.LoopSongButton.CheckState = System.Windows.Forms.CheckState.Checked;
  423. this.LoopSongButton.Name = "LoopSongButton";
  424. this.LoopSongButton.Size = new System.Drawing.Size(152, 22);
  425. this.LoopSongButton.Text = "Loop";
  426. //
  427. // ShuffleSongButton
  428. //
  429. this.ShuffleSongButton.CheckOnClick = true;
  430. this.ShuffleSongButton.Enabled = false;
  431. this.ShuffleSongButton.Name = "ShuffleSongButton";
  432. this.ShuffleSongButton.Size = new System.Drawing.Size(152, 22);
  433. this.ShuffleSongButton.Text = "Shuffle";
  434. //
  435. // playlistToolStripMenuItem
  436. //
  437. this.playlistToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  438. this.makeToolStripMenuItem,
  439. this.toolStripSeparator6,
  440. this.viewPlaylistToolstripMenuButton});
  441. this.playlistToolStripMenuItem.Name = "playlistToolStripMenuItem";
  442. this.playlistToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
  443. this.playlistToolStripMenuItem.Text = "Playlist";
  444. //
  445. // makeToolStripMenuItem
  446. //
  447. this.makeToolStripMenuItem.Name = "makeToolStripMenuItem";
  448. this.makeToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  449. this.makeToolStripMenuItem.Text = "Create / Edit";
  450. this.makeToolStripMenuItem.Click += new System.EventHandler(this.makeToolStripMenuItem_Click);
  451. //
  452. // toolStripSeparator6
  453. //
  454. this.toolStripSeparator6.Name = "toolStripSeparator6";
  455. this.toolStripSeparator6.Size = new System.Drawing.Size(149, 6);
  456. //
  457. // viewPlaylistToolstripMenuButton
  458. //
  459. this.viewPlaylistToolstripMenuButton.Name = "viewPlaylistToolstripMenuButton";
  460. this.viewPlaylistToolstripMenuButton.Size = new System.Drawing.Size(152, 22);
  461. this.viewPlaylistToolstripMenuButton.Text = "View";
  462. this.viewPlaylistToolstripMenuButton.Click += new System.EventHandler(this.playlistsToolStripMenuItem_Click);
  463. //
  464. // searchToolStripMenuItem
  465. //
  466. this.searchToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  467. this.SearchGenresToolStripLabel,
  468. this.SearchArtistToolStripLabel,
  469. this.songsToolStripMenuItem,
  470. this.toolStripSeparator7,
  471. this.AdvancedSearchButton,
  472. this.resetToolStripMenuItem});
  473. this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
  474. this.searchToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
  475. this.searchToolStripMenuItem.Text = "Search";
  476. //
  477. // SearchGenresToolStripLabel
  478. //
  479. this.SearchGenresToolStripLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  480. this.SearchGenresTextBox,
  481. this.ClearGenreSearchButton});
  482. this.SearchGenresToolStripLabel.Name = "SearchGenresToolStripLabel";
  483. this.SearchGenresToolStripLabel.Size = new System.Drawing.Size(152, 22);
  484. this.SearchGenresToolStripLabel.Text = "Genres";
  485. //
  486. // SearchGenresTextBox
  487. //
  488. this.SearchGenresTextBox.Name = "SearchGenresTextBox";
  489. this.SearchGenresTextBox.Size = new System.Drawing.Size(100, 23);
  490. this.SearchGenresTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchGenresTextBox_KeyUp);
  491. //
  492. // ClearGenreSearchButton
  493. //
  494. this.ClearGenreSearchButton.Enabled = false;
  495. this.ClearGenreSearchButton.Name = "ClearGenreSearchButton";
  496. this.ClearGenreSearchButton.Size = new System.Drawing.Size(160, 22);
  497. this.ClearGenreSearchButton.Text = "Clear Search";
  498. this.ClearGenreSearchButton.Click += new System.EventHandler(this.ClearGenreSearchButton_Click);
  499. //
  500. // SearchArtistToolStripLabel
  501. //
  502. this.SearchArtistToolStripLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  503. this.SearchArtistsTextBox,
  504. this.ClearArtistSearchButton});
  505. this.SearchArtistToolStripLabel.Name = "SearchArtistToolStripLabel";
  506. this.SearchArtistToolStripLabel.Size = new System.Drawing.Size(152, 22);
  507. this.SearchArtistToolStripLabel.Text = "Artists";
  508. //
  509. // SearchArtistsTextBox
  510. //
  511. this.SearchArtistsTextBox.Name = "SearchArtistsTextBox";
  512. this.SearchArtistsTextBox.Size = new System.Drawing.Size(100, 23);
  513. this.SearchArtistsTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchArtistsTextBox_KeyUp);
  514. //
  515. // ClearArtistSearchButton
  516. //
  517. this.ClearArtistSearchButton.Enabled = false;
  518. this.ClearArtistSearchButton.Name = "ClearArtistSearchButton";
  519. this.ClearArtistSearchButton.Size = new System.Drawing.Size(160, 22);
  520. this.ClearArtistSearchButton.Text = "Clear Search";
  521. this.ClearArtistSearchButton.Click += new System.EventHandler(this.ClearArtistSearchButton_Click);
  522. //
  523. // songsToolStripMenuItem
  524. //
  525. this.songsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  526. this.SearchSongsTextBox,
  527. this.SearchSongsButton});
  528. this.songsToolStripMenuItem.Name = "songsToolStripMenuItem";
  529. this.songsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  530. this.songsToolStripMenuItem.Text = "Songs";
  531. //
  532. // SearchSongsTextBox
  533. //
  534. this.SearchSongsTextBox.Name = "SearchSongsTextBox";
  535. this.SearchSongsTextBox.Size = new System.Drawing.Size(100, 23);
  536. //
  537. // SearchSongsButton
  538. //
  539. this.SearchSongsButton.Enabled = false;
  540. this.SearchSongsButton.Name = "SearchSongsButton";
  541. this.SearchSongsButton.Size = new System.Drawing.Size(160, 22);
  542. this.SearchSongsButton.Text = "Search";
  543. this.SearchSongsButton.Click += new System.EventHandler(this.SearchSongsButton_Click);
  544. //
  545. // toolStripSeparator7
  546. //
  547. this.toolStripSeparator7.Name = "toolStripSeparator7";
  548. this.toolStripSeparator7.Size = new System.Drawing.Size(149, 6);
  549. //
  550. // AdvancedSearchButton
  551. //
  552. this.AdvancedSearchButton.Name = "AdvancedSearchButton";
  553. this.AdvancedSearchButton.Size = new System.Drawing.Size(152, 22);
  554. this.AdvancedSearchButton.Text = "Advanced";
  555. this.AdvancedSearchButton.Click += new System.EventHandler(this.AdvancedSearchButton_Click);
  556. //
  557. // resetToolStripMenuItem
  558. //
  559. this.resetToolStripMenuItem.Name = "resetToolStripMenuItem";
  560. this.resetToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  561. this.resetToolStripMenuItem.Text = "Reset";
  562. this.resetToolStripMenuItem.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
  563. //
  564. // serverToolStripMenuItem
  565. //
  566. this.serverToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  567. this.SelectServerJancoButton,
  568. this.SelectServerYorickButton});
  569. this.serverToolStripMenuItem.Name = "serverToolStripMenuItem";
  570. this.serverToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
  571. this.serverToolStripMenuItem.Text = "Server";
  572. //
  573. // SelectServerJancoButton
  574. //
  575. this.SelectServerJancoButton.Name = "SelectServerJancoButton";
  576. this.SelectServerJancoButton.Size = new System.Drawing.Size(152, 22);
  577. this.SelectServerJancoButton.Text = "jancokock.me";
  578. this.SelectServerJancoButton.Click += new System.EventHandler(this.SelectServerJancoButton_Click);
  579. //
  580. // SelectServerYorickButton
  581. //
  582. this.SelectServerYorickButton.Name = "SelectServerYorickButton";
  583. this.SelectServerYorickButton.Size = new System.Drawing.Size(152, 22);
  584. this.SelectServerYorickButton.Text = "imegumii.nl";
  585. this.SelectServerYorickButton.Click += new System.EventHandler(this.SelectServerYorickButton_Click);
  586. //
  587. // radioToolStripMenuItem
  588. //
  589. this.radioToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  590. this.toolStripMenuItem2,
  591. this.fMToolStripMenuItem,
  592. this.slamFMToolStripMenuItem,
  593. this.qDanceToolStripMenuItem,
  594. this.toolStripSeparator5,
  595. this.customToolStripMenuItem});
  596. this.radioToolStripMenuItem.Name = "radioToolStripMenuItem";
  597. this.radioToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
  598. this.radioToolStripMenuItem.Text = "Radio";
  599. //
  600. // toolStripMenuItem2
  601. //
  602. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  603. this.toolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
  604. this.toolStripMenuItem2.Text = "538";
  605. this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  606. //
  607. // fMToolStripMenuItem
  608. //
  609. this.fMToolStripMenuItem.Name = "fMToolStripMenuItem";
  610. this.fMToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  611. this.fMToolStripMenuItem.Text = "3FM";
  612. this.fMToolStripMenuItem.Click += new System.EventHandler(this.fMToolStripMenuItem_Click);
  613. //
  614. // slamFMToolStripMenuItem
  615. //
  616. this.slamFMToolStripMenuItem.Name = "slamFMToolStripMenuItem";
  617. this.slamFMToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  618. this.slamFMToolStripMenuItem.Text = "Slam-FM";
  619. this.slamFMToolStripMenuItem.Click += new System.EventHandler(this.slamFMToolStripMenuItem_Click);
  620. //
  621. // qDanceToolStripMenuItem
  622. //
  623. this.qDanceToolStripMenuItem.Name = "qDanceToolStripMenuItem";
  624. this.qDanceToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  625. this.qDanceToolStripMenuItem.Text = "Q-Dance";
  626. this.qDanceToolStripMenuItem.Click += new System.EventHandler(this.qDanceToolStripMenuItem_Click);
  627. //
  628. // toolStripSeparator5
  629. //
  630. this.toolStripSeparator5.Name = "toolStripSeparator5";
  631. this.toolStripSeparator5.Size = new System.Drawing.Size(149, 6);
  632. //
  633. // customToolStripMenuItem
  634. //
  635. this.customToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  636. this.RadioStationTextBox,
  637. this.SetRadioStationButton});
  638. this.customToolStripMenuItem.Name = "customToolStripMenuItem";
  639. this.customToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  640. this.customToolStripMenuItem.Text = "Custom";
  641. //
  642. // RadioStationTextBox
  643. //
  644. this.RadioStationTextBox.Name = "RadioStationTextBox";
  645. this.RadioStationTextBox.Size = new System.Drawing.Size(100, 23);
  646. //
  647. // SetRadioStationButton
  648. //
  649. this.SetRadioStationButton.Name = "SetRadioStationButton";
  650. this.SetRadioStationButton.Size = new System.Drawing.Size(160, 22);
  651. this.SetRadioStationButton.Text = "Set";
  652. this.SetRadioStationButton.Click += new System.EventHandler(this.SetRadioStationButton_Click);
  653. //
  654. // ControlsPanel
  655. //
  656. this.ControlsPanel.BackColor = System.Drawing.SystemColors.GrayText;
  657. this.ControlsPanel.Controls.Add(this.pictureBox1);
  658. this.ControlsPanel.Controls.Add(this.NextButton);
  659. this.ControlsPanel.Controls.Add(this.PreviousButton);
  660. this.ControlsPanel.Controls.Add(this.CurrentSongLabel);
  661. this.ControlsPanel.Controls.Add(this.LabelTotalTime);
  662. this.ControlsPanel.Controls.Add(this.LabelCurrentTime);
  663. this.ControlsPanel.Controls.Add(this.PositionTrackBar);
  664. this.ControlsPanel.Controls.Add(this.BufferLabel);
  665. this.ControlsPanel.Controls.Add(this.BufferBar);
  666. this.ControlsPanel.Controls.Add(this.StopButton);
  667. this.ControlsPanel.Controls.Add(this.PauseButton);
  668. this.ControlsPanel.Controls.Add(this.PlayButton);
  669. this.ControlsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
  670. this.ControlsPanel.Location = new System.Drawing.Point(0, 378);
  671. this.ControlsPanel.Name = "ControlsPanel";
  672. this.ControlsPanel.Size = new System.Drawing.Size(784, 83);
  673. this.ControlsPanel.TabIndex = 4;
  674. //
  675. // pictureBox1
  676. //
  677. this.pictureBox1.BackColor = System.Drawing.SystemColors.Control;
  678. this.pictureBox1.Location = new System.Drawing.Point(5, 5);
  679. this.pictureBox1.Name = "pictureBox1";
  680. this.pictureBox1.Size = new System.Drawing.Size(72, 72);
  681. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  682. this.pictureBox1.TabIndex = 14;
  683. this.pictureBox1.TabStop = false;
  684. //
  685. // NextButton
  686. //
  687. this.NextButton.Location = new System.Drawing.Point(295, 54);
  688. this.NextButton.Name = "NextButton";
  689. this.NextButton.Size = new System.Drawing.Size(31, 23);
  690. this.NextButton.TabIndex = 13;
  691. this.NextButton.Text = ">";
  692. this.NextButton.UseVisualStyleBackColor = true;
  693. this.NextButton.Click += new System.EventHandler(this.NextButton_Click);
  694. //
  695. // PreviousButton
  696. //
  697. this.PreviousButton.Location = new System.Drawing.Point(258, 54);
  698. this.PreviousButton.Name = "PreviousButton";
  699. this.PreviousButton.Size = new System.Drawing.Size(31, 23);
  700. this.PreviousButton.TabIndex = 12;
  701. this.PreviousButton.Text = "<";
  702. this.PreviousButton.UseVisualStyleBackColor = true;
  703. this.PreviousButton.Click += new System.EventHandler(this.PreviousButton_Click);
  704. //
  705. // CurrentSongLabel
  706. //
  707. this.CurrentSongLabel.AutoSize = true;
  708. this.CurrentSongLabel.Location = new System.Drawing.Point(332, 59);
  709. this.CurrentSongLabel.Name = "CurrentSongLabel";
  710. this.CurrentSongLabel.Size = new System.Drawing.Size(111, 13);
  711. this.CurrentSongLabel.TabIndex = 11;
  712. this.CurrentSongLabel.Text = "Not playing any songs";
  713. //
  714. // LabelTotalTime
  715. //
  716. this.LabelTotalTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  717. this.LabelTotalTime.AutoSize = true;
  718. this.LabelTotalTime.Location = new System.Drawing.Point(723, 26);
  719. this.LabelTotalTime.Name = "LabelTotalTime";
  720. this.LabelTotalTime.Size = new System.Drawing.Size(49, 13);
  721. this.LabelTotalTime.TabIndex = 9;
  722. this.LabelTotalTime.Text = "00:00:00";
  723. //
  724. // LabelCurrentTime
  725. //
  726. this.LabelCurrentTime.AutoSize = true;
  727. this.LabelCurrentTime.Location = new System.Drawing.Point(93, 29);
  728. this.LabelCurrentTime.Name = "LabelCurrentTime";
  729. this.LabelCurrentTime.Size = new System.Drawing.Size(49, 13);
  730. this.LabelCurrentTime.TabIndex = 8;
  731. this.LabelCurrentTime.Text = "00:00:00";
  732. //
  733. // PositionTrackBar
  734. //
  735. this.PositionTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  736. | System.Windows.Forms.AnchorStyles.Right)));
  737. this.PositionTrackBar.Enabled = false;
  738. this.PositionTrackBar.Location = new System.Drawing.Point(83, 3);
  739. this.PositionTrackBar.Maximum = 1000;
  740. this.PositionTrackBar.Name = "PositionTrackBar";
  741. this.PositionTrackBar.Size = new System.Drawing.Size(698, 45);
  742. this.PositionTrackBar.TabIndex = 7;
  743. this.PositionTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
  744. this.PositionTrackBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PositionTrackBar_MouseDown);
  745. //
  746. // BufferLabel
  747. //
  748. this.BufferLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  749. this.BufferLabel.AutoSize = true;
  750. this.BufferLabel.Location = new System.Drawing.Point(601, 56);
  751. this.BufferLabel.Name = "BufferLabel";
  752. this.BufferLabel.Size = new System.Drawing.Size(35, 13);
  753. this.BufferLabel.TabIndex = 5;
  754. this.BufferLabel.Text = "Buffer";
  755. //
  756. // BufferBar
  757. //
  758. this.BufferBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  759. this.BufferBar.Location = new System.Drawing.Point(642, 51);
  760. this.BufferBar.Name = "BufferBar";
  761. this.BufferBar.Size = new System.Drawing.Size(130, 23);
  762. this.BufferBar.TabIndex = 3;
  763. //
  764. // StopButton
  765. //
  766. this.StopButton.Enabled = false;
  767. this.StopButton.Location = new System.Drawing.Point(203, 54);
  768. this.StopButton.Name = "StopButton";
  769. this.StopButton.Size = new System.Drawing.Size(49, 23);
  770. this.StopButton.TabIndex = 2;
  771. this.StopButton.Text = "Stop";
  772. this.StopButton.UseVisualStyleBackColor = true;
  773. this.StopButton.Click += new System.EventHandler(this.StopButton_Click);
  774. //
  775. // PauseButton
  776. //
  777. this.PauseButton.Enabled = false;
  778. this.PauseButton.Location = new System.Drawing.Point(148, 54);
  779. this.PauseButton.Name = "PauseButton";
  780. this.PauseButton.Size = new System.Drawing.Size(49, 23);
  781. this.PauseButton.TabIndex = 1;
  782. this.PauseButton.Text = "Pause";
  783. this.PauseButton.UseVisualStyleBackColor = true;
  784. this.PauseButton.Click += new System.EventHandler(this.PauseButton_Click);
  785. //
  786. // PlayButton
  787. //
  788. this.PlayButton.Location = new System.Drawing.Point(93, 54);
  789. this.PlayButton.Name = "PlayButton";
  790. this.PlayButton.Size = new System.Drawing.Size(49, 23);
  791. this.PlayButton.TabIndex = 0;
  792. this.PlayButton.Text = "Play";
  793. this.PlayButton.UseVisualStyleBackColor = true;
  794. this.PlayButton.Click += new System.EventHandler(this.PlayButton_Click);
  795. //
  796. // UpdateTimer
  797. //
  798. this.UpdateTimer.Interval = 200;
  799. this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
  800. //
  801. // NotifyIcon
  802. //
  803. this.NotifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
  804. this.NotifyIcon.BalloonTipText = "YJMPD Music player stays active in the background. Click to show.";
  805. this.NotifyIcon.BalloonTipTitle = "YJMPD Minimized";
  806. this.NotifyIcon.ContextMenuStrip = this.NotifyMenuStrip;
  807. this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
  808. this.NotifyIcon.Text = "YJMPD Music Player. Click to show.";
  809. this.NotifyIcon.Visible = true;
  810. this.NotifyIcon.BalloonTipClicked += new System.EventHandler(this.NotifyIcon_BalloonTipClicked);
  811. this.NotifyIcon.MouseUp += new System.Windows.Forms.MouseEventHandler(this.NotifyIcon_Click);
  812. //
  813. // NotifyMenuStrip
  814. //
  815. this.NotifyMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  816. this.NotifyMenuStripPlayingLabel,
  817. this.toolStripSeparator2,
  818. this.NotifyMenuStripPlayButton,
  819. this.NotifyMenuStripPauseButton,
  820. this.NotifyMenuStripStopButton,
  821. this.toolStripSeparator8,
  822. this.VolumeMenuStripButton,
  823. this.toolStripSeparator3,
  824. this.NotifyMenuStripNextButton,
  825. this.NotifyMenuStripPreviousButton,
  826. this.toolStripSeparator11,
  827. this.ExitNotifyIconMenuStrip});
  828. this.NotifyMenuStrip.Name = "NotifyMenuStrip";
  829. this.NotifyMenuStrip.Size = new System.Drawing.Size(153, 226);
  830. //
  831. // NotifyMenuStripPlayingLabel
  832. //
  833. this.NotifyMenuStripPlayingLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  834. this.NotifyMenuStripPlayingSongLabel});
  835. this.NotifyMenuStripPlayingLabel.Enabled = false;
  836. this.NotifyMenuStripPlayingLabel.Name = "NotifyMenuStripPlayingLabel";
  837. this.NotifyMenuStripPlayingLabel.Size = new System.Drawing.Size(152, 22);
  838. this.NotifyMenuStripPlayingLabel.Text = "Stopped";
  839. //
  840. // NotifyMenuStripPlayingSongLabel
  841. //
  842. this.NotifyMenuStripPlayingSongLabel.Enabled = false;
  843. this.NotifyMenuStripPlayingSongLabel.Name = "NotifyMenuStripPlayingSongLabel";
  844. this.NotifyMenuStripPlayingSongLabel.Size = new System.Drawing.Size(118, 22);
  845. this.NotifyMenuStripPlayingSongLabel.Text = "Stopped";
  846. this.NotifyMenuStripPlayingSongLabel.Visible = false;
  847. //
  848. // toolStripSeparator2
  849. //
  850. this.toolStripSeparator2.Name = "toolStripSeparator2";
  851. this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6);
  852. //
  853. // NotifyMenuStripPlayButton
  854. //
  855. this.NotifyMenuStripPlayButton.Name = "NotifyMenuStripPlayButton";
  856. this.NotifyMenuStripPlayButton.Size = new System.Drawing.Size(152, 22);
  857. this.NotifyMenuStripPlayButton.Text = "Play";
  858. this.NotifyMenuStripPlayButton.Click += new System.EventHandler(this.NotifyMenuStripPlayButton_Click);
  859. //
  860. // NotifyMenuStripPauseButton
  861. //
  862. this.NotifyMenuStripPauseButton.Enabled = false;
  863. this.NotifyMenuStripPauseButton.Name = "NotifyMenuStripPauseButton";
  864. this.NotifyMenuStripPauseButton.Size = new System.Drawing.Size(152, 22);
  865. this.NotifyMenuStripPauseButton.Text = "Pause";
  866. this.NotifyMenuStripPauseButton.Click += new System.EventHandler(this.NotifyMenuStripPauseButton_Click);
  867. //
  868. // NotifyMenuStripStopButton
  869. //
  870. this.NotifyMenuStripStopButton.Enabled = false;
  871. this.NotifyMenuStripStopButton.Name = "NotifyMenuStripStopButton";
  872. this.NotifyMenuStripStopButton.Size = new System.Drawing.Size(152, 22);
  873. this.NotifyMenuStripStopButton.Text = "Stop";
  874. this.NotifyMenuStripStopButton.Click += new System.EventHandler(this.NotifyMenuStripStopButton_Click);
  875. //
  876. // toolStripSeparator8
  877. //
  878. this.toolStripSeparator8.Name = "toolStripSeparator8";
  879. this.toolStripSeparator8.Size = new System.Drawing.Size(149, 6);
  880. //
  881. // VolumeMenuStripButton
  882. //
  883. this.VolumeMenuStripButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  884. this.VolumeCurrentLabel,
  885. this.toolStripSeparator10,
  886. this.Volume100Button,
  887. this.Volume75Button,
  888. this.Volume50Button,
  889. this.Volume25Button,
  890. this.Volume0Button,
  891. this.toolStripSeparator9,
  892. this.VolumeCustomButton});
  893. this.VolumeMenuStripButton.Name = "VolumeMenuStripButton";
  894. this.VolumeMenuStripButton.Size = new System.Drawing.Size(152, 22);
  895. this.VolumeMenuStripButton.Text = "Volume";
  896. //
  897. // VolumeCurrentLabel
  898. //
  899. this.VolumeCurrentLabel.Enabled = false;
  900. this.VolumeCurrentLabel.Name = "VolumeCurrentLabel";
  901. this.VolumeCurrentLabel.Size = new System.Drawing.Size(154, 22);
  902. this.VolumeCurrentLabel.Text = "Currently 100%";
  903. //
  904. // toolStripSeparator10
  905. //
  906. this.toolStripSeparator10.Name = "toolStripSeparator10";
  907. this.toolStripSeparator10.Size = new System.Drawing.Size(151, 6);
  908. //
  909. // Volume100Button
  910. //
  911. this.Volume100Button.Name = "Volume100Button";
  912. this.Volume100Button.Size = new System.Drawing.Size(154, 22);
  913. this.Volume100Button.Text = "100%";
  914. this.Volume100Button.Click += new System.EventHandler(this.Volume100Button_Click);
  915. //
  916. // Volume75Button
  917. //
  918. this.Volume75Button.Name = "Volume75Button";
  919. this.Volume75Button.Size = new System.Drawing.Size(154, 22);
  920. this.Volume75Button.Text = "75%";
  921. this.Volume75Button.Click += new System.EventHandler(this.Volume75Button_Click);
  922. //
  923. // Volume50Button
  924. //
  925. this.Volume50Button.Name = "Volume50Button";
  926. this.Volume50Button.Size = new System.Drawing.Size(154, 22);
  927. this.Volume50Button.Text = "50%";
  928. this.Volume50Button.Click += new System.EventHandler(this.Volume50Button_Click);
  929. //
  930. // Volume25Button
  931. //
  932. this.Volume25Button.Name = "Volume25Button";
  933. this.Volume25Button.Size = new System.Drawing.Size(154, 22);
  934. this.Volume25Button.Text = "25%";
  935. this.Volume25Button.Click += new System.EventHandler(this.Volume25Button_Click);
  936. //
  937. // Volume0Button
  938. //
  939. this.Volume0Button.Name = "Volume0Button";
  940. this.Volume0Button.Size = new System.Drawing.Size(154, 22);
  941. this.Volume0Button.Text = "Mute";
  942. this.Volume0Button.Click += new System.EventHandler(this.Volume0Button_Click);
  943. //
  944. // toolStripSeparator9
  945. //
  946. this.toolStripSeparator9.Name = "toolStripSeparator9";
  947. this.toolStripSeparator9.Size = new System.Drawing.Size(151, 6);
  948. //
  949. // VolumeCustomButton
  950. //
  951. this.VolumeCustomButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  952. this.VolumeCustomTextBox,
  953. this.VolumeCustomSetButton});
  954. this.VolumeCustomButton.Name = "VolumeCustomButton";
  955. this.VolumeCustomButton.Size = new System.Drawing.Size(154, 22);
  956. this.VolumeCustomButton.Text = "Custom";
  957. //
  958. // VolumeCustomTextBox
  959. //
  960. this.VolumeCustomTextBox.Name = "VolumeCustomTextBox";
  961. this.VolumeCustomTextBox.Size = new System.Drawing.Size(100, 23);
  962. //
  963. // VolumeCustomSetButton
  964. //
  965. this.VolumeCustomSetButton.Name = "VolumeCustomSetButton";
  966. this.VolumeCustomSetButton.Size = new System.Drawing.Size(160, 22);
  967. this.VolumeCustomSetButton.Text = "Set";
  968. this.VolumeCustomSetButton.Click += new System.EventHandler(this.VolumeCustomSetButton_Click);
  969. //
  970. // toolStripSeparator3
  971. //
  972. this.toolStripSeparator3.Name = "toolStripSeparator3";
  973. this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6);
  974. //
  975. // NotifyMenuStripNextButton
  976. //
  977. this.NotifyMenuStripNextButton.Name = "NotifyMenuStripNextButton";
  978. this.NotifyMenuStripNextButton.Size = new System.Drawing.Size(152, 22);
  979. this.NotifyMenuStripNextButton.Text = "Next";
  980. this.NotifyMenuStripNextButton.Click += new System.EventHandler(this.NotifyMenuStripNextButton_Click);
  981. //
  982. // NotifyMenuStripPreviousButton
  983. //
  984. this.NotifyMenuStripPreviousButton.Name = "NotifyMenuStripPreviousButton";
  985. this.NotifyMenuStripPreviousButton.Size = new System.Drawing.Size(152, 22);
  986. this.NotifyMenuStripPreviousButton.Text = "Previous";
  987. this.NotifyMenuStripPreviousButton.Click += new System.EventHandler(this.NotifyMenuStripPreviousButton_Click);
  988. //
  989. // VolumeControl
  990. //
  991. this.VolumeControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  992. this.VolumeControl.BackColor = System.Drawing.SystemColors.GrayText;
  993. this.VolumeControl.BorderStyle = System.Windows.Forms.BorderStyle.None;
  994. this.VolumeControl.Increment = new decimal(new int[] {
  995. 5,
  996. 0,
  997. 0,
  998. 0});
  999. this.VolumeControl.Location = new System.Drawing.Point(736, 4);
  1000. this.VolumeControl.Name = "VolumeControl";
  1001. this.VolumeControl.Size = new System.Drawing.Size(36, 16);
  1002. this.VolumeControl.TabIndex = 7;
  1003. this.VolumeControl.Value = new decimal(new int[] {
  1004. 100,
  1005. 0,
  1006. 0,
  1007. 0});
  1008. this.VolumeControl.ValueChanged += new System.EventHandler(this.VolumeControl_ValueChanged);
  1009. //
  1010. // VolumeLabel
  1011. //
  1012. this.VolumeLabel.AutoSize = true;
  1013. this.VolumeLabel.BackColor = System.Drawing.SystemColors.GrayText;
  1014. this.VolumeLabel.Location = new System.Drawing.Point(682, 4);
  1015. this.VolumeLabel.Name = "VolumeLabel";
  1016. this.VolumeLabel.Size = new System.Drawing.Size(48, 13);
  1017. this.VolumeLabel.TabIndex = 8;
  1018. this.VolumeLabel.Text = "Volume: ";
  1019. //
  1020. // SaveBufferButton
  1021. //
  1022. this.SaveBufferButton.Enabled = false;
  1023. this.SaveBufferButton.Name = "SaveBufferButton";
  1024. this.SaveBufferButton.Size = new System.Drawing.Size(152, 22);
  1025. this.SaveBufferButton.Text = "Save";
  1026. this.SaveBufferButton.Click += new System.EventHandler(this.SaveBufferButton_Click);
  1027. //
  1028. // ExitNotifyIconMenuStrip
  1029. //
  1030. this.ExitNotifyIconMenuStrip.Name = "ExitNotifyIconMenuStrip";
  1031. this.ExitNotifyIconMenuStrip.Size = new System.Drawing.Size(152, 22);
  1032. this.ExitNotifyIconMenuStrip.Text = "Exit";
  1033. this.ExitNotifyIconMenuStrip.Click += new System.EventHandler(this.ExitNotifyIconMenuStrip_Click);
  1034. //
  1035. // toolStripSeparator11
  1036. //
  1037. this.toolStripSeparator11.Name = "toolStripSeparator11";
  1038. this.toolStripSeparator11.Size = new System.Drawing.Size(149, 6);
  1039. //
  1040. // MainForm
  1041. //
  1042. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  1043. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1044. this.ClientSize = new System.Drawing.Size(784, 461);
  1045. this.Controls.Add(this.VolumeLabel);
  1046. this.Controls.Add(this.VolumeControl);
  1047. this.Controls.Add(this.ControlsPanel);
  1048. this.Controls.Add(this.MainPanel);
  1049. this.Controls.Add(this.MenuStrip);
  1050. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1051. this.MainMenuStrip = this.MenuStrip;
  1052. this.MinimumSize = new System.Drawing.Size(800, 500);
  1053. this.Name = "MainForm";
  1054. this.Text = "YJMPD Music Player";
  1055. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  1056. this.Load += new System.EventHandler(this.MainForm_Load);
  1057. this.Resize += new System.EventHandler(this.MainForm_Resize);
  1058. ((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).EndInit();
  1059. this.MainPanel.ResumeLayout(false);
  1060. this.MainPanel.PerformLayout();
  1061. this.SplitContainer.Panel1.ResumeLayout(false);
  1062. this.SplitContainer.Panel2.ResumeLayout(false);
  1063. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).EndInit();
  1064. this.SplitContainer.ResumeLayout(false);
  1065. this.MenuStrip.ResumeLayout(false);
  1066. this.MenuStrip.PerformLayout();
  1067. this.ControlsPanel.ResumeLayout(false);
  1068. this.ControlsPanel.PerformLayout();
  1069. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  1070. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).EndInit();
  1071. this.NotifyMenuStrip.ResumeLayout(false);
  1072. ((System.ComponentModel.ISupportInitialize)(this.VolumeControl)).EndInit();
  1073. this.ResumeLayout(false);
  1074. this.PerformLayout();
  1075. }
  1076. #endregion
  1077. public System.Windows.Forms.DataGridView SongsTableView;
  1078. public System.Windows.Forms.ListBox GenreListBox;
  1079. public System.Windows.Forms.ListView AlbumListView;
  1080. public System.Windows.Forms.ListBox ArtistListBox;
  1081. private System.Windows.Forms.Panel MainPanel;
  1082. private System.Windows.Forms.MenuStrip MenuStrip;
  1083. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  1084. private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
  1085. private System.Windows.Forms.Panel ControlsPanel;
  1086. private System.Windows.Forms.Button PlayButton;
  1087. private System.Windows.Forms.Button StopButton;
  1088. private System.Windows.Forms.Button PauseButton;
  1089. private System.Windows.Forms.Label BufferLabel;
  1090. private System.Windows.Forms.ProgressBar BufferBar;
  1091. private System.Windows.Forms.Timer UpdateTimer;
  1092. private System.Windows.Forms.TrackBar PositionTrackBar;
  1093. private System.Windows.Forms.Label LabelTotalTime;
  1094. private System.Windows.Forms.Label LabelCurrentTime;
  1095. private System.Windows.Forms.NotifyIcon NotifyIcon;
  1096. private System.Windows.Forms.Label CurrentSongLabel;
  1097. private System.Windows.Forms.Label AlbumListLabel;
  1098. private System.Windows.Forms.Label ArtistListLabel;
  1099. private System.Windows.Forms.Label GenreListLabel;
  1100. private System.Windows.Forms.ToolStripMenuItem playlistsToolStripMenuItem;
  1101. private System.Windows.Forms.ToolStripMenuItem overviewToolStripMenuItem;
  1102. public System.Windows.Forms.ListBox PlaylistBox;
  1103. private System.Windows.Forms.Label PlaylistListLabel;
  1104. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  1105. private System.Windows.Forms.ToolStripMenuItem playlistToolStripMenuItem;
  1106. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  1107. private System.Windows.Forms.ContextMenuStrip NotifyMenuStrip;
  1108. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayButton;
  1109. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPauseButton;
  1110. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripStopButton;
  1111. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayingLabel;
  1112. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  1113. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayingSongLabel;
  1114. private System.Windows.Forms.SplitContainer SplitContainer;
  1115. private System.Windows.Forms.ToolStripMenuItem makeToolStripMenuItem;
  1116. private System.Windows.Forms.ToolStripMenuItem searchToolStripMenuItem;
  1117. private System.Windows.Forms.ToolStripMenuItem SearchArtistToolStripLabel;
  1118. private System.Windows.Forms.ToolStripTextBox SearchArtistsTextBox;
  1119. private System.Windows.Forms.ToolStripMenuItem SearchGenresToolStripLabel;
  1120. private System.Windows.Forms.ToolStripTextBox SearchGenresTextBox;
  1121. private System.Windows.Forms.ToolStripMenuItem ClearArtistSearchButton;
  1122. private System.Windows.Forms.ToolStripMenuItem ClearGenreSearchButton;
  1123. private System.Windows.Forms.ToolStripMenuItem playbackToolStripMenuItem;
  1124. private System.Windows.Forms.ToolStripMenuItem ShuffleSongButton;
  1125. private System.Windows.Forms.ToolStripMenuItem LoopSongButton;
  1126. private System.Windows.Forms.ToolStripMenuItem PlayNextSongButton;
  1127. private System.Windows.Forms.Button NextButton;
  1128. private System.Windows.Forms.Button PreviousButton;
  1129. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  1130. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripNextButton;
  1131. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPreviousButton;
  1132. private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
  1133. private System.Windows.Forms.ToolStripMenuItem ViewQueueButton;
  1134. private System.Windows.Forms.ToolStripMenuItem serverToolStripMenuItem;
  1135. private System.Windows.Forms.ToolStripMenuItem SelectServerJancoButton;
  1136. private System.Windows.Forms.ToolStripMenuItem SelectServerYorickButton;
  1137. private System.Windows.Forms.ToolStripMenuItem radioToolStripMenuItem;
  1138. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  1139. private System.Windows.Forms.ToolStripMenuItem qDanceToolStripMenuItem;
  1140. private System.Windows.Forms.ToolStripMenuItem customToolStripMenuItem;
  1141. private System.Windows.Forms.ToolStripTextBox RadioStationTextBox;
  1142. private System.Windows.Forms.ToolStripMenuItem SetRadioStationButton;
  1143. private System.Windows.Forms.ToolStripMenuItem fMToolStripMenuItem;
  1144. private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
  1145. private System.Windows.Forms.ToolStripMenuItem slamFMToolStripMenuItem;
  1146. private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
  1147. private System.Windows.Forms.ToolStripMenuItem viewPlaylistToolstripMenuButton;
  1148. private System.Windows.Forms.ToolStripMenuItem songsToolStripMenuItem;
  1149. private System.Windows.Forms.ToolStripTextBox SearchSongsTextBox;
  1150. private System.Windows.Forms.ToolStripMenuItem SearchSongsButton;
  1151. private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
  1152. private System.Windows.Forms.ToolStripMenuItem AdvancedSearchButton;
  1153. private System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem;
  1154. private System.Windows.Forms.PictureBox pictureBox1;
  1155. private System.Windows.Forms.Label AddToQueueLabel;
  1156. private System.Windows.Forms.NumericUpDown VolumeControl;
  1157. private System.Windows.Forms.Label VolumeLabel;
  1158. private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
  1159. private System.Windows.Forms.ToolStripMenuItem VolumeMenuStripButton;
  1160. private System.Windows.Forms.ToolStripMenuItem Volume100Button;
  1161. private System.Windows.Forms.ToolStripMenuItem Volume75Button;
  1162. private System.Windows.Forms.ToolStripMenuItem Volume50Button;
  1163. private System.Windows.Forms.ToolStripMenuItem Volume25Button;
  1164. private System.Windows.Forms.ToolStripMenuItem Volume0Button;
  1165. private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
  1166. private System.Windows.Forms.ToolStripMenuItem VolumeCustomButton;
  1167. private System.Windows.Forms.ToolStripTextBox VolumeCustomTextBox;
  1168. private System.Windows.Forms.ToolStripMenuItem VolumeCustomSetButton;
  1169. private System.Windows.Forms.ToolStripMenuItem VolumeCurrentLabel;
  1170. private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
  1171. private System.Windows.Forms.ToolStripMenuItem SaveBufferButton;
  1172. private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
  1173. private System.Windows.Forms.ToolStripMenuItem ExitNotifyIconMenuStrip;
  1174. }
  1175. }