MainForm.Designer.cs 55 KB

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