⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 keys.c

📁 大名鼎鼎的CE下播放软件,TCPPMP的源代码!!!2410下可以流畅的解QVGA的H264,MPEG4等格式.
💻 C
字号:
/*****************************************************************************
 *
 * 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
 *
 * $Id: keys.c 271 2005-08-09 08:31:35Z picard $
 *
 * The Core Pocket Media Player
 * Copyright (c) 2004-2005 Gabor Kovacs
 *
 ****************************************************************************/

#include "../../common/common.h"
#if defined(TARGET_PALMOS)

#include "../../common/palmos/pace.h"

#ifdef HAVE_PALMONE_SDK
#include <Common/System/palmOneChars.h>
#include <Common/System/palmOneNavigator.h>
#endif

#ifdef HAVE_SONY_SDK
#include <SonyChars.h>
#include <Libraries/SonyRmcLib.h>
#endif

bool_t KeyHold(EventPtr Event)
{
	return (Event->eType==keyDownEvent && (Event->data.keyDown.modifiers & autoRepeatKeyMask)) || 
		Event->eType==keyHoldEvent;
}

static int KeyDir(EventPtr Event)
{
	if (Event->eType==keyDownEvent)
		return (Event->data.keyDown.modifiers & (willSendUpKeyMask|autoRepeatKeyMask))?1:2; 
	if (Event->eType==keyHoldEvent)
		return 1;
	return -1;
}

#ifdef HAVE_PALMONE_SDK
static int NOINLINE PalmNav(EventPtr Event,int Change,int Bit)
{
	if (Event->data.keyDown.chr != vchrNavChange) 
		return 0;
	Bit &= Event->data.keyDown.keyCode;
	if ((Event->data.keyDown.modifiers & autoRepeatKeyMask) && Bit)
		return 1;
	if (Event->data.keyDown.keyCode & Change)
		return Bit ? 1:-1;
	return 0;
}
#endif

int KeySelect(EventPtr Event)
{
#ifdef HAVE_SONY_SDK
	if (Event->eType==keyDownEvent)
	{
		if (Event->data.keyDown.chr == vchrJogPush ||
			Event->data.keyDown.chr == vchrJogPushRepeat) return 1;
		if (Event->data.keyDown.chr == vchrJogRelease)	return -1;
	}
#endif
	if ((Event->eType==keyHoldEvent || Event->eType==keyDownEvent) && 
		Event->data.keyDown.chr == vchrHardRockerCenter)
		return 1; // avoid keyUpEvent because vchrRocketCenter still generated

	if (Event->data.keyDown.chr == vchrRockerCenter)
		return KeyDir(Event);

#ifdef HAVE_PALMONE_SDK
	return PalmNav(Event,navChangeSelect,navBitSelect);
#endif
	return 0;
}

int KeyLeft(EventPtr Event)
{
#ifdef HAVE_SONY_SDK
	if (Event->data.keyDown.chr == vchrJogLeft)
		return KeyDir(Event);
#endif
	if (Event->data.keyDown.chr == vchrRockerLeft)
		return KeyDir(Event);
#ifdef HAVE_PALMONE_SDK
	return PalmNav(Event,navChangeLeft,navBitLeft);
#else
	return 0;
#endif
}

int KeyRight(EventPtr Event)
{
#ifdef HAVE_SONY_SDK
	if (Event->data.keyDown.chr == vchrJogRight)
		return KeyDir(Event);
#endif
	if (Event->data.keyDown.chr == vchrRockerRight)
		return KeyDir(Event);
#ifdef HAVE_PALMONE_SDK
	return PalmNav(Event,navChangeRight,navBitRight);
#else
	return 0;
#endif
}

int KeyUp(EventPtr Event)
{
	if (Event->data.keyDown.chr == vchrRockerUp ||
		Event->data.keyDown.chr == vchrPageUp)
		return KeyDir(Event);
#ifdef HAVE_PALMONE_SDK
	return PalmNav(Event,navChangeUp,navBitUp);
#else
	return 0;
#endif
}

int KeyDown(EventPtr Event)
{
	if (Event->data.keyDown.chr == vchrRockerDown ||
	    Event->data.keyDown.chr == vchrPageDown)
		return KeyDir(Event);
#ifdef HAVE_PALMONE_SDK
	return PalmNav(Event,navChangeDown,navBitDown);
#else
	return 0;
#endif
}

#ifdef HAVE_SONY_SDK
static int NOINLINE RmcKey(EventPtr Event,int Code)
{
	if (GetRmcKey(Event->data.keyDown.keyCode) == Code)
	{
		if (Event->data.keyDown.chr == vchrRmcKeyPush)
			return 1;
		if (Event->data.keyDown.chr == vchrRmcKeyRelease)
			return -1;
	}
	return 0;
}
#endif

int KeyMediaPlay(EventPtr Event)
{
	int i = 0;
#ifdef HAVE_SONY_SDK
	i = RmcKey(Event,rmcKeyPlay);
#endif
	return i;
}

int KeyMediaStop(EventPtr Event)
{
	int i = 0;
#ifdef HAVE_SONY_SDK
	i = RmcKey(Event,rmcKeyStop);
#endif
	return i;
}

int KeyMediaVolumeUp(EventPtr Event)
{
	int i = 0;
#ifdef HAVE_SONY_SDK
	i = RmcKey(Event,rmcKeyUp);
#endif
	return i;
}

int KeyMediaVolumeDown(EventPtr Event)
{
	int i = 0;
#ifdef HAVE_SONY_SDK
	i = RmcKey(Event,rmcKeyDown);
#endif
	return i;
}

int KeyMediaNext(EventPtr Event)
{
	int i = 0;
#ifdef HAVE_SONY_SDK
	i = RmcKey(Event,rmcKeyFfPlay);
#endif
	return i;
}

int KeyMediaPrev(EventPtr Event)
{
	int i = 0;
#ifdef HAVE_SONY_SDK
	i = RmcKey(Event,rmcKeyFrPlay);
#endif
	return i;
}

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -