~ubuntu-branches/ubuntu/wily/mousepad/wily-proposed

« back to all changes in this revision

Viewing changes to src/callback.h

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2007-01-24 11:22:03 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070124112203-usrd5u2kfovivkw7
Tags: 0.2.12-0ubuntu1
* New upstream release, part of Xfce 4.4
* debian/control: tighten libxfcegui4-dev version

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *  callback.h
3
3
 *  This file is part of Mousepad
4
4
 *
 
5
 *  Copyright (C) 2006 Benedikt Meurer <benny@xfce.org>
5
6
 *  Copyright (C) 2005 Erik Harrison
6
7
 *  Copyright (C) 2004 Tarot Osuji
7
8
 *
26
27
void cb_file_new(StructData *sd);
27
28
void cb_file_new_window(StructData *sd);
28
29
void cb_file_open(StructData *sd);
 
30
#if GTK_CHECK_VERSION(2,10,0)
 
31
void cb_file_open_recent(StructData *sd, GtkRecentChooser *chooser);
 
32
#endif
29
33
gint cb_file_save(StructData *sd);
30
34
gint cb_file_save_as(StructData *sd);
31
35
gint cb_file_print(StructData *sd);