rect-context.h revision d74e415b7dd25ccb70d40a9f11ec99f23b57ed63
#ifndef __SP_RECT_CONTEXT_H__
#define __SP_RECT_CONTEXT_H__
/*
* Rectangle drawing context
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2000 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
* Copyright (C) 2002 Lauris Kaplinski
*
* Released under GNU GPL
*/
#include <stddef.h>
#include "event-context.h"
#include "sp-rect.h"
#define SP_IS_RECT_CONTEXT(obj) (dynamic_cast<const SPRectContext*>((const SPEventContext*)obj) != NULL)
virtual ~SPRectContext();
void finishItem();
void cancel();
};
#endif