stroke-style.h revision eb500326b7e1b1c966ed013c0dcc6dbf627e78ed
649N/A/**
649N/A * @file
649N/A * Widgets used in the stroke style dialog.
649N/A */
943N/A/* Author:
649N/A * Lauris Kaplinski <lauris@ximian.com>
649N/A * Jon A. Cruz <jon@joncruz.org>
919N/A *
919N/A * Copyright (C) 2010 Jon A. Cruz
919N/A * Copyright (C) 2001 Ximian, Inc.
919N/A *
919N/A * Released under GNU GPL, read the file 'COPYING' for more information
919N/A */
919N/A
919N/A#ifndef SEEN_DIALOGS_STROKE_STYLE_H
919N/A#define SEEN_DIALOGS_STROKE_STYLE_H
919N/A
919N/Anamespace Gtk {
919N/Aclass Widget;
919N/Aclass Container;
919N/A}
919N/A
919N/A/**
919N/A * Creates an instance of a paint style widget.
649N/A */
649N/AGtk::Widget *sp_stroke_style_paint_widget_new(void);
649N/A
649N/A/**
649N/A * Creates an instance of a line style widget.
649N/A */
649N/AGtk::Container *sp_stroke_style_line_widget_new(void);
649N/A
649N/A/**
649N/A * Switches a line or paint style widget to track the given desktop.
649N/A */
649N/Avoid sp_stroke_style_widget_set_desktop(Gtk::Widget *widget, SPDesktop *desktop);
970N/A
970N/A#endif // SEEN_DIALOGS_STROKE_STYLE_H
970N/A
970N/A/*
970N/A Local Variables:
970N/A mode:c++
970N/A c-file-style:"stroustrup"
970N/A c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
649N/A indent-tabs-mode:nil
649N/A fill-column:99
649N/A End:
649N/A*/
649N/A// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
649N/A