~ubuntu-branches/debian/sid/geany-plugins/sid

« back to all changes in this revision

Viewing changes to spellcheck/src/gui.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-07-10 22:56:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090710225641-xc1126t7pq0jmpos
Tags: upstream-0.17.1
Import upstream version 0.17.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      gui.h - this file is part of Spellcheck, a Geany plugin
 
3
 *
 
4
 *      Copyright 2008-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
5
 *      Copyright 2008-2009 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
 
6
 *
 
7
 *      This program is free software; you can redistribute it and/or modify
 
8
 *      it under the terms of the GNU General Public License as published by
 
9
 *      the Free Software Foundation; either version 2 of the License, or
 
10
 *      (at your option) any later version.
 
11
 *
 
12
 *      This program is distributed in the hope that it will be useful,
 
13
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *      GNU General Public License for more details.
 
16
 *
 
17
 *      You should have received a copy of the GNU General Public License
 
18
 *      along with this program; if not, write to the Free Software
 
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
20
 *      MA 02110-1301, USA.
 
21
 *
 
22
 * $Id$
 
23
 */
 
24
 
 
25
 
 
26
#ifndef SC_GUI_H
 
27
#define SC_GUI_H 1
 
28
 
 
29
 
 
30
 
 
31
gboolean sc_gui_key_release_cb(GtkWidget *widget, GdkEventKey *ev, gpointer user_data);
 
32
 
 
33
gboolean sc_gui_key_release_cb(GtkWidget *widget, GdkEventKey *ev, gpointer data);
 
34
 
 
35
void sc_gui_kb_run_activate_cb(guint key_id);
 
36
 
 
37
void sc_gui_kb_toggle_typing_activate_cb(guint key_id);
 
38
 
 
39
void sc_gui_create_edit_menu(void);
 
40
 
 
41
void sc_gui_create_menu(GtkWidget *sp_item);
 
42
 
 
43
void sc_gui_update_editor_menu_cb(GObject *obj, const gchar *word, gint pos,
 
44
                                                                  GeanyDocument *doc, gpointer user_data);
 
45
 
 
46
void sc_gui_update_toolbar(void);
 
47
 
 
48
void sc_gui_update_menu(void);
 
49
 
 
50
void sc_gui_init(void);
 
51
 
 
52
void sc_gui_free(void);
 
53
 
 
54
#endif