/* * fm.h * * Copyright 2009 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 */ #ifndef __LIBFM_FM_H__ #define __LIBFM_FM_H__ #include "fm-version.h" #include "fm-app-info.h" #include "fm-archiver.h" #include "fm-bookmarks.h" #include "fm-config.h" #include "fm-dummy-monitor.h" #include "fm-file.h" #include "fm-file-info.h" #include "fm-file-launcher.h" #include "fm-folder.h" #include "fm-folder-config.h" #include "fm-icon.h" #include "fm-list.h" #include "fm-marshal.h" #include "fm-mime-type.h" #include "fm-module.h" #include "fm-monitor.h" #include "fm-nav-history.h" #include "fm-path.h" #include "fm-templates.h" #include "fm-terminal.h" #include "fm-thumbnail-loader.h" #include "fm-thumbnailer.h" #include "fm-utils.h" #include "fm-deep-count-job.h" #include "fm-dir-list-job.h" #include "fm-file-info-job.h" #include "fm-file-ops-job.h" #include "fm-file-ops-job-change-attr.h" #include "fm-file-ops-job-delete.h" #include "fm-file-ops-job-xfer.h" #include "fm-job.h" #include "fm-simple-job.h" G_BEGIN_DECLS gboolean fm_init(FmConfig* config); void fm_finalize(); const char *fm_version(void); extern GQuark fm_qdata_id; /* a quark value used to associate data with objects */ G_END_DECLS #endif