~ubuntu-branches/ubuntu/precise/latexila/precise

« back to all changes in this revision

Viewing changes to src/callbacks.h

  • Committer: Bazaar Package Importer
  • Author(s): Tanguy Ortolo
  • Date: 2010-04-26 22:13:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100426221300-6pa79a1yk5tino7y
Tags: upstream-0.2.0
Import upstream version 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of LaTeXila.
 
3
 *
 
4
 * Copyright © 2009, 2010 Sébastien Wilmet
 
5
 *
 
6
 * LaTeXila is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * LaTeXila is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with LaTeXila.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef CALLBACKS_H
 
21
#define CALLBACKS_H
 
22
 
 
23
void cb_open (void);
 
24
void cb_save (void);
 
25
void cb_save_as (void);
 
26
void cb_close (void);
 
27
void cb_close_tab (GtkWidget *widget, GtkWidget *child);
 
28
void cb_quit (void);
 
29
void cb_undo (void);
 
30
void cb_redo (void);
 
31
void cb_cut (void);
 
32
void cb_copy (void);
 
33
void cb_paste (void);
 
34
void cb_delete (void);
 
35
void cb_select_all (void);
 
36
void cb_zoom_in (void);
 
37
void cb_zoom_out (void);
 
38
void cb_zoom_reset (void);
 
39
void cb_find (void);
 
40
void cb_close_find (GtkWidget *widget, gpointer user_data);
 
41
void cb_find_entry (GtkEntry *entry, gpointer user_data);
 
42
void cb_find_next (GtkWidget *widget, gpointer user_data);
 
43
void cb_find_previous (GtkWidget *widget, gpointer user_data);
 
44
void cb_close_replace (GtkWidget *widget, gpointer user_data);
 
45
void cb_replace_find (GtkWidget *widget, gpointer user_data);
 
46
void cb_replace_replace (GtkWidget *widget, gpointer user_data);
 
47
void cb_replace_replace_all (GtkWidget *widget, gpointer user_data);
 
48
void cb_replace (void);
 
49
void cb_go_to_line (void);
 
50
void cb_close_go_to_line (GtkWidget *widget, gpointer user_data);
 
51
void cb_go_to_line_entry (GtkEntry *entry, gpointer user_data);
 
52
void cb_latex (void);
 
53
void cb_pdflatex (void);
 
54
void cb_view_dvi (void);
 
55
void cb_view_pdf (void);
 
56
void cb_view_ps (void);
 
57
void cb_dvi_to_pdf (void);
 
58
void cb_dvi_to_ps (void);
 
59
void cb_bibtex (void);
 
60
void cb_makeindex (void);
 
61
void cb_clean_up_build_files (void);
 
62
void cb_stop_execution (void);
 
63
void cb_tools_comment (void);
 
64
void cb_tools_uncomment (void);
 
65
void cb_tools_indent (void);
 
66
void cb_tools_unindent (void);
 
67
void cb_documents_save_all (void);
 
68
void cb_documents_close_all (void);
 
69
void cb_documents_previous (void);
 
70
void cb_documents_next (void);
 
71
void cb_help_latex_reference (void);
 
72
void cb_about_dialog (void);
 
73
void cb_text_changed (GtkWidget *widget, gpointer user_data);
 
74
void cb_cursor_moved (GtkTextBuffer *text_buffer, GtkTextIter *location,
 
75
                GtkTextMark *mark, gpointer user_data);
 
76
void cb_page_change (GtkNotebook *notebook, GtkNotebookPage *page,
 
77
                guint page_num, gpointer user_data);
 
78
void cb_page_reordered (GtkNotebook *notebook, GtkWidget *child, guint page_num,
 
79
                gpointer user_data);
 
80
gboolean cb_delete_event (GtkWidget *widget, GdkEvent *event,
 
81
                gpointer user_data);
 
82
void cb_recent_item_activated (GtkRecentAction *action, gpointer user_data);
 
83
void cb_show_side_pane (GtkToggleAction *toggle_action, gpointer user_data);
 
84
void cb_show_edit_toolbar (GtkToggleAction *toggle_action, gpointer user_data);
 
85
 
 
86
gboolean auto_save_files (gpointer data);
 
87
 
 
88
void open_new_document_without_uri (const gchar *filename);
 
89
void open_new_document (const gchar *filename, const gchar *uri);
 
90
void change_font_source_view (void);
 
91
void create_document_in_new_tab (const gchar *path, const gchar *text,
 
92
                const gchar *title);
 
93
 
 
94
#endif /* CALLBACKS_H */