예제 #1
0
파일: itunes.cpp 프로젝트: partition/kadu
bool ITunesMediaPlayer::isActive()
{
	kdebugf();
	Tune t = controller->currentTune();
	return (t.state() != Tune::unknown);
}
예제 #2
0
파일: itunes.cpp 프로젝트: partition/kadu
bool ITunesMediaPlayer::isPlaying()
{
	kdebugf();
	Tune t = controller->currentTune();
	return (t.state() == Tune::playing);
}