MainForm.Designer.cs 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  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.SplitContainer = new System.Windows.Forms.SplitContainer();
  39. this.PlaylistBox = new System.Windows.Forms.ListBox();
  40. this.AlbumListLabel = new System.Windows.Forms.Label();
  41. this.ArtistListLabel = new System.Windows.Forms.Label();
  42. this.GenreListLabel = new System.Windows.Forms.Label();
  43. this.PlaylistListLabel = new System.Windows.Forms.Label();
  44. this.MenuStrip = new System.Windows.Forms.MenuStrip();
  45. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  46. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  47. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  48. this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  49. this.overviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  50. this.playlistsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  51. this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
  52. this.ViewQueueButton = new System.Windows.Forms.ToolStripMenuItem();
  53. this.playbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  54. this.PlayNextSongButton = new System.Windows.Forms.ToolStripMenuItem();
  55. this.LoopSongButton = new System.Windows.Forms.ToolStripMenuItem();
  56. this.ShuffleSongButton = new System.Windows.Forms.ToolStripMenuItem();
  57. this.playlistToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  58. this.makeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  59. this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
  60. this.viewPlaylistToolstripMenuButton = new System.Windows.Forms.ToolStripMenuItem();
  61. this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  62. this.SearchGenresToolStripLabel = new System.Windows.Forms.ToolStripMenuItem();
  63. this.SearchGenresTextBox = new System.Windows.Forms.ToolStripTextBox();
  64. this.ClearGenreSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  65. this.SearchArtistToolStripLabel = new System.Windows.Forms.ToolStripMenuItem();
  66. this.SearchArtistsTextBox = new System.Windows.Forms.ToolStripTextBox();
  67. this.ClearArtistSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  68. this.serverToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  69. this.SelectServerJancoButton = new System.Windows.Forms.ToolStripMenuItem();
  70. this.SelectServerYorickButton = new System.Windows.Forms.ToolStripMenuItem();
  71. this.radioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  72. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  73. this.fMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  74. this.slamFMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  75. this.qDanceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  76. this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
  77. this.customToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  78. this.RadioStationTextBox = new System.Windows.Forms.ToolStripTextBox();
  79. this.SetRadioStationButton = new System.Windows.Forms.ToolStripMenuItem();
  80. this.ControlsPanel = new System.Windows.Forms.Panel();
  81. this.NextButton = new System.Windows.Forms.Button();
  82. this.PreviousButton = new System.Windows.Forms.Button();
  83. this.CurrentSongLabel = new System.Windows.Forms.Label();
  84. this.LabelTotalTime = new System.Windows.Forms.Label();
  85. this.LabelCurrentTime = new System.Windows.Forms.Label();
  86. this.PositionTrackBar = new System.Windows.Forms.TrackBar();
  87. this.BufferLabel = new System.Windows.Forms.Label();
  88. this.BufferBar = new System.Windows.Forms.ProgressBar();
  89. this.StopButton = new System.Windows.Forms.Button();
  90. this.PauseButton = new System.Windows.Forms.Button();
  91. this.PlayButton = new System.Windows.Forms.Button();
  92. this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
  93. this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
  94. this.NotifyMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  95. this.NotifyMenuStripPlayingLabel = new System.Windows.Forms.ToolStripMenuItem();
  96. this.NotifyMenuStripPlayingSongLabel = new System.Windows.Forms.ToolStripMenuItem();
  97. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  98. this.NotifyMenuStripPlayButton = new System.Windows.Forms.ToolStripMenuItem();
  99. this.NotifyMenuStripPauseButton = new System.Windows.Forms.ToolStripMenuItem();
  100. this.NotifyMenuStripStopButton = new System.Windows.Forms.ToolStripMenuItem();
  101. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  102. this.NotifyMenuStripNextButton = new System.Windows.Forms.ToolStripMenuItem();
  103. this.NotifyMenuStripPreviousButton = new System.Windows.Forms.ToolStripMenuItem();
  104. this.songsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  105. this.SearchSongsTextBox = new System.Windows.Forms.ToolStripTextBox();
  106. this.SearchSongsButton = new System.Windows.Forms.ToolStripMenuItem();
  107. ((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).BeginInit();
  108. this.MainPanel.SuspendLayout();
  109. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).BeginInit();
  110. this.SplitContainer.Panel1.SuspendLayout();
  111. this.SplitContainer.Panel2.SuspendLayout();
  112. this.SplitContainer.SuspendLayout();
  113. this.MenuStrip.SuspendLayout();
  114. this.ControlsPanel.SuspendLayout();
  115. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).BeginInit();
  116. this.NotifyMenuStrip.SuspendLayout();
  117. this.SuspendLayout();
  118. //
  119. // SongsTableView
  120. //
  121. this.SongsTableView.AllowUserToAddRows = false;
  122. this.SongsTableView.AllowUserToDeleteRows = false;
  123. this.SongsTableView.AllowUserToResizeRows = false;
  124. this.SongsTableView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  125. this.SongsTableView.BackgroundColor = System.Drawing.SystemColors.Control;
  126. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  127. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.ControlLight;
  128. dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  129. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
  130. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  131. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  132. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  133. this.SongsTableView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  134. this.SongsTableView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  135. this.SongsTableView.Dock = System.Windows.Forms.DockStyle.Fill;
  136. this.SongsTableView.Location = new System.Drawing.Point(0, 0);
  137. this.SongsTableView.MultiSelect = false;
  138. this.SongsTableView.Name = "SongsTableView";
  139. this.SongsTableView.ReadOnly = true;
  140. this.SongsTableView.RowHeadersVisible = false;
  141. this.SongsTableView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  142. this.SongsTableView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  143. this.SongsTableView.Size = new System.Drawing.Size(760, 174);
  144. this.SongsTableView.TabIndex = 0;
  145. this.SongsTableView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.SongsTableView_CellDoubleClick);
  146. this.SongsTableView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseDown);
  147. this.SongsTableView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseMove);
  148. this.SongsTableView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseUp);
  149. //
  150. // GenreListBox
  151. //
  152. this.GenreListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  153. | System.Windows.Forms.AnchorStyles.Left)));
  154. this.GenreListBox.BackColor = System.Drawing.SystemColors.Control;
  155. this.GenreListBox.FormattingEnabled = true;
  156. this.GenreListBox.Location = new System.Drawing.Point(0, 0);
  157. this.GenreListBox.Name = "GenreListBox";
  158. this.GenreListBox.Size = new System.Drawing.Size(175, 121);
  159. this.GenreListBox.Sorted = true;
  160. this.GenreListBox.TabIndex = 1;
  161. this.GenreListBox.SelectedIndexChanged += new System.EventHandler(this.GenreListBox_SelectedIndexChanged);
  162. //
  163. // AlbumListView
  164. //
  165. this.AlbumListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  166. | System.Windows.Forms.AnchorStyles.Left)
  167. | System.Windows.Forms.AnchorStyles.Right)));
  168. this.AlbumListView.BackColor = System.Drawing.SystemColors.Control;
  169. this.AlbumListView.Location = new System.Drawing.Point(362, 0);
  170. this.AlbumListView.MultiSelect = false;
  171. this.AlbumListView.Name = "AlbumListView";
  172. this.AlbumListView.Size = new System.Drawing.Size(398, 121);
  173. this.AlbumListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
  174. this.AlbumListView.TabIndex = 2;
  175. this.AlbumListView.TileSize = new System.Drawing.Size(185, 30);
  176. this.AlbumListView.UseCompatibleStateImageBehavior = false;
  177. this.AlbumListView.View = System.Windows.Forms.View.Tile;
  178. this.AlbumListView.SelectedIndexChanged += new System.EventHandler(this.AlbumListView_SelectedIndexChanged);
  179. //
  180. // ArtistListBox
  181. //
  182. this.ArtistListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  183. | System.Windows.Forms.AnchorStyles.Left)));
  184. this.ArtistListBox.BackColor = System.Drawing.SystemColors.Control;
  185. this.ArtistListBox.FormattingEnabled = true;
  186. this.ArtistListBox.Location = new System.Drawing.Point(181, 0);
  187. this.ArtistListBox.Name = "ArtistListBox";
  188. this.ArtistListBox.Size = new System.Drawing.Size(175, 121);
  189. this.ArtistListBox.Sorted = true;
  190. this.ArtistListBox.TabIndex = 3;
  191. this.ArtistListBox.SelectedIndexChanged += new System.EventHandler(this.ArtistListBox_SelectedIndexChanged);
  192. //
  193. // MainPanel
  194. //
  195. this.MainPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  196. | System.Windows.Forms.AnchorStyles.Left)
  197. | System.Windows.Forms.AnchorStyles.Right)));
  198. this.MainPanel.BackColor = System.Drawing.SystemColors.Window;
  199. this.MainPanel.Controls.Add(this.SplitContainer);
  200. this.MainPanel.Controls.Add(this.AlbumListLabel);
  201. this.MainPanel.Controls.Add(this.ArtistListLabel);
  202. this.MainPanel.Controls.Add(this.GenreListLabel);
  203. this.MainPanel.Controls.Add(this.PlaylistListLabel);
  204. this.MainPanel.Location = new System.Drawing.Point(0, 24);
  205. this.MainPanel.Name = "MainPanel";
  206. this.MainPanel.Size = new System.Drawing.Size(784, 351);
  207. this.MainPanel.TabIndex = 5;
  208. //
  209. // SplitContainer
  210. //
  211. this.SplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  212. | System.Windows.Forms.AnchorStyles.Left)
  213. | System.Windows.Forms.AnchorStyles.Right)));
  214. this.SplitContainer.Location = new System.Drawing.Point(12, 25);
  215. this.SplitContainer.Name = "SplitContainer";
  216. this.SplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
  217. //
  218. // SplitContainer.Panel1
  219. //
  220. this.SplitContainer.Panel1.Controls.Add(this.AlbumListView);
  221. this.SplitContainer.Panel1.Controls.Add(this.ArtistListBox);
  222. this.SplitContainer.Panel1.Controls.Add(this.GenreListBox);
  223. this.SplitContainer.Panel1.Controls.Add(this.PlaylistBox);
  224. //
  225. // SplitContainer.Panel2
  226. //
  227. this.SplitContainer.Panel2.Controls.Add(this.SongsTableView);
  228. this.SplitContainer.Size = new System.Drawing.Size(760, 313);
  229. this.SplitContainer.SplitterDistance = 131;
  230. this.SplitContainer.SplitterWidth = 8;
  231. this.SplitContainer.TabIndex = 9;
  232. //
  233. // PlaylistBox
  234. //
  235. this.PlaylistBox.BackColor = System.Drawing.SystemColors.Control;
  236. this.PlaylistBox.Dock = System.Windows.Forms.DockStyle.Fill;
  237. this.PlaylistBox.FormattingEnabled = true;
  238. this.PlaylistBox.Location = new System.Drawing.Point(0, 0);
  239. this.PlaylistBox.Name = "PlaylistBox";
  240. this.PlaylistBox.Size = new System.Drawing.Size(760, 131);
  241. this.PlaylistBox.TabIndex = 4;
  242. this.PlaylistBox.Visible = false;
  243. this.PlaylistBox.SelectedIndexChanged += new System.EventHandler(this.PlaylistBox_SelectedIndexChanged);
  244. //
  245. // AlbumListLabel
  246. //
  247. this.AlbumListLabel.AutoSize = true;
  248. this.AlbumListLabel.Location = new System.Drawing.Point(371, 9);
  249. this.AlbumListLabel.Name = "AlbumListLabel";
  250. this.AlbumListLabel.Size = new System.Drawing.Size(36, 13);
  251. this.AlbumListLabel.TabIndex = 6;
  252. this.AlbumListLabel.Text = "Album";
  253. //
  254. // ArtistListLabel
  255. //
  256. this.ArtistListLabel.AutoSize = true;
  257. this.ArtistListLabel.Location = new System.Drawing.Point(190, 9);
  258. this.ArtistListLabel.Name = "ArtistListLabel";
  259. this.ArtistListLabel.Size = new System.Drawing.Size(30, 13);
  260. this.ArtistListLabel.TabIndex = 5;
  261. this.ArtistListLabel.Text = "Artist";
  262. //
  263. // GenreListLabel
  264. //
  265. this.GenreListLabel.AutoSize = true;
  266. this.GenreListLabel.Location = new System.Drawing.Point(9, 9);
  267. this.GenreListLabel.Name = "GenreListLabel";
  268. this.GenreListLabel.Size = new System.Drawing.Size(36, 13);
  269. this.GenreListLabel.TabIndex = 4;
  270. this.GenreListLabel.Text = "Genre";
  271. //
  272. // PlaylistListLabel
  273. //
  274. this.PlaylistListLabel.AutoSize = true;
  275. this.PlaylistListLabel.Location = new System.Drawing.Point(12, 9);
  276. this.PlaylistListLabel.Name = "PlaylistListLabel";
  277. this.PlaylistListLabel.Size = new System.Drawing.Size(39, 13);
  278. this.PlaylistListLabel.TabIndex = 7;
  279. this.PlaylistListLabel.Text = "Playlist";
  280. this.PlaylistListLabel.Visible = false;
  281. //
  282. // MenuStrip
  283. //
  284. this.MenuStrip.BackColor = System.Drawing.SystemColors.GrayText;
  285. this.MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  286. this.fileToolStripMenuItem,
  287. this.viewToolStripMenuItem,
  288. this.playbackToolStripMenuItem,
  289. this.playlistToolStripMenuItem,
  290. this.searchToolStripMenuItem,
  291. this.serverToolStripMenuItem,
  292. this.radioToolStripMenuItem});
  293. this.MenuStrip.Location = new System.Drawing.Point(0, 0);
  294. this.MenuStrip.Name = "MenuStrip";
  295. this.MenuStrip.Size = new System.Drawing.Size(784, 24);
  296. this.MenuStrip.TabIndex = 6;
  297. this.MenuStrip.Text = "Menu";
  298. //
  299. // fileToolStripMenuItem
  300. //
  301. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  302. this.toolStripSeparator1,
  303. this.exitToolStripMenuItem});
  304. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  305. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  306. this.fileToolStripMenuItem.Text = "File";
  307. //
  308. // toolStripSeparator1
  309. //
  310. this.toolStripSeparator1.Name = "toolStripSeparator1";
  311. this.toolStripSeparator1.Size = new System.Drawing.Size(89, 6);
  312. //
  313. // exitToolStripMenuItem
  314. //
  315. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  316. this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
  317. this.exitToolStripMenuItem.Text = "Exit";
  318. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
  319. //
  320. // viewToolStripMenuItem
  321. //
  322. this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  323. this.overviewToolStripMenuItem,
  324. this.playlistsToolStripMenuItem,
  325. this.toolStripSeparator4,
  326. this.ViewQueueButton});
  327. this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
  328. this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
  329. this.viewToolStripMenuItem.Text = "View";
  330. //
  331. // overviewToolStripMenuItem
  332. //
  333. this.overviewToolStripMenuItem.Name = "overviewToolStripMenuItem";
  334. this.overviewToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
  335. this.overviewToolStripMenuItem.Text = "Overview";
  336. this.overviewToolStripMenuItem.Click += new System.EventHandler(this.overviewToolStripMenuItem_Click);
  337. //
  338. // playlistsToolStripMenuItem
  339. //
  340. this.playlistsToolStripMenuItem.Name = "playlistsToolStripMenuItem";
  341. this.playlistsToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
  342. this.playlistsToolStripMenuItem.Text = "Playlists";
  343. this.playlistsToolStripMenuItem.Click += new System.EventHandler(this.playlistsToolStripMenuItem_Click);
  344. //
  345. // toolStripSeparator4
  346. //
  347. this.toolStripSeparator4.Name = "toolStripSeparator4";
  348. this.toolStripSeparator4.Size = new System.Drawing.Size(120, 6);
  349. //
  350. // ViewQueueButton
  351. //
  352. this.ViewQueueButton.Name = "ViewQueueButton";
  353. this.ViewQueueButton.Size = new System.Drawing.Size(123, 22);
  354. this.ViewQueueButton.Text = "Queue";
  355. this.ViewQueueButton.Click += new System.EventHandler(this.ViewCurrentPlaylistButton_Click);
  356. //
  357. // playbackToolStripMenuItem
  358. //
  359. this.playbackToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  360. this.PlayNextSongButton,
  361. this.LoopSongButton,
  362. this.ShuffleSongButton});
  363. this.playbackToolStripMenuItem.Name = "playbackToolStripMenuItem";
  364. this.playbackToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
  365. this.playbackToolStripMenuItem.Text = "Playback";
  366. //
  367. // PlayNextSongButton
  368. //
  369. this.PlayNextSongButton.Checked = true;
  370. this.PlayNextSongButton.CheckOnClick = true;
  371. this.PlayNextSongButton.CheckState = System.Windows.Forms.CheckState.Checked;
  372. this.PlayNextSongButton.Name = "PlayNextSongButton";
  373. this.PlayNextSongButton.Size = new System.Drawing.Size(123, 22);
  374. this.PlayNextSongButton.Text = "Play Next";
  375. //
  376. // LoopSongButton
  377. //
  378. this.LoopSongButton.Checked = true;
  379. this.LoopSongButton.CheckOnClick = true;
  380. this.LoopSongButton.CheckState = System.Windows.Forms.CheckState.Checked;
  381. this.LoopSongButton.Name = "LoopSongButton";
  382. this.LoopSongButton.Size = new System.Drawing.Size(123, 22);
  383. this.LoopSongButton.Text = "Loop";
  384. //
  385. // ShuffleSongButton
  386. //
  387. this.ShuffleSongButton.CheckOnClick = true;
  388. this.ShuffleSongButton.Enabled = false;
  389. this.ShuffleSongButton.Name = "ShuffleSongButton";
  390. this.ShuffleSongButton.Size = new System.Drawing.Size(123, 22);
  391. this.ShuffleSongButton.Text = "Shuffle";
  392. //
  393. // playlistToolStripMenuItem
  394. //
  395. this.playlistToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  396. this.makeToolStripMenuItem,
  397. this.toolStripSeparator6,
  398. this.viewPlaylistToolstripMenuButton});
  399. this.playlistToolStripMenuItem.Name = "playlistToolStripMenuItem";
  400. this.playlistToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
  401. this.playlistToolStripMenuItem.Text = "Playlist";
  402. //
  403. // makeToolStripMenuItem
  404. //
  405. this.makeToolStripMenuItem.Name = "makeToolStripMenuItem";
  406. this.makeToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
  407. this.makeToolStripMenuItem.Text = "Create / Edit";
  408. this.makeToolStripMenuItem.Click += new System.EventHandler(this.makeToolStripMenuItem_Click);
  409. //
  410. // toolStripSeparator6
  411. //
  412. this.toolStripSeparator6.Name = "toolStripSeparator6";
  413. this.toolStripSeparator6.Size = new System.Drawing.Size(136, 6);
  414. //
  415. // viewPlaylistToolstripMenuButton
  416. //
  417. this.viewPlaylistToolstripMenuButton.Name = "viewPlaylistToolstripMenuButton";
  418. this.viewPlaylistToolstripMenuButton.Size = new System.Drawing.Size(139, 22);
  419. this.viewPlaylistToolstripMenuButton.Text = "View";
  420. this.viewPlaylistToolstripMenuButton.Click += new System.EventHandler(this.playlistsToolStripMenuItem_Click);
  421. //
  422. // searchToolStripMenuItem
  423. //
  424. this.searchToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  425. this.SearchGenresToolStripLabel,
  426. this.SearchArtistToolStripLabel,
  427. this.songsToolStripMenuItem});
  428. this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
  429. this.searchToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
  430. this.searchToolStripMenuItem.Text = "Search";
  431. //
  432. // SearchGenresToolStripLabel
  433. //
  434. this.SearchGenresToolStripLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  435. this.SearchGenresTextBox,
  436. this.ClearGenreSearchButton});
  437. this.SearchGenresToolStripLabel.Name = "SearchGenresToolStripLabel";
  438. this.SearchGenresToolStripLabel.Size = new System.Drawing.Size(152, 22);
  439. this.SearchGenresToolStripLabel.Text = "Genres";
  440. //
  441. // SearchGenresTextBox
  442. //
  443. this.SearchGenresTextBox.Name = "SearchGenresTextBox";
  444. this.SearchGenresTextBox.Size = new System.Drawing.Size(100, 23);
  445. this.SearchGenresTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchGenresTextBox_KeyUp);
  446. //
  447. // ClearGenreSearchButton
  448. //
  449. this.ClearGenreSearchButton.Enabled = false;
  450. this.ClearGenreSearchButton.Name = "ClearGenreSearchButton";
  451. this.ClearGenreSearchButton.Size = new System.Drawing.Size(160, 22);
  452. this.ClearGenreSearchButton.Text = "Clear Search";
  453. this.ClearGenreSearchButton.Click += new System.EventHandler(this.ClearGenreSearchButton_Click);
  454. //
  455. // SearchArtistToolStripLabel
  456. //
  457. this.SearchArtistToolStripLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  458. this.SearchArtistsTextBox,
  459. this.ClearArtistSearchButton});
  460. this.SearchArtistToolStripLabel.Name = "SearchArtistToolStripLabel";
  461. this.SearchArtistToolStripLabel.Size = new System.Drawing.Size(152, 22);
  462. this.SearchArtistToolStripLabel.Text = "Artists";
  463. //
  464. // SearchArtistsTextBox
  465. //
  466. this.SearchArtistsTextBox.Name = "SearchArtistsTextBox";
  467. this.SearchArtistsTextBox.Size = new System.Drawing.Size(100, 23);
  468. this.SearchArtistsTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchArtistsTextBox_KeyUp);
  469. //
  470. // ClearArtistSearchButton
  471. //
  472. this.ClearArtistSearchButton.Enabled = false;
  473. this.ClearArtistSearchButton.Name = "ClearArtistSearchButton";
  474. this.ClearArtistSearchButton.Size = new System.Drawing.Size(160, 22);
  475. this.ClearArtistSearchButton.Text = "Clear Search";
  476. this.ClearArtistSearchButton.Click += new System.EventHandler(this.ClearArtistSearchButton_Click);
  477. //
  478. // serverToolStripMenuItem
  479. //
  480. this.serverToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  481. this.SelectServerJancoButton,
  482. this.SelectServerYorickButton});
  483. this.serverToolStripMenuItem.Name = "serverToolStripMenuItem";
  484. this.serverToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
  485. this.serverToolStripMenuItem.Text = "Server";
  486. //
  487. // SelectServerJancoButton
  488. //
  489. this.SelectServerJancoButton.Name = "SelectServerJancoButton";
  490. this.SelectServerJancoButton.Size = new System.Drawing.Size(148, 22);
  491. this.SelectServerJancoButton.Text = "jancokock.me";
  492. this.SelectServerJancoButton.Click += new System.EventHandler(this.SelectServerJancoButton_Click);
  493. //
  494. // SelectServerYorickButton
  495. //
  496. this.SelectServerYorickButton.Name = "SelectServerYorickButton";
  497. this.SelectServerYorickButton.Size = new System.Drawing.Size(148, 22);
  498. this.SelectServerYorickButton.Text = "imegumii.nl";
  499. this.SelectServerYorickButton.Click += new System.EventHandler(this.SelectServerYorickButton_Click);
  500. //
  501. // radioToolStripMenuItem
  502. //
  503. this.radioToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  504. this.toolStripMenuItem2,
  505. this.fMToolStripMenuItem,
  506. this.slamFMToolStripMenuItem,
  507. this.qDanceToolStripMenuItem,
  508. this.toolStripSeparator5,
  509. this.customToolStripMenuItem});
  510. this.radioToolStripMenuItem.Name = "radioToolStripMenuItem";
  511. this.radioToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
  512. this.radioToolStripMenuItem.Text = "Radio";
  513. //
  514. // toolStripMenuItem2
  515. //
  516. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  517. this.toolStripMenuItem2.Size = new System.Drawing.Size(122, 22);
  518. this.toolStripMenuItem2.Text = "538";
  519. this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  520. //
  521. // fMToolStripMenuItem
  522. //
  523. this.fMToolStripMenuItem.Name = "fMToolStripMenuItem";
  524. this.fMToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
  525. this.fMToolStripMenuItem.Text = "3FM";
  526. this.fMToolStripMenuItem.Click += new System.EventHandler(this.fMToolStripMenuItem_Click);
  527. //
  528. // slamFMToolStripMenuItem
  529. //
  530. this.slamFMToolStripMenuItem.Name = "slamFMToolStripMenuItem";
  531. this.slamFMToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
  532. this.slamFMToolStripMenuItem.Text = "Slam-FM";
  533. this.slamFMToolStripMenuItem.Click += new System.EventHandler(this.slamFMToolStripMenuItem_Click);
  534. //
  535. // qDanceToolStripMenuItem
  536. //
  537. this.qDanceToolStripMenuItem.Name = "qDanceToolStripMenuItem";
  538. this.qDanceToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
  539. this.qDanceToolStripMenuItem.Text = "Q-Dance";
  540. this.qDanceToolStripMenuItem.Click += new System.EventHandler(this.qDanceToolStripMenuItem_Click);
  541. //
  542. // toolStripSeparator5
  543. //
  544. this.toolStripSeparator5.Name = "toolStripSeparator5";
  545. this.toolStripSeparator5.Size = new System.Drawing.Size(119, 6);
  546. //
  547. // customToolStripMenuItem
  548. //
  549. this.customToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  550. this.RadioStationTextBox,
  551. this.SetRadioStationButton});
  552. this.customToolStripMenuItem.Name = "customToolStripMenuItem";
  553. this.customToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
  554. this.customToolStripMenuItem.Text = "Custom";
  555. //
  556. // RadioStationTextBox
  557. //
  558. this.RadioStationTextBox.Name = "RadioStationTextBox";
  559. this.RadioStationTextBox.Size = new System.Drawing.Size(100, 23);
  560. //
  561. // SetRadioStationButton
  562. //
  563. this.SetRadioStationButton.Name = "SetRadioStationButton";
  564. this.SetRadioStationButton.Size = new System.Drawing.Size(160, 22);
  565. this.SetRadioStationButton.Text = "Set";
  566. this.SetRadioStationButton.Click += new System.EventHandler(this.SetRadioStationButton_Click);
  567. //
  568. // ControlsPanel
  569. //
  570. this.ControlsPanel.BackColor = System.Drawing.SystemColors.GrayText;
  571. this.ControlsPanel.Controls.Add(this.NextButton);
  572. this.ControlsPanel.Controls.Add(this.PreviousButton);
  573. this.ControlsPanel.Controls.Add(this.CurrentSongLabel);
  574. this.ControlsPanel.Controls.Add(this.LabelTotalTime);
  575. this.ControlsPanel.Controls.Add(this.LabelCurrentTime);
  576. this.ControlsPanel.Controls.Add(this.PositionTrackBar);
  577. this.ControlsPanel.Controls.Add(this.BufferLabel);
  578. this.ControlsPanel.Controls.Add(this.BufferBar);
  579. this.ControlsPanel.Controls.Add(this.StopButton);
  580. this.ControlsPanel.Controls.Add(this.PauseButton);
  581. this.ControlsPanel.Controls.Add(this.PlayButton);
  582. this.ControlsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
  583. this.ControlsPanel.Location = new System.Drawing.Point(0, 378);
  584. this.ControlsPanel.Name = "ControlsPanel";
  585. this.ControlsPanel.Size = new System.Drawing.Size(784, 83);
  586. this.ControlsPanel.TabIndex = 4;
  587. //
  588. // NextButton
  589. //
  590. this.NextButton.Location = new System.Drawing.Point(214, 51);
  591. this.NextButton.Name = "NextButton";
  592. this.NextButton.Size = new System.Drawing.Size(31, 23);
  593. this.NextButton.TabIndex = 13;
  594. this.NextButton.Text = ">";
  595. this.NextButton.UseVisualStyleBackColor = true;
  596. this.NextButton.Click += new System.EventHandler(this.NextButton_Click);
  597. //
  598. // PreviousButton
  599. //
  600. this.PreviousButton.Location = new System.Drawing.Point(177, 51);
  601. this.PreviousButton.Name = "PreviousButton";
  602. this.PreviousButton.Size = new System.Drawing.Size(31, 23);
  603. this.PreviousButton.TabIndex = 12;
  604. this.PreviousButton.Text = "<";
  605. this.PreviousButton.UseVisualStyleBackColor = true;
  606. this.PreviousButton.Click += new System.EventHandler(this.PreviousButton_Click);
  607. //
  608. // CurrentSongLabel
  609. //
  610. this.CurrentSongLabel.AutoSize = true;
  611. this.CurrentSongLabel.Location = new System.Drawing.Point(256, 56);
  612. this.CurrentSongLabel.Name = "CurrentSongLabel";
  613. this.CurrentSongLabel.Size = new System.Drawing.Size(111, 13);
  614. this.CurrentSongLabel.TabIndex = 11;
  615. this.CurrentSongLabel.Text = "Not playing any songs";
  616. //
  617. // LabelTotalTime
  618. //
  619. this.LabelTotalTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  620. this.LabelTotalTime.AutoSize = true;
  621. this.LabelTotalTime.Location = new System.Drawing.Point(723, 26);
  622. this.LabelTotalTime.Name = "LabelTotalTime";
  623. this.LabelTotalTime.Size = new System.Drawing.Size(49, 13);
  624. this.LabelTotalTime.TabIndex = 9;
  625. this.LabelTotalTime.Text = "00:00:00";
  626. //
  627. // LabelCurrentTime
  628. //
  629. this.LabelCurrentTime.AutoSize = true;
  630. this.LabelCurrentTime.Location = new System.Drawing.Point(12, 26);
  631. this.LabelCurrentTime.Name = "LabelCurrentTime";
  632. this.LabelCurrentTime.Size = new System.Drawing.Size(49, 13);
  633. this.LabelCurrentTime.TabIndex = 8;
  634. this.LabelCurrentTime.Text = "00:00:00";
  635. //
  636. // PositionTrackBar
  637. //
  638. this.PositionTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  639. | System.Windows.Forms.AnchorStyles.Right)));
  640. this.PositionTrackBar.Enabled = false;
  641. this.PositionTrackBar.Location = new System.Drawing.Point(3, 3);
  642. this.PositionTrackBar.Maximum = 1000;
  643. this.PositionTrackBar.Name = "PositionTrackBar";
  644. this.PositionTrackBar.Size = new System.Drawing.Size(778, 45);
  645. this.PositionTrackBar.TabIndex = 7;
  646. this.PositionTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
  647. this.PositionTrackBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PositionTrackBar_MouseDown);
  648. //
  649. // BufferLabel
  650. //
  651. this.BufferLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  652. this.BufferLabel.AutoSize = true;
  653. this.BufferLabel.Location = new System.Drawing.Point(601, 56);
  654. this.BufferLabel.Name = "BufferLabel";
  655. this.BufferLabel.Size = new System.Drawing.Size(35, 13);
  656. this.BufferLabel.TabIndex = 5;
  657. this.BufferLabel.Text = "Buffer";
  658. //
  659. // BufferBar
  660. //
  661. this.BufferBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  662. this.BufferBar.Location = new System.Drawing.Point(642, 51);
  663. this.BufferBar.Name = "BufferBar";
  664. this.BufferBar.Size = new System.Drawing.Size(130, 23);
  665. this.BufferBar.TabIndex = 3;
  666. //
  667. // StopButton
  668. //
  669. this.StopButton.Enabled = false;
  670. this.StopButton.Location = new System.Drawing.Point(122, 51);
  671. this.StopButton.Name = "StopButton";
  672. this.StopButton.Size = new System.Drawing.Size(49, 23);
  673. this.StopButton.TabIndex = 2;
  674. this.StopButton.Text = "Stop";
  675. this.StopButton.UseVisualStyleBackColor = true;
  676. this.StopButton.Click += new System.EventHandler(this.StopButton_Click);
  677. //
  678. // PauseButton
  679. //
  680. this.PauseButton.Enabled = false;
  681. this.PauseButton.Location = new System.Drawing.Point(67, 51);
  682. this.PauseButton.Name = "PauseButton";
  683. this.PauseButton.Size = new System.Drawing.Size(49, 23);
  684. this.PauseButton.TabIndex = 1;
  685. this.PauseButton.Text = "Pause";
  686. this.PauseButton.UseVisualStyleBackColor = true;
  687. this.PauseButton.Click += new System.EventHandler(this.PauseButton_Click);
  688. //
  689. // PlayButton
  690. //
  691. this.PlayButton.Location = new System.Drawing.Point(12, 51);
  692. this.PlayButton.Name = "PlayButton";
  693. this.PlayButton.Size = new System.Drawing.Size(49, 23);
  694. this.PlayButton.TabIndex = 0;
  695. this.PlayButton.Text = "Play";
  696. this.PlayButton.UseVisualStyleBackColor = true;
  697. this.PlayButton.Click += new System.EventHandler(this.PlayButton_Click);
  698. //
  699. // UpdateTimer
  700. //
  701. this.UpdateTimer.Interval = 200;
  702. this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
  703. //
  704. // NotifyIcon
  705. //
  706. this.NotifyIcon.ContextMenuStrip = this.NotifyMenuStrip;
  707. this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
  708. this.NotifyIcon.Text = "YJMPD Music Player";
  709. this.NotifyIcon.Visible = true;
  710. this.NotifyIcon.MouseUp += new System.Windows.Forms.MouseEventHandler(this.NotifyIcon_Click);
  711. //
  712. // NotifyMenuStrip
  713. //
  714. this.NotifyMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  715. this.NotifyMenuStripPlayingLabel,
  716. this.toolStripSeparator2,
  717. this.NotifyMenuStripPlayButton,
  718. this.NotifyMenuStripPauseButton,
  719. this.NotifyMenuStripStopButton,
  720. this.toolStripSeparator3,
  721. this.NotifyMenuStripNextButton,
  722. this.NotifyMenuStripPreviousButton});
  723. this.NotifyMenuStrip.Name = "NotifyMenuStrip";
  724. this.NotifyMenuStrip.Size = new System.Drawing.Size(120, 148);
  725. //
  726. // NotifyMenuStripPlayingLabel
  727. //
  728. this.NotifyMenuStripPlayingLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  729. this.NotifyMenuStripPlayingSongLabel});
  730. this.NotifyMenuStripPlayingLabel.Enabled = false;
  731. this.NotifyMenuStripPlayingLabel.Name = "NotifyMenuStripPlayingLabel";
  732. this.NotifyMenuStripPlayingLabel.Size = new System.Drawing.Size(119, 22);
  733. this.NotifyMenuStripPlayingLabel.Text = "Stopped";
  734. //
  735. // NotifyMenuStripPlayingSongLabel
  736. //
  737. this.NotifyMenuStripPlayingSongLabel.Enabled = false;
  738. this.NotifyMenuStripPlayingSongLabel.Name = "NotifyMenuStripPlayingSongLabel";
  739. this.NotifyMenuStripPlayingSongLabel.Size = new System.Drawing.Size(118, 22);
  740. this.NotifyMenuStripPlayingSongLabel.Text = "Stopped";
  741. this.NotifyMenuStripPlayingSongLabel.Visible = false;
  742. //
  743. // toolStripSeparator2
  744. //
  745. this.toolStripSeparator2.Name = "toolStripSeparator2";
  746. this.toolStripSeparator2.Size = new System.Drawing.Size(116, 6);
  747. //
  748. // NotifyMenuStripPlayButton
  749. //
  750. this.NotifyMenuStripPlayButton.Name = "NotifyMenuStripPlayButton";
  751. this.NotifyMenuStripPlayButton.Size = new System.Drawing.Size(119, 22);
  752. this.NotifyMenuStripPlayButton.Text = "Play";
  753. this.NotifyMenuStripPlayButton.Click += new System.EventHandler(this.NotifyMenuStripPlayButton_Click);
  754. //
  755. // NotifyMenuStripPauseButton
  756. //
  757. this.NotifyMenuStripPauseButton.Enabled = false;
  758. this.NotifyMenuStripPauseButton.Name = "NotifyMenuStripPauseButton";
  759. this.NotifyMenuStripPauseButton.Size = new System.Drawing.Size(119, 22);
  760. this.NotifyMenuStripPauseButton.Text = "Pause";
  761. this.NotifyMenuStripPauseButton.Click += new System.EventHandler(this.NotifyMenuStripPauseButton_Click);
  762. //
  763. // NotifyMenuStripStopButton
  764. //
  765. this.NotifyMenuStripStopButton.Enabled = false;
  766. this.NotifyMenuStripStopButton.Name = "NotifyMenuStripStopButton";
  767. this.NotifyMenuStripStopButton.Size = new System.Drawing.Size(119, 22);
  768. this.NotifyMenuStripStopButton.Text = "Stop";
  769. this.NotifyMenuStripStopButton.Click += new System.EventHandler(this.NotifyMenuStripStopButton_Click);
  770. //
  771. // toolStripSeparator3
  772. //
  773. this.toolStripSeparator3.Name = "toolStripSeparator3";
  774. this.toolStripSeparator3.Size = new System.Drawing.Size(116, 6);
  775. //
  776. // NotifyMenuStripNextButton
  777. //
  778. this.NotifyMenuStripNextButton.Name = "NotifyMenuStripNextButton";
  779. this.NotifyMenuStripNextButton.Size = new System.Drawing.Size(119, 22);
  780. this.NotifyMenuStripNextButton.Text = "Next";
  781. this.NotifyMenuStripNextButton.Click += new System.EventHandler(this.NotifyMenuStripNextButton_Click);
  782. //
  783. // NotifyMenuStripPreviousButton
  784. //
  785. this.NotifyMenuStripPreviousButton.Name = "NotifyMenuStripPreviousButton";
  786. this.NotifyMenuStripPreviousButton.Size = new System.Drawing.Size(119, 22);
  787. this.NotifyMenuStripPreviousButton.Text = "Previous";
  788. this.NotifyMenuStripPreviousButton.Click += new System.EventHandler(this.NotifyMenuStripPreviousButton_Click);
  789. //
  790. // songsToolStripMenuItem
  791. //
  792. this.songsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  793. this.SearchSongsTextBox,
  794. this.SearchSongsButton});
  795. this.songsToolStripMenuItem.Name = "songsToolStripMenuItem";
  796. this.songsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  797. this.songsToolStripMenuItem.Text = "Songs";
  798. //
  799. // SearchSongsTextBox
  800. //
  801. this.SearchSongsTextBox.Name = "SearchSongsTextBox";
  802. this.SearchSongsTextBox.Size = new System.Drawing.Size(100, 23);
  803. //
  804. // SearchSongsButton
  805. //
  806. this.SearchSongsButton.Enabled = false;
  807. this.SearchSongsButton.Name = "SearchSongsButton";
  808. this.SearchSongsButton.Size = new System.Drawing.Size(160, 22);
  809. this.SearchSongsButton.Text = "Search";
  810. this.SearchSongsButton.Click += new System.EventHandler(this.SearchSongsButton_Click);
  811. //
  812. // MainForm
  813. //
  814. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  815. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  816. this.ClientSize = new System.Drawing.Size(784, 461);
  817. this.Controls.Add(this.ControlsPanel);
  818. this.Controls.Add(this.MainPanel);
  819. this.Controls.Add(this.MenuStrip);
  820. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  821. this.MainMenuStrip = this.MenuStrip;
  822. this.MinimumSize = new System.Drawing.Size(800, 500);
  823. this.Name = "MainForm";
  824. this.Text = "YJMPD Music Player";
  825. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  826. this.Load += new System.EventHandler(this.MainForm_Load);
  827. ((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).EndInit();
  828. this.MainPanel.ResumeLayout(false);
  829. this.MainPanel.PerformLayout();
  830. this.SplitContainer.Panel1.ResumeLayout(false);
  831. this.SplitContainer.Panel2.ResumeLayout(false);
  832. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).EndInit();
  833. this.SplitContainer.ResumeLayout(false);
  834. this.MenuStrip.ResumeLayout(false);
  835. this.MenuStrip.PerformLayout();
  836. this.ControlsPanel.ResumeLayout(false);
  837. this.ControlsPanel.PerformLayout();
  838. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).EndInit();
  839. this.NotifyMenuStrip.ResumeLayout(false);
  840. this.ResumeLayout(false);
  841. this.PerformLayout();
  842. }
  843. #endregion
  844. public System.Windows.Forms.DataGridView SongsTableView;
  845. public System.Windows.Forms.ListBox GenreListBox;
  846. public System.Windows.Forms.ListView AlbumListView;
  847. public System.Windows.Forms.ListBox ArtistListBox;
  848. private System.Windows.Forms.Panel MainPanel;
  849. private System.Windows.Forms.MenuStrip MenuStrip;
  850. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  851. private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
  852. private System.Windows.Forms.Panel ControlsPanel;
  853. private System.Windows.Forms.Button PlayButton;
  854. private System.Windows.Forms.Button StopButton;
  855. private System.Windows.Forms.Button PauseButton;
  856. private System.Windows.Forms.Label BufferLabel;
  857. private System.Windows.Forms.ProgressBar BufferBar;
  858. private System.Windows.Forms.Timer UpdateTimer;
  859. private System.Windows.Forms.TrackBar PositionTrackBar;
  860. private System.Windows.Forms.Label LabelTotalTime;
  861. private System.Windows.Forms.Label LabelCurrentTime;
  862. private System.Windows.Forms.NotifyIcon NotifyIcon;
  863. private System.Windows.Forms.Label CurrentSongLabel;
  864. private System.Windows.Forms.Label AlbumListLabel;
  865. private System.Windows.Forms.Label ArtistListLabel;
  866. private System.Windows.Forms.Label GenreListLabel;
  867. private System.Windows.Forms.ToolStripMenuItem playlistsToolStripMenuItem;
  868. private System.Windows.Forms.ToolStripMenuItem overviewToolStripMenuItem;
  869. public System.Windows.Forms.ListBox PlaylistBox;
  870. private System.Windows.Forms.Label PlaylistListLabel;
  871. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  872. private System.Windows.Forms.ToolStripMenuItem playlistToolStripMenuItem;
  873. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  874. private System.Windows.Forms.ContextMenuStrip NotifyMenuStrip;
  875. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayButton;
  876. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPauseButton;
  877. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripStopButton;
  878. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayingLabel;
  879. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  880. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayingSongLabel;
  881. private System.Windows.Forms.SplitContainer SplitContainer;
  882. private System.Windows.Forms.ToolStripMenuItem makeToolStripMenuItem;
  883. private System.Windows.Forms.ToolStripMenuItem searchToolStripMenuItem;
  884. private System.Windows.Forms.ToolStripMenuItem SearchArtistToolStripLabel;
  885. private System.Windows.Forms.ToolStripTextBox SearchArtistsTextBox;
  886. private System.Windows.Forms.ToolStripMenuItem SearchGenresToolStripLabel;
  887. private System.Windows.Forms.ToolStripTextBox SearchGenresTextBox;
  888. private System.Windows.Forms.ToolStripMenuItem ClearArtistSearchButton;
  889. private System.Windows.Forms.ToolStripMenuItem ClearGenreSearchButton;
  890. private System.Windows.Forms.ToolStripMenuItem playbackToolStripMenuItem;
  891. private System.Windows.Forms.ToolStripMenuItem ShuffleSongButton;
  892. private System.Windows.Forms.ToolStripMenuItem LoopSongButton;
  893. private System.Windows.Forms.ToolStripMenuItem PlayNextSongButton;
  894. private System.Windows.Forms.Button NextButton;
  895. private System.Windows.Forms.Button PreviousButton;
  896. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  897. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripNextButton;
  898. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPreviousButton;
  899. private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
  900. private System.Windows.Forms.ToolStripMenuItem ViewQueueButton;
  901. private System.Windows.Forms.ToolStripMenuItem serverToolStripMenuItem;
  902. private System.Windows.Forms.ToolStripMenuItem SelectServerJancoButton;
  903. private System.Windows.Forms.ToolStripMenuItem SelectServerYorickButton;
  904. private System.Windows.Forms.ToolStripMenuItem radioToolStripMenuItem;
  905. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  906. private System.Windows.Forms.ToolStripMenuItem qDanceToolStripMenuItem;
  907. private System.Windows.Forms.ToolStripMenuItem customToolStripMenuItem;
  908. private System.Windows.Forms.ToolStripTextBox RadioStationTextBox;
  909. private System.Windows.Forms.ToolStripMenuItem SetRadioStationButton;
  910. private System.Windows.Forms.ToolStripMenuItem fMToolStripMenuItem;
  911. private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
  912. private System.Windows.Forms.ToolStripMenuItem slamFMToolStripMenuItem;
  913. private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
  914. private System.Windows.Forms.ToolStripMenuItem viewPlaylistToolstripMenuButton;
  915. private System.Windows.Forms.ToolStripMenuItem songsToolStripMenuItem;
  916. private System.Windows.Forms.ToolStripTextBox SearchSongsTextBox;
  917. private System.Windows.Forms.ToolStripMenuItem SearchSongsButton;
  918. }
  919. }