~ubuntu-branches/ubuntu/trusty/lxsession/trusty-proposed

« back to all changes in this revision

Viewing changes to lxsession-edit/lxsession-edit-common.h

  • Committer: Package Import Robot
  • Author(s): Julien Lavergne
  • Date: 2013-09-19 19:44:14 UTC
  • Revision ID: package-import@ubuntu.com-20130919194414-nmrwm2s14mes973d
Tags: 0.4.9.2-0ubuntu6
* Add some upstream patches in debian/patches:
 - 93_guess_default.patch: guess default settings when they are not specified
 - 94_fix_qt_plugin_export.patch: Fix export of Qt plugin environment
   variable.
 - 95_launch_working_directory.patch: Launch applications in the current
   directory when necessary.
 - 96_disable_autostart_default.patch: By default, keep the previous behavior
   for auto started applications.
 - 97_kill_default_apps.patch: Properly exit lxsession-default-apps on close.
 - 98_double_launch_polkit.patch: Avoid launching twice the polkit agent when
   using the build-in support.
 - 99_lxsession_edit_in_default_apps.patch: Use functionalities of
   lxsession-edit inside lxsession-default-apps.
* debian/control:
 - Provides policykit-1-gnome since both lxsession and lxpolkit can provide
   the same functionalities.
 - lxsession-default-apps replaces now lxsession-edit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      lxsession-edit-common.h
 
3
 *
 
4
 *      Copyright 2008 PCMan <pcman.tw@gmail.com>
 
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,
 
19
 *      MA 02110-1301, USA.
 
20
 */
 
21
 
 
22
void load_autostart(const char* session_name);
 
23
 
 
24
void save_autostart(const char* session_name);
 
25
 
 
26
void init_list_view( GtkTreeView* view );
 
27
 
 
28
GtkListStore* get_autostart_list ();
 
29