/* * fm-archiver.h * * Copyright 2010 PCMan * * This file is a part of the Libfm library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /* handles integration between libfm and some well-known GUI archivers, * such as file-roller, xarchiver, and squeeze. */ #ifndef __FM_ARCHIVER_H__ #define __FM_ARCHIVER_H__ #include #include #include "fm-path.h" G_BEGIN_DECLS typedef struct _FmArchiver FmArchiver; /** * FmArchiver: * @program: archiver program * @create_cmd: command to create archive * @extract_cmd: command to extract files from archive * @extract_to_cmd: command to extract files into destined directory * @mime_types: list of archive types the archiver supports */ struct _FmArchiver { char* program; char* create_cmd; char* extract_cmd; char* extract_to_cmd; char** mime_types; }; void _fm_archiver_init(); void _fm_archiver_finalize(); gboolean fm_archiver_is_mime_type_supported(FmArchiver* archiver, const char* type); gboolean fm_archiver_create_archive(FmArchiver* archiver, GAppLaunchContext* ctx, FmPathList* files); gboolean fm_archiver_extract_archives(FmArchiver* archiver, GAppLaunchContext* ctx, FmPathList* files); gboolean fm_archiver_extract_archives_to(FmArchiver* archiver, GAppLaunchContext* ctx, FmPathList* files, FmPath* dest_dir); /* get default GUI archivers used by libfm */ FmArchiver* fm_archiver_get_default(); /* set default GUI archivers used by libfm */ void fm_archiver_set_default(FmArchiver* archiver); /* get a list of FmArchiver* of all GUI archivers known to libfm */ const GList* fm_archiver_get_all(); G_END_DECLS #endif /* __FM_ARCHIVER_H__ */