~ubuntu-branches/ubuntu/saucy/cairo-dock-plug-ins/saucy

« back to all changes in this revision

Viewing changes to xfce-integration/src/applet-init.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-08-26 21:07:39 UTC
  • Revision ID: james.westby@ubuntu.com-20090826210739-gyjuuqezrzuluao4
Tags: upstream-2.0.8.1
ImportĀ upstreamĀ versionĀ 2.0.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
* This file is a part of the Cairo-Dock project
 
3
*
 
4
* Copyright : (C) see the 'copyright' file.
 
5
* E-mail    : see the 'copyright' file.
 
6
*
 
7
* This program is free software; you can redistribute it and/or
 
8
* modify it under the terms of the GNU General Public License
 
9
* as published by the Free Software Foundation; either version 3
 
10
* of the License, or (at your option) any later version.
 
11
*
 
12
* This program is distributed in the hope that it will be useful,
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
* GNU General Public License for more details.
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
/******************************************************************************
 
21
 
 
22
This file is a part of the cairo-dock program,
 
23
released under the terms of the GNU General Public License.
 
24
 
 
25
Written by Christophe Chapuis (for any bug report, please mail me to chris.chapuis@gmail.com)
 
26
 
 
27
******************************************************************************/
 
28
#include "stdlib.h"
 
29
 
 
30
#include "applet-thunar-vfs.h"
 
31
#include "applet-utils.h"
 
32
#include "applet-init.h"
 
33
 
 
34
 
 
35
CD_APPLET_PRE_INIT_BEGIN ("xfce integration",
 
36
        1, 6, 2,
 
37
        CAIRO_DOCK_CATEGORY_PLUG_IN,
 
38
        N_("This applet provides functions for a better integration into a XFCE environnement.\n"
 
39
        "It is auto-activated, so you don't need to activate it."),
 
40
        "Tofe (Christophe Chapuis")
 
41
        if (g_iDesktopEnv == CAIRO_DOCK_XFCE)
 
42
        {
 
43
                if (init_vfs_backend ())
 
44
                {
 
45
                        CairoDockDesktopEnvBackend *pVFSBackend = g_new0 (CairoDockDesktopEnvBackend, 1);
 
46
                        
 
47
                        pVFSBackend->get_file_info = vfs_backend_get_file_info;
 
48
                        pVFSBackend->get_file_properties = vfs_backend_get_file_properties;
 
49
                        pVFSBackend->list_directory = vfs_backend_list_directory;
 
50
                        pVFSBackend->launch_uri = vfs_backend_launch_uri;
 
51
                        pVFSBackend->is_mounted = vfs_backend_is_mounted;
 
52
                        pVFSBackend->mount = vfs_backend_mount;
 
53
                        pVFSBackend->unmount = vfs_backend_unmount;
 
54
                        pVFSBackend->add_monitor = vfs_backend_add_monitor;
 
55
                        pVFSBackend->remove_monitor = vfs_backend_remove_monitor;
 
56
                        pVFSBackend->delete_file = vfs_backend_delete_file;
 
57
                        pVFSBackend->rename = vfs_backend_rename_file;
 
58
                        pVFSBackend->move = vfs_backend_move_file;
 
59
                        pVFSBackend->get_trash_path = vfs_backend_get_trash_path;
 
60
                        pVFSBackend->get_desktop_path = vfs_backend_get_desktop_path;
 
61
                        pVFSBackend->logout = env_backend_logout;
 
62
                        pVFSBackend->shutdown = env_backend_logout;  /// a confirmer ...
 
63
                        pVFSBackend->setup_time = env_backend_setup_time;
 
64
                        pVFSBackend->show_system_monitor = env_backend_show_system_monitor;
 
65
                        cairo_dock_fm_register_vfs_backend (pVFSBackend);
 
66
                }
 
67
        }
 
68
        else
 
69
                return FALSE;
 
70
CD_APPLET_PRE_INIT_END