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

📄 performance.hrh

📁 《UIQ 3 The Complete Guide》书的源代码
💻 HRH
字号:
//
// Performance.hrh - Shared Rsc/C++ hdr file for Performance
//
// 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 __PERFORMANCE_HRH__
#define __PERFORMANCE_HRH__

///////////////////////////////////////////////////////////////////////////////////////////////
// Menu/toolbar command ids. These are delivered to an app via the aCommand.Id()
enum TAppCommandIds
	{
	EAppCmdAbout=0x1000,	// below 0x1000 reserved for Uiq3 system use
	EAppCmdPerformTests,

	EAppCmdLastItem
	};

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

	EAppCmdPerformTestsPriority,
	EAppCmdAboutPriority,
	
	EAppCmdLastPriority
	};


// Uiq3 has concept of groups of commands, groups are typically delimited by lines in menu
// All commands need to belong to a group - and groups usually represent common command sets
enum TAppCommandGroupIds
	{
	EAppCmdMiscGroup,			// miscellaneous commands 

	EAppCmdLastGroupId
	};

// Our application has controls. Controls need to be indentified via ids. 
enum TAppControlIds
	{
	EAppSpecificListViewPageId = 1,		// we have a single page containing a list

	EAppSpecificListViewListId,			// we have a list control within the list on the page

	EAppControlLastItem
	};


#endif // __PERFORMANCE_HRH__

⌨️ 快捷键说明

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