/*
* $XConsortium: Clock.h,v 1.28 89/07/20 14:54:38 jim Exp $
*/


/***********************************************************
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in 
supporting documentation, and that the names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.  

DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

C++ Interface Author: Roman J. Budzianowski - Project Athena MIT

******************************************************************/

#ifndef _XawClock_h
#define _XawClock_h

/***********************************************************************
 *
 * Clock Widget
 *
 ***********************************************************************/

#include <X11/Xmu/Converters.h>
#include <xt++/Xaw/Simple.h>


/* Parameters:

 Name		     Class		RepType		Default Value
 ----		     -----		-------		-------------
 analog		     Boolean		Boolean		True
 background	     Background		Pixel		white
 backingStore	     BackingStore	BackingStore	default
 border		     BorderColor	Pixel		Black
 borderWidth	     BorderWidth	Dimension	1
 chime		     Boolean		Boolean		False
 destroyCallback     Callback		Pointer		NULL
 font		     Font		XFontStruct*	fixed
 foreground	     Foreground		Pixel		black
 hand		     Foreground		Pixel		black
 height		     Height		Dimension	164
 highlight	     Foreground		Pixel		black
 mappedWhenManaged   MappedWhenManaged	Boolean		True
 padding	     Margin		int		8
 reverseVideo	     ReverseVideo	Boolean		False
 update		     Interval		int		60 (seconds)
 width		     Width		Dimension	164
 x		     Position		Position	0
 y		     Position		Position	0

*/

/* Resource names used to the clock widget */

		/* color of hands */
#define XtNhand "hands"


		/* Boolean: digital if FALSE */
#define XtNanalog "analog"

		/* Boolean:  */
#define XtNchime "chime"

		/* Int: amount of space around outside of clock */
#define XtNpadding "padding"

extern WidgetClass clockWidgetClass;

#define SEG_BUFF_SIZE		128
#define ASCII_TIME_BUFLEN	32	/* big enough for 26 plus slop */

/* New fields for the clock widget instance record */
class ClockWidget :public SimpleWidget {
 private:
   Pixel	fgpixel;	/* color index for text */
   Pixel	Hipixel;	/* color index for Highlighting */
   Pixel	Hdpixel;	/* color index for hands */
   XFontStruct	*font;	/* font for text */
   GC	myGC;		/* pointer to GraphicsContext */
   GC	EraseGC;	/* eraser GC */
   GC	HandGC;		/* Hand GC */
   GC	HighGC;		/* Highlighting GC */
/* start of graph stuff */
   int	update;		/* update frequence */
   Dimension radius;		/* radius factor */
   int	backing_store;	/* backing store type */
   Boolean reverse_video;
   Boolean chime;
   Boolean beeped;
   Boolean analog;
   Boolean show_second_hand;
   Dimension second_hand_length;
   Dimension minute_hand_length;
   Dimension hour_hand_length;
   Dimension hand_width;
   Dimension second_hand_width;
   Position centerX;
   Position centerY;
   int	numseg;
   int	padding;
   XPoint	segbuff[SEG_BUFF_SIZE];
   XPoint	*segbuffptr;
   XPoint	*hour, *sec;
   struct tm  otm ;
   XtIntervalId interval_id;
   char prev_time_string[ASCII_TIME_BUFLEN];
 public:
   Constructors(Clock,clock) {}
};

#endif /* _XawClock_h */
/* DON'T ADD STUFF AFTER THIS #endif */
