~ubuntu-branches/ubuntu/raring/almanah/raring

« back to all changes in this revision

Viewing changes to src/event.h

  • Committer: Package Import Robot
  • Author(s): Angel Abad
  • Date: 2012-04-03 14:25:25 UTC
  • mfrom: (11.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20120403142525-ugk3fb0blonrl2b9
Tags: 0.9.0-1
* debian/watch: Update for .xz
* Imported Upstream version 0.9.0
* debian/patches/01_largefile_support.patch: Remove, applied upstream
* debian/patches/02_gtkspell-3.0.patch: Remove, applied upstream
* Remove dh_autoreconf stuff
* debian/copyright: Update upstream years

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
        const gchar *icon_name;
48
48
 
49
49
        const gchar *(*format_value) (AlmanahEvent *event);
50
 
        gboolean (*view) (AlmanahEvent *event);
 
50
        gboolean (*view) (AlmanahEvent *event, GtkWindow *parent_window);
51
51
} AlmanahEventClass;
52
52
 
53
53
GType almanah_event_get_type (void);
54
54
 
55
55
const gchar *almanah_event_format_value (AlmanahEvent *self);
56
 
gboolean almanah_event_view (AlmanahEvent *self);
 
56
gboolean almanah_event_view (AlmanahEvent *self, GtkWindow *parent_window);
57
57
const gchar *almanah_event_get_name (AlmanahEvent *self);
58
58
const gchar *almanah_event_get_description (AlmanahEvent *self);
59
59
const gchar *almanah_event_get_icon_name (AlmanahEvent *self);