/*
* Author:
* Kees Cook <kees@outflux.net>
*
* Copyright (C) 2007 Kees Cook
* Copyright (C) 2004 Bryce Harrington
*
* Released under GNU GPL. Read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtkmm.h>
#include "preferences.h"
#include "rendering-options.h"
namespace Inkscape {
namespace UI {
namespace Widget {
{
}
_dpi( _("DPI"),
"in dots per inch.")),
1,
false)
{
// set up tooltips
_("Render using Cairo vector operations. "
"The resulting image is usually smaller in file "
"size and can be arbitrarily scaled, but some "
"filter effects will not be correctly rendered."));
_("Render everything as bitmap. The resulting image "
"is usually larger in file size and cannot be "
"arbitrarily scaled without quality loss, but all "
"objects will be rendered exactly as displayed."));
set_border_width(2);
// default to vector operations
} else {
}
// configure default DPI
// fill frames
// fill up container
add (_frame_bitmap);
// initialize states
_toggled();
}
bool
{
return _radio_bitmap.get_active();
}
double
{
}
} // namespace Widget
} // namespace UI
} // namespace Inkscape
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :