2011-05-21 18:17:37 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PLAYERITUNES_H__
|
|
|
|
#define __PLAYERITUNES_H__
|
|
|
|
|
|
|
|
#include "Player.h"
|
|
|
|
#include "iTunes/iTunesCOMInterface.h"
|
|
|
|
|
|
|
|
#ifndef _ATL_DLL
|
|
|
|
#define _ATL_DLL
|
|
|
|
#define _ATL_APARTMENT_THREADED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlcom.h>
|
|
|
|
#include <atlhost.h>
|
|
|
|
#include <atlctl.h>
|
|
|
|
|
|
|
|
class CPlayerITunes : public CPlayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CPlayerITunes();
|
|
|
|
~CPlayerITunes();
|
|
|
|
|
2011-06-09 09:47:55 +00:00
|
|
|
virtual void Pause();
|
|
|
|
virtual void Play();
|
2011-05-21 18:17:37 +00:00
|
|
|
virtual void PlayPause();
|
|
|
|
virtual void Stop();
|
|
|
|
virtual void Next();
|
|
|
|
virtual void Previous();
|
2011-06-09 09:47:55 +00:00
|
|
|
virtual void SetPosition(int position);
|
2011-05-21 18:17:37 +00:00
|
|
|
virtual void SetRating(int rating);
|
|
|
|
virtual void SetVolume(int volume);
|
|
|
|
virtual void ClosePlayer();
|
|
|
|
virtual void OpenPlayer();
|
|
|
|
virtual void TogglePlayer();
|
|
|
|
|
|
|
|
virtual void AddInstance(MEASURETYPE type);
|
|
|
|
virtual void RemoveInstance();
|
|
|
|
virtual void UpdateData();
|
|
|
|
|
|
|
|
private:
|
|
|
|
class CEventHandler : public _IiTunesEvents
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CEventHandler(CPlayerITunes* player);
|
|
|
|
~CEventHandler();
|
|
|
|
|
|
|
|
// IUnknown
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, void** ppvObject);
|
|
|
|
ULONG STDMETHODCALLTYPE AddRef();
|
|
|
|
ULONG STDMETHODCALLTYPE Release();
|
|
|
|
|
|
|
|
// IDispatch
|
|
|
|
HRESULT STDMETHODCALLTYPE GetTypeInfoCount(UINT*) { return E_NOTIMPL; }
|
|
|
|
HRESULT STDMETHODCALLTYPE GetTypeInfo(UINT, LCID, ITypeInfo**) { return E_NOTIMPL; }
|
|
|
|
HRESULT STDMETHODCALLTYPE GetIDsOfNames(const IID&, LPOLESTR*, UINT, LCID, DISPID*) { return E_NOTIMPL; }
|
|
|
|
HRESULT STDMETHODCALLTYPE Invoke(DISPID dispidMember, REFIID, LCID, WORD, DISPPARAMS* pDispParams, VARIANT*, EXCEPINFO*, UINT*);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ULONG m_RefCount;
|
2011-05-31 13:15:53 +00:00
|
|
|
CPlayerITunes* m_Player;
|
|
|
|
IConnectionPoint* m_ConnectionPoint;
|
|
|
|
DWORD m_ConnectionCookie;
|
2011-05-21 18:17:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void Initialize();
|
|
|
|
void Uninitialize();
|
|
|
|
void OnTrackChange();
|
|
|
|
void OnStateChange(bool playing);
|
|
|
|
void OnVolumeChange(int volume);
|
|
|
|
bool CheckActive();
|
|
|
|
|
|
|
|
bool m_Initialized;
|
|
|
|
bool m_UserQuitPrompt;
|
|
|
|
bool m_HasCoverMeasure;
|
|
|
|
HWND m_Window;
|
|
|
|
|
|
|
|
IiTunes* m_iTunes;
|
|
|
|
CEventHandler* m_iTunesEvent;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|