OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Alex Roberts, Evan Lawrence | 2 * Copyright (C) 1998, 1999 Alex Roberts, Evan Lawrence |
3 * Copyright (C) 2000, 2001 Chema Celorio, Paolo Maggi | 3 * Copyright (C) 2000, 2001 Chema Celorio, Paolo Maggi |
4 * Copyright (C) 2002, 2003 Paolo Maggi | 4 * Copyright (C) 2002, 2003 Paolo Maggi |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Lesser General Public License for more details. | 14 * Lesser General Public License for more details. |
15 | 15 |
16 * You should have received a copy of the GNU Lesser General Public | 16 * You should have received a copy of the GNU Lesser General Public |
17 * License along with this library; if not, write to the Free Software | 17 * License along with this library; if not, write to the Free Software |
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US
A | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US
A |
19 */ | 19 */ |
20 | 20 |
21 #ifndef CHROME_BROWSER_AUTOCOMPLETE_UNDO_MANAGER_H_ | 21 #ifndef UNDOVIEW_UNDO_MANAGER_H_ |
22 #define CHROME_BROWSER_AUTOCOMPLETE_UNDO_MANAGER_H_ | 22 #define UNDOVIEW_UNDO_MANAGER_H_ |
23 | 23 |
24 #include <gtk/gtk.h> | 24 #include <gtk/gtk.h> |
25 | 25 |
26 G_BEGIN_DECLS | 26 G_BEGIN_DECLS |
27 | 27 |
28 #define GTK_SOURCE_TYPE_UNDO_MANAGER (gtk_source_undo_manager_get_typ
e()) | 28 #define GTK_SOURCE_TYPE_UNDO_MANAGER (gtk_source_undo_manager_get_typ
e()) |
29 | 29 |
30 #define GTK_SOURCE_UNDO_MANAGER(obj) \ | 30 #define GTK_SOURCE_UNDO_MANAGER(obj) \ |
31 (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_SOURCE_TYPE_UNDO_MANAGER, GtkSourceUndo
Manager)) | 31 (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_SOURCE_TYPE_UNDO_MANAGER, GtkSourceUndo
Manager)) |
32 | 32 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 void gtk_source_undo_manager_begin_not_undoable_action(GtkSourceUndoManager
*um); | 76 void gtk_source_undo_manager_begin_not_undoable_action(GtkSourceUndoManager
*um); |
77 void gtk_source_undo_manager_end_not_undoable_action(GtkSourceUndoManager
*um); | 77 void gtk_source_undo_manager_end_not_undoable_action(GtkSourceUndoManager
*um); |
78 | 78 |
79 gint gtk_source_undo_manager_get_max_undo_levels(GtkSourceUndoManager *um
); | 79 gint gtk_source_undo_manager_get_max_undo_levels(GtkSourceUndoManager *um
); |
80 void gtk_source_undo_manager_set_max_undo_levels(GtkSourceUndoManager *um
, | 80 void gtk_source_undo_manager_set_max_undo_levels(GtkSourceUndoManager *um
, |
81 gint undo_levels); | 81 gint undo_levels); |
82 | 82 |
83 G_END_DECLS | 83 G_END_DECLS |
84 | 84 |
85 #endif // CHROME_BROWSER_AUTOCOMPLETE_UNDO_MANAGER_H_ | 85 #endif // UNDOVIEW_UNDO_MANAGER_H_ |
86 | 86 |
OLD | NEW |