diff options
author | portix <portix@gmx.net> | 2011-12-28 00:52:28 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-12-28 00:52:28 +0100 |
commit | d1832eed7a58b43aeece4b9cb462b3c2fcdfe3bd (patch) | |
tree | b78e6385250fa653cc576a5731bb77e42f053f98 /src/callback.h | |
parent | ed9521828f10418f7a1c324903920d660d128245 (diff) | |
download | dwb-d1832eed7a58b43aeece4b9cb462b3c2fcdfe3bd.zip |
Moving all callbacks in dwb.c to callback.c
--HG--
branch : experimental
Diffstat (limited to 'src/callback.h')
-rw-r--r-- | src/callback.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/callback.h b/src/callback.h index 2e48d1b9..3c418c25 100644 --- a/src/callback.h +++ b/src/callback.h @@ -1,3 +1,21 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #ifndef CALLBACKS_H #define CALLBACKS_H @@ -6,4 +24,7 @@ gboolean callback_entry_key_press(GtkWidget *, GdkEventKey *); gboolean callback_entry_insert_text(GtkWidget *, GdkEventKey *); void callback_tab_size(GtkWidget *w, GtkAllocation *a); void callback_entry_size(GtkWidget *w, GtkAllocation *a); +gboolean callback_delete_event(GtkWidget *w); +gboolean callback_key_press(GtkWidget *w, GdkEventKey *e); +gboolean callback_key_release(GtkWidget *w, GdkEventKey *e); #endif |