diff options
Diffstat (limited to 'src/trace/imagemap-gdk.h')
-rw-r--r-- | src/trace/imagemap-gdk.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/trace/imagemap-gdk.h b/src/trace/imagemap-gdk.h new file mode 100644 index 0000000..58ebbbb --- /dev/null +++ b/src/trace/imagemap-gdk.h @@ -0,0 +1,27 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2013 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ +#ifndef INKSCAPE_TRACE_IMAGEMAP_GDK_H +#define INKSCAPE_TRACE_IMAGEMAP_GDK_H + +#include <gdkmm/pixbuf.h> +#include "imagemap.h" + +namespace Inkscape { +namespace Trace { + +GrayMap gdkPixbufToGrayMap(Glib::RefPtr<Gdk::Pixbuf> const &); +Glib::RefPtr<Gdk::Pixbuf> grayMapToGdkPixbuf(GrayMap const &); +RgbMap gdkPixbufToRgbMap(Glib::RefPtr<Gdk::Pixbuf> const &); +Glib::RefPtr<Gdk::Pixbuf> indexedMapToGdkPixbuf(IndexedMap const &); + +} // namespace Trace +} // namespace Inkscape + +#endif // INKSCAPE_TRACE_IMAGEMAP_GDK_H |