~ubuntu-branches/debian/wheezy/brasero/wheezy

« back to all changes in this revision

Viewing changes to src/eggsmclient-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Pedro Fragoso, Luca Bruno, Josselin Mouette, Emilio Pozuelo Monfort
  • Date: 2009-06-24 18:59:46 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624185946-iyxkgf3gjptir5y3
Tags: 2.26.2-1
[ Pedro Fragoso ]
* Add myself to Maintainer field
  - Thanks Ondřej Surý
* New upstream version (Closes: #528945)
  - Split package into brasero, libbrasero-media0 and libbrasero-dev
  - Add Replaces to libbrasero-media0
  - Bump libgtk to 2.14.0
  - Remove libnotify Build-dep
  - Add Build-dep libnautilus-extension-dev (>= 2.22.2)
    and install it.
  - Add Build-dep to libsm-dev
  - Add Build-dep on intltool
* Install omf files to prevent crash on Help
* Move gstreamer0.10-plugins-bad to Suggests, and add
  dvdauthor and vcdimager
* Recommends gvfs (Closes: #491827)
* Pass --disable-scrollkeeper in DEB_CONFIGURE_EXTRA_FLAGS
* debian/patches/007-fix-gnome-doc-utils-path.patch:
  - Removed, not needed anymore
* debian/patches/008-fix-volume-identifier-crash.patch:
  - Removed, merged upstream
* debian/patches/011_nautilus_menu_move.patch:
 - Move CD/DVD Creator Menu to Acessories, taken from Ubuntu

[ Luca Bruno ]
* debian/control.in:
  - Add Build-Depend gtk-doc-tools 1.9.
* debian/patches/006-fix-libdvdcss.patch:
  - Removed as applied upstream.

[ Josselin Mouette ]
* New upstream release.
* Update build-dependencies.
* Move the translations and data to a new brasero-common package.
* Rewrite the descriptions.
* Add -dev depends to the development package.
* Remove inappropriate recommends in the library package.
* Let’s not forget dvd+rw-tools so that we can write DVDs too.
* Rework dependencies accordingly.
* Put the nautilus extension in brasero.
* Conflict against nautilus-cd-burner to avoid having two burning 
  extensions.
* Include clean-la.mk and gnome-version.mk; build-depend on 
  gnome-pkg-tools 0.7.
* Don’t run dh_makeshlibs on brasero and libbrasero-plugins.
* 011_nautilus_menu_move.patch: add NoDisplay=true, this icon is 
  duplicating existing functionality (brasero icon in sound&video 
  menu, and nautilus autorun).
* Update list of copyright holders.

[ Emilio Pozuelo Monfort ]
* debian/copyright: updated.

[ Josselin Mouette ]
* copyright: improve indentation, and point to versioned LGPL.
* 090_relibtoolize.patch: add a relibtoolization patch to avoid the 
  rpath crap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* eggsmclient-private.h
 
2
 * Copyright (C) 2007 Novell, Inc.
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __EGG_SM_CLIENT_PRIVATE_H__
 
21
#define __EGG_SM_CLIENT_PRIVATE_H__
 
22
 
 
23
#include <gdkconfig.h>
 
24
#include "eggsmclient.h"
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
GKeyFile *egg_sm_client_save_state     (EggSMClient *client);
 
29
void      egg_sm_client_quit_requested (EggSMClient *client);
 
30
void      egg_sm_client_quit_cancelled (EggSMClient *client);
 
31
void      egg_sm_client_quit           (EggSMClient *client);
 
32
 
 
33
#if defined (GDK_WINDOWING_X11)
 
34
# ifdef EGG_SM_CLIENT_BACKEND_XSMP
 
35
GType        egg_sm_client_xsmp_get_type (void);
 
36
EggSMClient *egg_sm_client_xsmp_new      (void);
 
37
# endif
 
38
# ifdef EGG_SM_CLIENT_BACKEND_DBUS
 
39
GType        egg_sm_client_dbus_get_type (void);
 
40
EggSMClient *egg_sm_client_dbus_new      (void);
 
41
# endif
 
42
#elif defined (GDK_WINDOWING_WIN32)
 
43
GType        egg_sm_client_win32_get_type (void);
 
44
EggSMClient *egg_sm_client_win32_new      (void);
 
45
#elif defined (GDK_WINDOWING_QUARTZ)
 
46
GType        egg_sm_client_osx_get_type (void);
 
47
EggSMClient *egg_sm_client_osx_new      (void);
 
48
#endif
 
49
 
 
50
G_END_DECLS
 
51
 
 
52
 
 
53
#endif /* __EGG_SM_CLIENT_PRIVATE_H__ */