rendering-options.h revision 5cf332777b4c27336d64c273ac63bce3ee27a53d
/*
* 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.
*/
#include <gtkmm.h>
#include "scalar.h"
/**
* A container for selecting rendering options.
*/
{
/**
* Construct a Rendering Options widget.
*/
bool as_bitmap(); // should we render as a bitmap?
double bitmap_dpi(); // at what DPI should we render the bitmap?
// Radio buttons to select desired rendering
// Bitmap options
// callback for bitmap button
void _toggled();
};
} // namespace Widget
} // namespace UI
} // namespace Inkscape
#endif // INKSCAPE_UI_WIDGET_RENDERING_OPTIONS_H
/*
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 :