~noskcaj/ubuntu/trusty/parole/0.6.0

« back to all changes in this revision

Viewing changes to src/common/parole-common.h

  • Committer: Package Import Robot
  • Author(s): Yves-Alexis Perez, Lionel Le Folgoc, Micah Gersten, Yves-Alexis Perez
  • Date: 2013-05-25 14:54:35 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130525145435-9dyr3r16kr4go8ah
Tags: 0.5.0-1
[ Lionel Le Folgoc ]
* debian/patches: add missing DEP3 headers.
* debian/control:
  - add b-dep on libxfconf-0-dev since parole now uses Xfconf
  - suggests gnome-codec-install for the missing codec feature.

[ Micah Gersten ]
* Update link to GPL license to appease lintian
  - update debian/copyright

[ Yves-Alexis Perez ]
* New upstream release.
* debian/patches:
  - 01_fix-implicit-dso-linking dropped, not needed anymore.
* debian/rules:
  - drop call to xdt-autogen, not needed anymore.
  - use parallel build.
  - use debhelper 9 / dpkg-dev 1.16.1 hardening support.
  - use multiarch paths.
* debian/control:
  - update standards version to 3.9.4.
  - update debhelper build-dep to 9
  - drop hardening-includes build-dep.
  - drop xfce4-dev-tools, libtool and gtk-doc-tools build-deps.
  - replace libxfcegui4 build-dep by libxfce4ui.
  - drop Simon and Emmanuele from uploaders, thanks to them for their work!
* debian/compat bumped to 9.
* debian/parole.install:
  - update paths for multiarch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * * Copyright (C) 2009-2011 Ali <aliov@xfce.org>
 
3
 *
 
4
 * Licensed under the GNU General Public License Version 2
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#ifndef __PAROLE_COMMON_H_
 
22
#define __PAROLE_COMMON_H_
 
23
 
 
24
#include <gtk/gtk.h>
 
25
#include <gdk/gdk.h>
 
26
 
 
27
 
 
28
void            parole_dialog_info                      (GtkWindow *parent,
 
29
                                                         const gchar *title,
 
30
                                                         const gchar *msg);
 
31
 
 
32
void            parole_dialog_error                     (GtkWindow *parent,
 
33
                                                         const gchar *title,
 
34
                                                         const gchar *msg);
 
35
 
 
36
void            parole_window_busy_cursor               (GdkWindow *window);
 
37
 
 
38
void            parole_window_invisible_cursor          (GdkWindow *window);
 
39
 
 
40
 
 
41
 
 
42
#endif /* __PAROLE_COMMON_ */