emf-win32-print.h revision a4030d5ca449e7e384bc699cd249ee704faaeab0
/** @file
* @brief Enhanced Metafile printing - implementation
*/
/* Author:
* Ulf Erikson <ulferikson@users.sf.net>
*
* Copyright (C) 2006-2008 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef WIN32
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "extension/implementation/implementation.h"
//#include "extension/extension.h"
#include <stack>
{
double _width;
double _height;
bool stroke_and_fill;
bool fill_only;
bool simple_shape;
PrintEmfWin32 (void);
virtual ~PrintEmfWin32 (void);
/* Print functions */
/* Rendering methods */
virtual unsigned int bind(Inkscape::Extension::Print *module, Geom::Matrix const *transform, float opacity);
static void init (void);
void destroy_brush();
void destroy_pen();
void flush_fill();
};
} /* namespace Internal */
} /* namespace Extension */
} /* namespace Inkscape */
#endif /* WIN32 */
#endif /* __INKSCAPE_EXTENSION_INTERNAL_PRINT_EMF_WIN32_H__ */
/*
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:fileencoding=utf-8:textwidth=99 :