videoplayer.rss
来自「《基于Symbian OS的手机开发与应用实践》这本书的配套源码。」· RSS 代码 · 共 127 行
RSS
127 行
/*
* ============================================================================
* Name : VideoPlayer.rss
* Part of : VideoPlayer
* Created : 31.01.2006 by ToBeReplacedByAuthor
* Description:
* This file contains all the resources for the VideoPlayer.
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// RESOURCE IDENTIFIER
NAME AWIZ // 4 letter ID
// INCLUDES
#include <eikon.rh>
#include "VideoPlayer.hrh"
#include "VideoPlayer.loc"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf = "VideoPlayer"; }
RESOURCE EIK_APP_INFO
{
hotkeys = r_videoplayer_hotkeys;
// menubar = r_videoplayer_menubar;
cba = r_softkeys_play_exit;
}
//----------------------------------------------------
//
// r_videoplayer_hotkeys
//
//----------------------------------------------------
//
RESOURCE HOTKEYS r_videoplayer_hotkeys
{
control =
{
HOTKEY { command = EAknCmdExit; key='e'; }
};
}
//----------------------------------------------------
//
// r_softkeys_play_exit
//
//----------------------------------------------------
//
RESOURCE CBA r_softkeys_play_exit
{
buttons =
{
CBA_BUTTON
{
id = EVideoPlayerCmdPlay;
txt = qtn_appl_play;
},
CBA_BUTTON
{
id = EAknSoftkeyBack;
txt = qtn_appl_back;
}
};
}
//----------------------------------------------------
//
// r_softkeys_pause_stop
//
//----------------------------------------------------
//
RESOURCE CBA r_softkeys_pause_stop
{
buttons =
{
CBA_BUTTON
{
id = EVideoPlayerCmdPause;
txt = qtn_appl_pause;
},
CBA_BUTTON
{
id = EVideoPlayerCmdStop;
txt = qtn_appl_stop;
}
};
}
//----------------------------------------------------
//
// r_softkeys_continue_stop
//
//----------------------------------------------------
//
RESOURCE CBA r_softkeys_continue_stop
{
buttons =
{
CBA_BUTTON
{
id = EVideoPlayerCmdContinue;
txt = qtn_appl_continue;
},
CBA_BUTTON
{
id = EVideoPlayerCmdStop;
txt = qtn_appl_stop;
}
};
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?