spinbutton-events.cpp revision b5e33258de2f16f045b2882b63991d551b186202
/*
* Common callbacks for spinbuttons
*
* Authors:
* bulia byak <bulia@users.sourceforge.net>
*
* Copyright (C) 2003 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <gdk/gdkkeysyms.h>
#include "../event-context.h"
#include "sp-widget.h"
#include "widget-sizes.h"
{
// retrieve the value
// remember it
return FALSE; // I didn't consume the event
}
void
spinbutton_undo (GtkWidget *w)
{
}
void
{
// defocus spinbuttons by moving focus to the canvas, unless "stay" is on
if (stay) {
} else {
if (canvas) {
}
}
}
{
gdouble v;
switch (get_group0_keyval (event)) {
case GDK_Escape: // defocus
spinbutton_undo (w);
return TRUE; // I consumed the event
break;
case GDK_Return: // defocus
case GDK_KP_Enter:
return TRUE; // I consumed the event
break;
case GDK_Tab:
case GDK_ISO_Left_Tab:
// set the flag meaning "do not leave toolbar when changing value"
return FALSE; // I didn't consume the event
break;
// The following keys are processed manually because GTK implements them in strange ways
// (increments start with double step value and seem to grow as you press the key continuously)
case GDK_Up:
case GDK_KP_Up:
v = gtk_spin_button_get_value(GTK_SPIN_BUTTON (w));
v += SPIN_STEP;
return TRUE; // I consumed the event
break;
case GDK_Down:
case GDK_KP_Down:
v = gtk_spin_button_get_value(GTK_SPIN_BUTTON (w));
v -= SPIN_STEP;
return TRUE; // I consumed the event
break;
case GDK_Page_Up:
case GDK_KP_Page_Up:
v = gtk_spin_button_get_value(GTK_SPIN_BUTTON (w));
v += SPIN_PAGE_STEP;
return TRUE; // I consumed the event
break;
case GDK_Page_Down:
case GDK_KP_Page_Down:
v = gtk_spin_button_get_value(GTK_SPIN_BUTTON (w));
v -= SPIN_PAGE_STEP;
return TRUE; // I consumed the event
break;
case GDK_z:
case GDK_Z:
spinbutton_undo (w);
return TRUE; // I consumed the event
}
break;
default:
return FALSE;
break;
}
return FALSE; // I didn't consume the event
}