sp-paint-server.cpp revision 3631081d6a2243886b4a4a05a5e5dc3fd96d2390
/*
* Base class for gradients and patterns
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
* Copyright (C) 2000-2001 Ximian, Inc.
* Copyright (C) 2010 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <string.h>
#include "sp-paint-server-reference.h"
#include "sp-paint-server.h"
#include "sp-gradient.h"
static cairo_pattern_t *sp_paint_server_create_dummy_pattern(SPPaintServer *ps, cairo_t *ct, Geom::OptRect const &bbox, double opacity);
static SPObjectClass *parent_class;
{
}
{
return SP_IS_PAINT_SERVER(obj);
}
{
if (!type) {
sizeof(SPPaintServerClass),
NULL, /* base_init */
NULL, /* base_finalize */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof(SPPaintServer),
16, /* n_preallocs */
NULL, /* value_table */
};
}
return type;
}
{
}
this->sppaintserver = paintserver;
}
CPaintServer::~CPaintServer() {
}
{
}
double opacity)
{
return cp;
}
// CPPIFY: make pure virtual
cairo_pattern_t* CPaintServer::onCreatePattern(cairo_t *ct, Geom::OptRect const &bbox, double opacity) {
throw;
}
double opacity)
{
}
static cairo_pattern_t *
cairo_t */* ct */,
double /* opacity */)
{
return cp;
}
bool SPPaintServer::isSwatch() const
{
return swatch;
}
bool SPPaintServer::isSolid() const
{
bool solid = false;
if (swatch && SP_IS_GRADIENT(this)) {
solid = true;
}
}
return solid;
}
/*
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 :