~ubuntu-branches/debian/jessie/aisleriot/jessie

« back to all changes in this revision

Viewing changes to src/smclient/eggsmclient-private.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jeremy Bicha, Jordi Mallach
  • Date: 2012-04-22 12:49:26 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120422124926-gmr0thwstl91jt1n
Tags: 1:3.4.1-1
[ Jeremy Bicha ]
* New upstream release
* debian/control.in: (Build)-depend on guile-2.0
* debian/*.install: Cards files are now stored as zipped .svg's
* debian/patches/99_format-security.patch: Dropped, applied upstream

[ Jordi Mallach ]
* New upstream release.
* Update copyright to final version of the machine-readable 1.0 spec.
* Bump Standards Version to 3.9.3.

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 3 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 <gtk/gtk.h>
24
 
 
25
 
#if !GTK_CHECK_VERSION(2,91,7) && !GTK_CHECK_VERSION(3,0,0)
26
 
/* GTK+ 3 includes this automatically */
27
 
#include <gdkconfig.h>
28
 
#endif
29
 
 
30
 
#include "eggsmclient.h"
31
 
 
32
 
G_BEGIN_DECLS
33
 
 
34
 
GKeyFile *egg_sm_client_save_state     (EggSMClient *client);
35
 
void      egg_sm_client_quit_requested (EggSMClient *client);
36
 
void      egg_sm_client_quit_cancelled (EggSMClient *client);
37
 
void      egg_sm_client_quit           (EggSMClient *client);
38
 
 
39
 
#if defined (GDK_WINDOWING_X11)
40
 
# ifdef EGG_SM_CLIENT_BACKEND_XSMP
41
 
GType        egg_sm_client_xsmp_get_type (void);
42
 
EggSMClient *egg_sm_client_xsmp_new      (void);
43
 
# endif
44
 
# ifdef EGG_SM_CLIENT_BACKEND_DBUS
45
 
GType        egg_sm_client_dbus_get_type (void);
46
 
EggSMClient *egg_sm_client_dbus_new      (void);
47
 
# endif
48
 
#elif defined (GDK_WINDOWING_WIN32)
49
 
GType        egg_sm_client_win32_get_type (void);
50
 
EggSMClient *egg_sm_client_win32_new      (void);
51
 
#elif defined (GDK_WINDOWING_QUARTZ)
52
 
GType        egg_sm_client_osx_get_type (void);
53
 
EggSMClient *egg_sm_client_osx_new      (void);
54
 
#endif
55
 
 
56
 
G_END_DECLS
57
 
 
58
 
 
59
 
#endif /* __EGG_SM_CLIENT_PRIVATE_H__ */