signedapp.hrh

来自「《UIQ 3 The Complete Guide》书的源代码」· HRH 代码 · 共 56 行

HRH
56
字号
//
// SignedApp.hrh - Shared Rsc/C++ hdr file for SignedApp
//
// Copyright (C) UIQ Technology AB, 2007
//
// This material is provided "as is" without any warranty to its performance or functionality. 
// In no event shall UIQ Technology be liable for any damages whatsoever arising out of the
// use or inabilty to use this material. 
//

#ifndef __SIGNEDAPP_HRH__
#define __SIGNEDAPP_HRH__

// Menu/toolbar commands
enum TAppCommandIds
	{
	EAppCmdContinue=0x1000,	// below 0x1000 reserved for Uiq3 system use

	EAppCmdAbout,

	EAppCmdLastItem
	};

// Additional controls in a view
enum TAppControlIds
	{
	EAppDetailsViewPage = 1,
	EDetailsViewId,

	EAppLabel1,

	EAppControlLastItem
	};

// Uiq3 has concept of groups of commands, groups are typically delimited by lines in menu
enum TAppCommandGroupIds
	{
	EAppCmdFileGroup,

	EAppCmdMiscGroup,

	EAppCmdLastGroupId
	};

// UIQ3 has concept of command priorities, effectivly defines sort order in menus 
enum TAppCommandPriorities
	{
	EAppCmdDefaultPriority,

	EAppCmdAboutPriority,

	EAppCmdLastPriority
	};

#endif // __SIGNEDAPP_HRH__

⌨️ 快捷键说明

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