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

📄 dateagenda.h

📁 我的Palm OS 5 SDK zhCN_PIMApps代码。 使用codewarrior 开发环境
💻 H
字号:
/******************************************************************************
 *
 * Copyright (c) 1995-2003 PalmSource, Inc. All rights reserved.
 *
 * File: DateAgenda.h
 *
 * Release: Palm OS 5 SDK (68K) R3.
 *
 * Description:
 *	  Display and support code for Datebook's Agenda view.
 *
 *****************************************************************************/

#define agendaTitleDateColumn				0
#define agendaTitleTimeColumn				1

#define agendaTitleInset					4
#define agendaTitleDateColumnSpacing	0

// Columns in the agenda view's appointment table
#define agendaApptTimeColumn				0
#define agendaApptDescColumn				1

#define agendaApptTimeColumnSpacing		3


#define agendaToDoTitleColumn				0
#define agendaToDoCategoryColumn			1

#define agendaToDoTitleInset				4		// Pixels between title and left margin
#define agendaToDoCategoryInset			4		// Pixels between category menu and right margin

#define agendaToDoTitleColumnSpacing	0		// Space between title and category columns


// Columns in the agenda view's task table



enum {
	agendaSectionUnused,
	agendaSectionMainTitle,
	agendaSectionAppointmentsTitle,
	agendaSectionAppointmentsView,
	agendaSectionTasksTitle,
	agendaSectionTasksView
};
#define agendaSectionMax			agendaSectionTasksView




/***********************************************************************
 *
 *	Agenda structure
 *
 ***********************************************************************/

// In a better world, these would be the members of class Agenda
typedef struct {
	DmOpenRef						apptDB;
	MemHandle						apptsH;
	UInt16							apptCount;
	FontID							apptFont;
	UInt8								reserved1;
	UInt16							apptLineHeight;
	UInt16							apptLineCount;
	UInt16							apptTopVisibleIndex;
	
	DmOpenRef						todoDB;
	MemHandle						todosH;
	UInt16							todoCount;
	FontID							todoFont;
	UInt8								reserved2;
	UInt16							todoLineHeight;
	UInt16							todoLineCount;
	UInt16							todoCategoryID;	// DOLATER ??? - or is it Index?
	char								todoCategoryName [dmCategoryLength];
	Boolean							todoShowCategories;
	UInt8								reserved3;

	
//	DateType							date;
	FontID							dateFont;
	DateFormatType					dateFormat;
	DateFormatType					longDateFormat;
	
	FontID							timeFont;
	TimeFormatType					timeFormat;
	UInt8								reserved4;
	UInt32							timeSeconds;
} AgendaType;


/***********************************************************************
 *
 *	Functions
 *
 ***********************************************************************/
#ifdef __cplusplus
extern "C" {
#endif


Boolean				AgendaViewHandleEvent (
								EventType*							event);

void					AgendaViewInit (
								FormPtr							frm );

Boolean				SeekCurrentRecord (
								DmOpenRef						inDB,
								UInt16*							ioIndexP,
								UInt16							inOffset,
								Int16								inDirection );

#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

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