Blame src/canberra-gtk.h

Packit 3ae693
/*-*- Mode: C; c-basic-offset: 8 -*-*/
Packit 3ae693
Packit 3ae693
#ifndef foocanberragtkhfoo
Packit 3ae693
#define foocanberragtkhfoo
Packit 3ae693
Packit 3ae693
/***
Packit 3ae693
  This file is part of libcanberra.
Packit 3ae693
Packit 3ae693
  Copyright 2008 Lennart Poettering
Packit 3ae693
Packit 3ae693
  libcanberra is free software; you can redistribute it and/or modify
Packit 3ae693
  it under the terms of the GNU Lesser General Public License as
Packit 3ae693
  published by the Free Software Foundation, either version 2.1 of the
Packit 3ae693
  License, or (at your option) any later version.
Packit 3ae693
Packit 3ae693
  libcanberra is distributed in the hope that it will be useful, but
Packit 3ae693
  WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 3ae693
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit 3ae693
  Lesser General Public License for more details.
Packit 3ae693
Packit 3ae693
  You should have received a copy of the GNU Lesser General Public
Packit 3ae693
  License along with libcanberra. If not, see
Packit 3ae693
  <http://www.gnu.org/licenses/>.
Packit 3ae693
***/
Packit 3ae693
Packit 3ae693
#include <canberra.h>
Packit 3ae693
#include <gdk/gdk.h>
Packit 3ae693
#include <gtk/gtk.h>
Packit 3ae693
Packit 3ae693
G_BEGIN_DECLS
Packit 3ae693
Packit 3ae693
#ifndef GDK_MULTIHEAD_SAFE
Packit 3ae693
ca_context *ca_gtk_context_get(void);
Packit 3ae693
#endif
Packit 3ae693
Packit 3ae693
ca_context *ca_gtk_context_get_for_screen(GdkScreen *screen);
Packit 3ae693
Packit 3ae693
int ca_gtk_proplist_set_for_widget(ca_proplist *p, GtkWidget *w);
Packit 3ae693
Packit 3ae693
int ca_gtk_play_for_widget(GtkWidget *w, uint32_t id, ...) G_GNUC_NULL_TERMINATED;
Packit 3ae693
Packit 3ae693
int ca_gtk_proplist_set_for_event(ca_proplist *p, GdkEvent *e);
Packit 3ae693
Packit 3ae693
int ca_gtk_play_for_event(GdkEvent *e, uint32_t id, ...) G_GNUC_NULL_TERMINATED;
Packit 3ae693
Packit 3ae693
void ca_gtk_widget_disable_sounds(GtkWidget *w, gboolean enable);
Packit 3ae693
Packit 3ae693
G_END_DECLS
Packit 3ae693
Packit 3ae693
#endif