app: add signals bindings to change baseline and spacing

Bind them to Alt+up/down/left/right and connect to the signals in
the text tool editor. The callbacks do nothing yet.
This commit is contained in:
Michael Natterer
2010-02-27 13:14:28 +01:00
parent 14194a3be5
commit 4171d9c774
3 changed files with 80 additions and 0 deletions

View File

@ -40,6 +40,11 @@ struct _GimpTextProxy
struct _GimpTextProxyClass
{
GtkTextViewClass parent_class;
void (* change_baseline) (GimpTextProxy *proxy,
gint count);
void (* change_spacing) (GimpTextProxy *proxy,
gint count);
};