project.rss

来自「symbian下开发软件时」· RSS 代码 · 共 103 行

RSS
103
字号
// project.rss
// Copyright Symbian Ltd, John Pagonis 2005-2006, Symbian Developer NetworkNAME MULT#include <eikon.rh>#include <eikcore.rsg>#include <indicato.rsg>
#include <cknctl.rh>#include "project.hrh"
RESOURCE RSS_SIGNATURE { }RESOURCE TBUF { buf=""; }RESOURCE EIK_APP_INFO    {    menubar = r_main_menu;    cba = r_main_cba;
	status_pane = r_status_pane;
	toolband=r_titlebar;    }RESOURCE MENU_BAR r_main_menu	{	titles=		{        MENU_TITLE { menu_pane=r_actions_menu;txt="Actions"; }		};	}RESOURCE CBA r_main_cba    {    buttons=        {        CBA_BUTTON            {            id=EEikCmdExit;            txt="Exit";            },
		CBA_BUTTON
			{
			id=EProjectAppCmdToggleView;
			txt="Change\nView";
			},
		CBA_BUTTON
			{
			id=EProjectAppCmdDoStuff;
			txt="Stuff ON";
			},
		CBA_BUTTON
			{
			id=EProjectAppCmdDoStuffCancel;
			txt="Stuff OFF";
			}        };    }

RESOURCE STATUS_PANE_APP_MODEL r_status_pane 
    { 
    layout = R_INDICATOR_LAYOUT_NARROW; 
    }
RESOURCE TOOLBAND r_titlebar 
    { 
    controls= 
        { 
        APPTITLE 
            { 
            id=EProjectAppTitle; 
            maintitle= "Project S80"; 
			subtitle ="1.2";
			titletype= ECknAppTitleTypeWindow;
            } 
        }; 
    }
RESOURCE MENU_PANE r_actions_menu	{	items=		{		MENU_ITEM
			{
			txt = "Do Something";
			flags = 0;
			command = EProjectAppCmdDoSomething;
			},
		MENU_ITEM
			{
			txt = "Do Better";
			flags = 0;
			command = EProjectAppCmdDoBetter;
			},
		MENU_ITEM
			{
			txt = "Do More";
			flags = 0;
			command = EProjectAppCmdDoMore;
			}        };    }

⌨️ 快捷键说明

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