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
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
class CPlayerCAD : public CPlayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CPlayerCAD();
|
|
|
|
~CPlayerCAD();
|
|
|
|
|
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);
|
|
|
|
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
|
|
|
|
|
|
|
private:
|
|
|
|
void Initialize();
|
|
|
|
void Uninitialize();
|
|
|
|
static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
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-05-24 18:20:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|