/*
**
** Copyright © 1996-1997 Kai Hofmann. All rights reserved.
** Registered MUI custom class!
**
** $VER: MonthNavigator_mcc.e 16.5 (21.08.97)
**
** Amiga-E interface model by Oskar Sundberg <gary@canit.se>
**
*/

 OPT MODULE
 OPT EXPORT
 OPT PREPROCESS

 #ifndef MUI_MONTHNAVIGATOR_MCC_H
   #define MUI_MONTHNAVIGATOR_MCC_H

   #define MUIC_MonthNavigator	'MonthNavigator.mcc'
   #define MonthNavigatorObject	Mui_NewObjectA(MUIC_MonthNavigator,[TAG_IGNORE,0

   CONST MUIA_MonthNavigator_ShowWeekdayNames		= $81ee0005
   CONST MUIA_MonthNavigator_ShowWeekNumbers		= $81ee0006
   CONST MUIA_MonthNavigator_Input			= $81ee0009
   CONST MUIA_MonthNavigator_UseFrames			= $81ee000a
   CONST MUIA_MonthNavigator_ShowInvisibles		= $81ee000b
   CONST MUIA_MonthNavigator_WeekdayNamesSpacing	= $81ee000c
   CONST MUIA_MonthNavigator_WeekNumbersSpacing		= $81ee000d
   CONST MUIA_MonthNavigator_LineWeekdayNames		= $81ee000e
   CONST MUIA_MonthNavigator_LineWeekNumbers		= $81ee000f
   CONST MUIA_MonthNavigator_Draggable			= $81ee0012
   CONST MUIA_MonthNavigator_MarkHook			= $81ee0013
   CONST MUIA_MonthNavigator_Dropable			= $81ee0014
   CONST MUIA_MonthNavigator_DragQueryHook		= $81ee0015
   CONST MUIA_MonthNavigator_DragDropHook		= $81ee0016
   CONST MUIA_MonthNavigator_ShowLastMonthDays		= $81ee0017
   CONST MUIA_MonthNavigator_ShowNextMonthDays		= $81ee0018

   CONST MUIM_MonthNavigator_Update			= $81ee0010

   OBJECT muip_monthnavigator_update
     methodid	: LONG
   ENDOBJECT

   #define MUIV_MonthNavigator_InputMode_None		0
   #define MUIV_MonthNavigator_InputMode_RelVerify	1
   #define MUIV_MonthNavigator_InputMode_Immediate	2

   #define MUIV_MonthNavigator_MarkHook_HiToday		1

   #define MUIV_MonthNavigator_MarkDay_Version		1
   OBJECT muis_monthnavigator_markday
     version	: LONG
     year	: LONG
     month	: INT
     day	: INT

     preparse	: PTR TO CHAR
     background	: LONG
     shorthelp	: PTR TO CHAR
     disabled	: INT
   ENDOBJECT

 #endif
