#ifndef ITEMEDITOR_H
#define ITEMEDITOR_H
/****************************************************************************
*
* $RCSfile: ItemEditor.h $
* $Revision: 1.1 $
* $Date: 1997/09/05 14:47:02 $
* $Author: ssolie $
*
*****************************************************************************
*
* Copyright (c) 1997 Software Evolution.  All Rights Reserved.
*
*****************************************************************************
*
* ItemEditor.h -- ItemEditor class header file
*
* This file contains the definitions need to use ItemEditor objects.
*/

#include <exec/types.h>
#include <exec/ports.h>
#include <intuition/screens.h>

#include "Docket.h"


/*** Data types ***/
IMPORT struct ItemEditorClass;
typedef struct ItemEditorClass *ItemEditor;


/*** Function prototypes ***/
ItemEditor newItemEditor(struct Screen *screen, struct DrawInfo *draw_info,
	struct MsgPort *msg_port);
VOID deleteItemEditor(ItemEditor this);
BOOL openItemEditor(ItemEditor this, DocketItem item);
VOID closeItemEditor(ItemEditor this);
BOOL handleItemEditorSignal(ItemEditor this);


#endif
