Code

Indent support for XSLT extensions output.
[inkscape.git] / src / widgets / spinbutton-events.h
1 /*
2  * Common callbacks for spinbuttons
3  *
4  * Authors:
5  *   bulia byak <bulia@users.sourceforge.net>
6  *
7  * Copyright (C) 2003 authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #include <glib/gtypes.h>
13 #include <gtk/gtkstyle.h>      /* GtkWidget */
14 #include <gtk/gtktypeutils.h>  /* GtkObject */
16 gboolean spinbutton_focus_in (GtkWidget *w, GdkEventKey *event, gpointer data);
17 void spinbutton_undo (GtkWidget *w);
18 gboolean spinbutton_keypress (GtkWidget *w, GdkEventKey *event, gpointer data);
19 void spinbutton_defocus (GtkObject *container);
21 /*
22   Local Variables:
23   mode:c++
24   c-file-style:"stroustrup"
25   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
26   indent-tabs-mode:nil
27   fill-column:99
28   End:
29 */
30 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :