/* * Copyright (C) 2003-2011 Sebastien Helleu * * This file is part of WeeChat, the extensible chat client. * * WeeChat 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. * * WeeChat 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 WeeChat. If not, see . */ /* * gui-gtk-keyboard.c: keyboard functions for Gtk GUI */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include "../../core/weechat.h" #include "../../core/wee-utf8.h" #include "../../plugins/plugin.h" #include "../gui-keyboard.h" #include "../gui-buffer.h" #include "gui-gtk.h" /* * gui_keyboard_default_bindings: create default key bindings */ void gui_keyboard_default_bindings () { /* TODO: write this function for Gtk */ } /* * gui_keyboard_read: read keyboard chars */ void gui_keyboard_read () { /* TODO: write this function for Gtk */ }