MainForm.Designer.cs 49 KB

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