2012-08-09 09:45:04 +00:00
|
|
|
using System;
|
2011-11-17 20:35:25 +00:00
|
|
|
|
2012-08-09 09:45:04 +00:00
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
2011-11-17 20:35:25 +00:00
|
|
|
|
|
|
|
namespace ANX.Framework.Media
|
|
|
|
{
|
2012-01-16 20:08:38 +00:00
|
|
|
public static class MediaPlayer
|
2011-11-17 20:35:25 +00:00
|
|
|
{
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Events
|
|
|
|
public static event EventHandler<EventArgs> ActiveSongChanged;
|
|
|
|
public static event EventHandler<EventArgs> MediaStateChanged;
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Public
|
|
|
|
#region IsShuffled (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static bool IsShuffled
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region IsRepeating (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static bool IsRepeating
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Volume (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static float Volume
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region IsMuted (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static bool IsMuted
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region IsVisualizationEnabled (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static bool IsVisualizationEnabled
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Queue (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static MediaQueue Queue
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region State (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static MediaState State
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region PlayPosition (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static TimeSpan PlayPosition
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region GameHasControl (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static bool GameHasControl
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Constructor
|
|
|
|
static MediaPlayer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Play (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void Play(Song song)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Play (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void Play(SongCollection songCollection)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Play (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void Play(SongCollection songCollection, int index)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Pause (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void Pause()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Resume (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void Resume()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region Stop (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void Stop()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region MoveNext (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void MoveNext()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region MovePrevious (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void MovePrevious()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2012-01-16 20:08:38 +00:00
|
|
|
|
2012-02-15 19:48:46 +00:00
|
|
|
#region GetVisualizationData (TODO)
|
2012-01-16 20:08:38 +00:00
|
|
|
public static void GetVisualizationData(VisualizationData data)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2012-02-15 19:48:46 +00:00
|
|
|
#endregion
|
2011-11-17 20:35:25 +00:00
|
|
|
}
|
|
|
|
}
|