~ubuntu-branches/ubuntu/trusty/imagination/trusty-updates

« back to all changes in this revision

Viewing changes to src/callbacks.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-07-07 09:09:38 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090707090938-jvaub13ijh53oawy
Tags: 1.5-1ubuntu1
* Merge with debian unstable (LP: #392874), Ubuntu remaining changes:
  - debian/control:
    + Move libav*-unstripped-* packages to Recommends as suggested by
      upstream.
    + Improve long description.
    + Add watch file.
  - debian/copyright: Replace deprecated symbol (C) with ©.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define __CALLBACKS_H__
23
23
 
24
24
#include <gtk/gtk.h>
 
25
#include "audio.h"
25
26
#include "main-window.h"
26
27
#include "new_slideshow.h"
27
28
#include "slideshow_project.h"
30
31
void img_new_slideshow(GtkMenuItem *,img_window_struct *);
31
32
void img_project_properties(GtkMenuItem *, img_window_struct *);
32
33
void img_add_slides_thumbnails(GtkMenuItem *,img_window_struct *);
 
34
void img_remove_audio_files (GtkWidget *, img_window_struct *);
 
35
void img_remove_foreach_func (GtkTreeModel *, GtkTreePath *, GtkTreeIter *, GList **);
33
36
void img_delete_selected_slides(GtkMenuItem *,img_window_struct *);
34
37
void img_show_about_dialog (GtkMenuItem *,img_window_struct *);
35
38
void img_set_total_slideshow_duration(img_window_struct *);
37
40
void img_start_stop_export(GtkWidget *, img_window_struct *);
38
41
void img_choose_slideshow_filename(GtkWidget *,img_window_struct *);
39
42
void img_close_slideshow(GtkWidget *,img_window_struct *);
 
43
void img_select_audio_files_to_add ( GtkMenuItem* , img_window_struct *);
 
44
void img_add_audio_files (gchar *, img_window_struct *);
40
45
GSList *img_import_slides_file_chooser(img_window_struct *);
41
46
void img_free_allocated_memory(img_window_struct *);
42
 
gint img_ask_user_confirmation(img_window_struct *);
 
47
gint img_ask_user_confirmation(img_window_struct *, gchar *);
43
48
gboolean img_quit_application(GtkWidget *, GdkEvent *, img_window_struct *);
44
49
GdkPixbuf *img_scale_pixbuf (img_window_struct *, gchar *);
45
 
void img_set_buttons_state(img_window_struct *, gboolean );
 
50
void img_move_audio_up( GtkButton *, img_window_struct * );
 
51
void img_move_audio_down( GtkButton *, img_window_struct * );
 
52
gboolean img_on_expose_event(GtkWidget *,GdkEventExpose *,img_window_struct *);
46
53
#endif