oandx.rss

来自「Symbian OS C++ for Mobile Phones v3 Exam」· RSS 代码 · 共 74 行

RSS
74
字号
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.

NAME OANX

#include <eikon.rh>
#include <avkon.rh>
#include <avkon.rsg>
#include <appinfo.rh>
#include <oandx.mbg>
#include "OandX.hrh"

RESOURCE RSS_SIGNATURE
	{
	}

RESOURCE TBUF r_default_document_name
	{
	buf="Oandx";
	}

RESOURCE EIK_APP_INFO
	{
	menubar = r_oandx_menubar;
	cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
	}

RESOURCE MENU_BAR r_oandx_menubar
	{
	titles =
		{
		MENU_TITLE
			{
			menu_pane = r_oandx_menu;
			}
		};
	}

RESOURCE MENU_PANE r_oandx_menu
	{
	items = 
		{
		MENU_ITEM
			{
			command = EOandXNewGame;
			txt = "New game";
			}
		};
	}

RESOURCE TBUF r_oandx_o_wins
	{
	buf = "Noughts win"; // Maximum 40 characters - has to fit in an information note
	}

RESOURCE TBUF r_oandx_x_wins
	{
	buf = "Crosses win"; // Maximum 40 characters - has to fit in an information note
	}

RESOURCE TBUF r_oandx_who_starts
	{
	buf = "First move";
	}

RESOURCE TBUF r_oandx_o_moves_first
	{
	buf = "Noughts move first";
	}

RESOURCE TBUF r_oandx_x_moves_first
	{
	buf = "Crosses move first";
	}

⌨️ 快捷键说明

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