#ifndef DOCKETEDITOR_H
#define DOCKETEDITOR_H
/****************************************************************************
*
* $RCSfile: DocketEditor.h $
* $Revision: 1.1 $
* $Date: 1997/08/19 15:11:40 $
* $Author: ssolie $
*
*****************************************************************************
*
* Copyright (c) 1997 Software Evolution.  All Rights Reserved.
*
*****************************************************************************
*
* DocketEditor.h -- DocketEditor class header file
*
* This file contains the definitions need to use DocketEditor objects.
*/

#include <exec/types.h>
#include "Docket.h"


/*** Definitions ***/
#define DOCKETEDITOR_ERROR		0	/* error condition */
#define DOCKETEDITOR_OK			1	/* OK */
#define DOCKETEDITOR_HIDE		2	/* hide editor */
#define DOCKETEDITOR_QUIT		3	/* quit docket */


/*** Data types ***/
IMPORT struct DocketEditorClass;
typedef struct DocketEditorClass *DocketEditor;


/*** Function prototypes ***/
DocketEditor newDocketEditor(Docket docket);
VOID deleteDocketEditor(DocketEditor this);
ULONG getDocketEditorSignal(DocketEditor this);
LONG handleDocketEditorSignal(DocketEditor this);


#endif
