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

📄 listview2.hrh

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

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

	EAppCmdLastItem
	};

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

	EAppCmdZoomPriority,
	
	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
	{
	// we have these pages of controls
	EAppSpecificListViewPageId1 = 1,
	EAppSpecificListViewPageId2,
	EAppSpecificListViewPageId3,
	EAppSpecificListViewPageId4,
	EAppSpecificListViewPageId5,
	EAppSpecificListViewPageId6,
	EAppSpecificListViewPageId7,
	EAppSpecificListViewPageId8,
	EAppSpecificListViewPageId9,
	EAppSpecificListViewPageId10,
	EAppSpecificListViewPageId11,
	EAppSpecificListViewPageId12,

	// we have these different list boxes
	EAppSpecificListViewListId1,
	EAppSpecificListViewListId2,
	EAppSpecificListViewListId3,
	EAppSpecificListViewListId4,
	EAppSpecificListViewListId5,
	EAppSpecificListViewListId6,
	EAppSpecificListViewListId7,
	EAppSpecificListViewListId8,
	EAppSpecificListViewListId9,
	EAppSpecificListViewListId10,
	EAppSpecificListViewListId11,
	EAppSpecificListViewListId12,


	EAppControlLastItem
	};


#endif // __LISTVIEW2_HRH__

⌨️ 快捷键说明

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