~ubuntu-branches/ubuntu/trusty/gnome-panel/trusty

« back to all changes in this revision

Viewing changes to .pc/clock_applet_needs_terminal.patch/gnome-panel/libpanel-util/panel-launch.h

  • Committer: Package Import Robot
  • Author(s): Tim Lunn, Tim Lunn, Jeremy Bicha
  • Date: 2013-05-28 11:55:23 UTC
  • Revision ID: package-import@ubuntu.com-20130528115523-5xjvb98au715s7zn
Tags: 1:3.6.2-0ubuntu4
[ Tim Lunn ]
* Rebuild for gnome-desktop 3.8 transition (LP: #1184812)
  - debian/patches/git_panel_run_dialog_resurrect_terminal.patch 
    clock_applet_needs_terminal.patch

[ Jeremy Bicha ]
* git-build-with-gweather38.patch:
  - Backport patch to build with gweather 3.8 (LP: #1184168) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * panel-launch.h: some helpers to launch desktop files
 
3
 *
 
4
 * Copyright (C) 2008 Novell, Inc.
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License as
 
8
 * published by the Free Software Foundation; either version 2 of the
 
9
 * License, or (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful, but
 
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * 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., 59 Temple Place - Suite 330, Boston, MA
 
19
 * 02111-1307, USA.
 
20
 *
 
21
 * Authors:
 
22
 *      Vincent Untz <vuntz@gnome.org>
 
23
 */
 
24
 
 
25
#ifndef PANEL_LAUNCH_H
 
26
#define PANEL_LAUNCH_H
 
27
 
 
28
#include <gio/gio.h>
 
29
#include <gdk/gdk.h>
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
gboolean panel_app_info_launch_uris (GAppInfo   *appinfo,
 
34
                                     GList      *uris,
 
35
                                     GdkScreen  *screen,
 
36
                                     guint32     timestamp,
 
37
                                     GError    **error);
 
38
 
 
39
gboolean panel_app_info_launch_uri (GAppInfo     *appinfo,
 
40
                                    const gchar  *uri,
 
41
                                    GdkScreen    *screen,
 
42
                                    guint32       timestamp,
 
43
                                    GError      **error);
 
44
 
 
45
gboolean panel_launch_key_file (GKeyFile   *keyfile,
 
46
                                GList      *uri_list,
 
47
                                GdkScreen  *screen,
 
48
                                GError    **error);
 
49
 
 
50
gboolean panel_launch_desktop_file (const char  *desktop_file,
 
51
                                    GdkScreen   *screen,
 
52
                                    GError     **error);
 
53
 
 
54
gboolean panel_launch_desktop_file_with_fallback (const char  *desktop_file,
 
55
                                                  const char  *fallback_exec,
 
56
                                                  GdkScreen   *screen,
 
57
                                                  GError     **error);
 
58
 
 
59
G_END_DECLS
 
60
 
 
61
#endif /* PANEL_LAUNCH_H */