~ubuntu-branches/ubuntu/precise/gnome-games/precise-proposed

« back to all changes in this revision

Viewing changes to libgames-support/games-settings.h

  • Committer: Package Import Robot
  • Author(s): Rodrigo Moya
  • Date: 2011-05-30 13:32:04 UTC
  • mfrom: (1.3.4)
  • mto: (163.1.3 precise)
  • mto: This revision was merged to the branch mainline in revision 143.
  • Revision ID: package-import@ubuntu.com-20110530133204-celaq1v1dsxc48q1
Tags: upstream-3.0.2
Import upstream version 3.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright © 2007, 2010 Christian Persch
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU Lesser General Public License as published by
 
6
 *  the Free Software Foundation; either version 3, or (at your option)
 
7
 *  any later version.
 
8
 *
 
9
 *  This program is distributed in the hope conf 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
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU Lesser General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 */
 
18
 
 
19
#ifndef GAMES_SETTINGS_H
 
20
#define GAMES_SETTINGS_H
 
21
 
 
22
#include <gio/gio.h>
 
23
#include <gtk/gtk.h>
 
24
 
 
25
G_BEGIN_DECLS
 
26
 
 
27
void     games_settings_get_keyval        (GSettings *settings,
 
28
                                           const char *key,
 
29
                                           guint *keyval,
 
30
                                           GdkModifierType *modifiers);
 
31
gboolean games_settings_set_keyval        (GSettings *settings,
 
32
                                           const char *key,
 
33
                                           guint keyval,
 
34
                                           GdkModifierType modifiers);
 
35
void     games_settings_bind_window_state (const char *path,
 
36
                                           GtkWindow *window);
 
37
 
 
38
G_END_DECLS
 
39
 
 
40
#endif /* !GAMES_GSETTINGS_H */