From 179fa413b047bede6e32109e2ce82437c5fb8d34 Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Mon, 16 Jan 2006 02:36:01 +0000 Subject: moving trunk for module inkscape (bzr r1) --- src/debug/event.h | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/debug/event.h (limited to 'src/debug/event.h') diff --git a/src/debug/event.h b/src/debug/event.h new file mode 100644 index 000000000..c3b3a83fb --- /dev/null +++ b/src/debug/event.h @@ -0,0 +1,75 @@ +/* + * Inkscape::Debug::Event - event for debug tracing + * + * Authors: + * MenTaLguY + * + * Copyright (C) 2005 MenTaLguY + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#ifndef SEEN_INKSCAPE_DEBUG_EVENT_H +#define SEEN_INKSCAPE_DEBUG_EVENT_H + +#include +#include "util/shared-c-string-ptr.h" + +namespace Inkscape { + +namespace Debug { + +class Event { +public: + virtual ~Event() {} + + enum Category { + CORE=0, + XML, + SPOBJECT, + DOCUMENT, + REFCOUNT, + EXTENSION, + OTHER + }; + enum { N_CATEGORIES=OTHER+1 }; + + struct PropertyPair { + public: + PropertyPair() {} + PropertyPair(Util::SharedCStringPtr n, Util::SharedCStringPtr v) + : name(n), value(v) {} + PropertyPair(char const *n, Util::SharedCStringPtr v) + : name(Util::SharedCStringPtr::copy(n)), value(v) {} + PropertyPair(Util::SharedCStringPtr n, char const *v) + : name(n), value(Util::SharedCStringPtr::copy(v)) {} + PropertyPair(char const *n, char const *v) + : name(Util::SharedCStringPtr::copy(n)), + value(Util::SharedCStringPtr::copy(v)) {} + + Util::SharedCStringPtr name; + Util::SharedCStringPtr value; + }; + + static Category category() { return OTHER; } + + virtual Util::SharedCStringPtr name() const=0; + virtual unsigned propertyCount() const=0; + virtual PropertyPair property(unsigned property) const=0; +}; + +} + +} + +#endif +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : -- cgit v1.2.3