~ubuntu-branches/ubuntu/precise/cheese/precise-proposed

« back to all changes in this revision

Viewing changes to src/cheese-commands.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher, Jeremy Bicha, Robert Ancell
  • Date: 2011-06-10 11:45:37 UTC
  • mfrom: (1.2.24 upstream)
  • Revision ID: james.westby@ubuntu.com-20110610114537-p9e4zl8m0ehf2b5a
Tags: 3.0.0-0ubuntu1
* Upload to oneiric

[ Jeremy Bicha ]
* Depend on gnome-video-effects since clicking Effects when it is
  not installed results in a segmentation fault.

[ Robert Ancell]
* New upstream version
* debian/control:
  - Use standards version 3.9.1
  - Add build-depends on dh-autoreconf, valac, libclutter-1.0-dev,
    libclutter-gtk-1.0-dev, libclutter-gst-dev, libmx-dev,
    gnome-video-effects-dev, libgee-dev, gnome-common, gobject-introspection, 
    libgirepository1.0-dev, gir1.2-freedesktop, gir1.2-glib-2.0, 
    gir1.2-gstreamer-0.10, gir1.2-clutter-1.0, gir1.2-gdkpixbuf-2.0
  - Drop build-depends on libgconf2-dev, libdbus-1-dev, libdbus-glib-1-dev,
  - Bump build-depends on libglib2.0-dev, libgtk-3-dev,
    libgnome-desktop-3-dev, libgstreamer0.10-dev,
    libgstreamer-plugins-base0.10-dev, libcairo2-dev, libpango1.0-dev,
    librsvg2-dev, libcanberra-gtk3-dev
  - Add new gir1.2-cheese-3.0 package
  - libcheese-gtk18 -> libcheese-gtk19
* debian/cheese.install:
* debian/cheese-common.install:
* debian/libcheese-gtk-dev.install
  - Update for new/changed files
* debian/gir1.2-cheese-3.0.install:
  - Install typelib
* debian/patches/fix-linking.patch:
  - Fix linking issues
* debian/patches/no-gnu-gettext.patch:
  - Don't use both AM_GNU_GETTEXT and IT_PROG_INTLTOOL

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2010 Filippo Argiolas <filippo.argiolas@gmail.com>
3
 
 * Copyright © 2007,2008 daniel g. siegel <dgsiegel@gnome.org>
4
 
 * Copyright © 2007,2008 Jaap Haitsma <jaap@haitsma.org>
5
 
 *
6
 
 * Licensed under the GNU General Public License Version 2
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or modify
9
 
 * it under the terms of the GNU General Public License as published by
10
 
 * the Free Software Foundation; either version 2 of the License, or
11
 
 * (at your option) any later version.
12
 
 *
13
 
 * This program is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 */
21
 
 
22
 
#ifndef __CHEESE_COMMANDS_H__
23
 
#define __CHEESE_COMMANDS_H__
24
 
 
25
 
#ifdef HAVE_CONFIG_H
26
 
  #include "cheese-config.h"
27
 
#endif
28
 
 
29
 
#include <glib.h>
30
 
#include <glib/gi18n.h>
31
 
#include <gtk/gtk.h>
32
 
#include "cheese-window.h"
33
 
 
34
 
G_BEGIN_DECLS
35
 
 
36
 
void cheese_cmd_quit (GtkAction *action, CheeseWindow *window);
37
 
void cheese_cmd_bring_to_front (CheeseWindow *window);
38
 
void cheese_cmd_help_contents (GtkAction *action, CheeseWindow *cheese_window);
39
 
void cheese_cmd_about (GtkAction *action, CheeseWindow *cheese_window);
40
 
void cheese_cmd_file_open (GtkWidget *widget, CheeseWindow *cheese_window);
41
 
void cheese_cmd_file_save_as (GtkWidget *widget, CheeseWindow *cheese_window);
42
 
void cheese_cmd_file_move_to_trash (GtkWidget *widget, CheeseWindow *cheese_window);
43
 
void cheese_cmd_file_move_all_to_trash (GtkWidget *widget, CheeseWindow *cheese_window);
44
 
void cheese_cmd_file_delete (GtkWidget *widget, CheeseWindow *cheese_window);
45
 
 
46
 
G_END_DECLS
47
 
 
48
 
#endif /* __CHEESE_COMMANDS_H__ */