~ubuntu-branches/ubuntu/natty/bluefish/natty-proposed

« back to all changes in this revision

Viewing changes to src/undo.h

  • Committer: Bazaar Package Importer
  • Author(s): Davide Puricelli (evo)
  • Date: 2005-04-23 17:05:18 UTC
  • mto: (1.1.5 upstream) (5.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050423170518-izh2k25xve7ui1jx
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Bluefish HTML Editor
2
 
 *
3
 
 * Copyright (C) 1998 Olivier Sessink
4
 
 * 
5
 
 * part of this code is similar to the code in gnotepad, 
6
 
 * Copyright (C) 1998 Andy C. Kahn <kahn@zk3.dec.com>
7
 
 * http://ack.netpedia.net/gnp/
8
 
 *
9
 
 * This program is free software; you can redistribute it and/or modify
10
 
 * it under the terms of the GNU General Public License as published by
11
 
 * the Free Software Foundation; either version 2 of the License, or
12
 
 * (at your option) any later version.
13
 
 *
14
 
 * This program is distributed in the hope that it will be useful,
15
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
 * GNU General Public License for more details.
18
 
 *
19
 
 * You should have received a copy of the GNU General Public License
20
 
 * along with this program; if not, write to the Free Software
21
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
 
 */
23
 
 
24
 
#ifndef __UNDO_H_
25
 
#define __UNDO_H_
26
 
 
27
 
#include <glib.h>
28
 
#include <gtk/gtkwidget.h>
29
 
#include <gtk/gtkeditable.h>
30
 
 
31
 
typedef enum {
32
 
        UndoDelete = 1, UndoInsert
33
 
} undo_op_t;
34
 
 
35
 
void undo_list_add(Tdocument * d, char *text, int start, int end, undo_op_t op);
36
 
 
37
 
void doc_insert_text_cb(GtkEditable * editable, const char *text, int len, int *pos, gpointer d);
38
 
void doc_delete_text_cb(GtkEditable * editable, int start, int end, gpointer d);
39
 
void redo_cb(GtkWidget * wgt, gpointer cbdata);
40
 
void undo_cb(GtkWidget * wgt, gpointer cbdata);
41
 
void undo_all_cb(GtkWidget * wgt, gpointer cbdata);
42
 
void redo_all_cb(GtkWidget * wgt, gpointer cbdata);
43
 
 
44
 
#endif                                                  /* __UNDO_H_ */