📄 layoutmanager1.hrh
字号:
//
// LayoutManager1.hrh - Shared Rsc/C++ hdr file for LayoutManager1
//
// 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 __LAYOUTMANAGER1_HRH__
#define __LAYOUTMANAGER1_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
EAppCmdLastItem
};
// UIQ3 has concept of command priorities, this effectivly defines sort order in menus
enum TAppCommandPriorities
{
EAppCmdDefaultPriority,
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
{
// we have these pages of controls
EAppSpecificListViewPageId1 = 1,
EAppSpecificListViewPageId2,
EAppSpecificListViewPageId3,
EAppSpecificListViewPageId4,
// we have some controls to display
EAppSpecificControlId1,
EAppSpecificControlId2,
EAppSpecificControlId3,
EAppSpecificControlId4,
EAppSpecificControlId5,
EAppSpecificControlId6,
EAppSpecificControlId7,
EAppSpecificControlId8,
EAppControlLastItem
};
#endif // __LAYOUTMANAGER1_HRH__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -