2011-05-24 18:20:35 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 Birunthan Mohanathas (www.poiru.net)
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-05-24 18:20:35 +00:00
|
|
|
*/
|
|
|
|
|
2011-06-12 10:05:37 +00:00
|
|
|
#ifndef __PLAYERCAD_H__
|
|
|
|
#define __PLAYERCAD_H__
|
2011-05-24 18:20:35 +00:00
|
|
|
|
|
|
|
#include "Player.h"
|
|
|
|
|
2011-06-25 12:44:33 +00:00
|
|
|
typedef BOOL (WINAPI * FPCHANGEWINDOWMESSAGEFILTER)(UINT message, DWORD dwFlag);
|
|
|
|
typedef BOOL (WINAPI * FPCHANGEWINDOWMESSAGEFILTEREX)(HWND hWnd, UINT message, DWORD dwFlag, PCHANGEFILTERSTRUCT pChangeFilterStruct);
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
class PlayerCAD : public Player
|
2011-05-24 18:20:35 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-05-31 14:18:52 +00:00
|
|
|
virtual ~PlayerCAD();
|
2011-06-19 14:58:48 +00:00
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
static Player* Create();
|
2011-05-24 18:20:35 +00:00
|
|
|
|
2011-06-17 19:07:06 +00:00
|
|
|
virtual void UpdateData();
|
|
|
|
|
2011-06-09 09:47:55 +00:00
|
|
|
virtual void Pause();
|
2011-05-24 18:20:35 +00:00
|
|
|
virtual void Play();
|
|
|
|
virtual void Stop();
|
|
|
|
virtual void Next();
|
|
|
|
virtual void Previous();
|
2011-06-09 09:47:55 +00:00
|
|
|
virtual void SetPosition(int position);
|
2011-05-24 18:20:35 +00:00
|
|
|
virtual void SetRating(int rating);
|
|
|
|
virtual void SetVolume(int volume);
|
2011-09-11 08:22:07 +00:00
|
|
|
virtual void SetShuffle(bool state);
|
|
|
|
virtual void SetRepeat(bool state);
|
2011-05-24 18:20:35 +00:00
|
|
|
virtual void ClosePlayer();
|
2011-06-17 19:07:06 +00:00
|
|
|
virtual void OpenPlayer(std::wstring& path);
|
2011-05-24 18:20:35 +00:00
|
|
|
|
2011-06-19 14:58:48 +00:00
|
|
|
protected:
|
2013-05-31 14:18:52 +00:00
|
|
|
PlayerCAD();
|
2011-06-19 14:58:48 +00:00
|
|
|
|
2011-05-24 18:20:35 +00:00
|
|
|
private:
|
|
|
|
void Initialize();
|
|
|
|
void Uninitialize();
|
|
|
|
static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
static Player* c_Player;
|
2011-06-19 14:58:48 +00:00
|
|
|
|
2011-06-12 10:05:37 +00:00
|
|
|
HWND m_Window;
|
|
|
|
HWND m_PlayerWindow;
|
2011-06-17 19:07:06 +00:00
|
|
|
std::wstring m_PlayerPath;
|
2011-07-10 09:30:51 +00:00
|
|
|
bool m_ExtendedAPI;
|
2012-04-04 12:21:02 +00:00
|
|
|
bool m_Open;
|
2011-05-24 18:20:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|