/usr/include/libfm/libfm/fm-file-info.h is in libfm-dev 0.1.17-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | /*
* fm-file-info.h
*
* Copyright 2009 PCMan <pcman.tw@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#ifndef _FM_FILE_INFO_H_
#define _FM_FILE_INFO_H_
#include <glib.h>
#include <gio/gio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "fm-icon.h"
#include "fm-list.h"
#include "fm-path.h"
#include "fm-mime-type.h"
G_BEGIN_DECLS
/* Some flags are defined for future use and are not supported now */
enum _FmFileInfoFlag
{
FM_FILE_INFO_NONE = 0,
FM_FILE_INFO_HOME_DIR = (1 << 0),
FM_FILE_INFO_DESKTOP_DIR = (1 << 1),
FM_FILE_INFO_DESKTOP_ENTRY = (1 << 2),
FM_FILE_INFO_MOUNT_POINT = (1 << 3),
FM_FILE_INFO_REMOTE = (1 << 4),
FM_FILE_INFO_VIRTUAL = (1 << 5)
};
typedef enum _FmFileInfoFlag FmFileInfoFlag;
typedef struct _FmFileInfo FmFileInfo;
typedef FmList FmFileInfoList;
struct _FmFileInfo
{
FmPath* path; /* path of the file */
mode_t mode;
union {
const char* fs_id;
dev_t dev;
};
uid_t uid;
gid_t gid;
goffset size;
time_t mtime;
time_t atime;
gulong blksize;
goffset blocks;
char* disp_name; /* displayed name (in UTF-8) */
/* FIXME: caching the collate key can greatly speed up sorting.
* However, memory usage is greatly increased!.
* Is there a better alternative solution?
*/
char* collate_key; /* used to sort files by name */
char* disp_size; /* displayed human-readable file size */
char* disp_mtime; /* displayed last modification time */
FmMimeType* type;
FmIcon* icon;
char* target; /* target of shortcut or mountable. */
/*<private>*/
int n_ref;
};
/* intialize the file info system */
void _fm_file_info_init();
void _fm_file_info_finalize();
FmFileInfo* fm_file_info_new();
FmFileInfo* fm_file_info_new_from_gfileinfo(FmPath* path, GFileInfo* inf);
void fm_file_info_set_from_gfileinfo(FmFileInfo* fi, GFileInfo* inf);
FmFileInfo* fm_file_info_ref( FmFileInfo* fi );
void fm_file_info_unref( FmFileInfo* fi );
void fm_file_info_copy(FmFileInfo* fi, FmFileInfo* src);
FmPath* fm_file_info_get_path( FmFileInfo* fi );
const char* fm_file_info_get_name( FmFileInfo* fi );
const char* fm_file_info_get_disp_name( FmFileInfo* fi );
void fm_file_info_set_path(FmFileInfo* fi, FmPath* path);
void fm_file_info_set_disp_name( FmFileInfo* fi, const char* name );
goffset fm_file_info_get_size( FmFileInfo* fi );
const char* fm_file_info_get_disp_size( FmFileInfo* fi );
goffset fm_file_info_get_blocks( FmFileInfo* fi );
mode_t fm_file_info_get_mode( FmFileInfo* fi );
gboolean fm_file_info_is_dir( FmFileInfo* fi );
FmMimeType* fm_file_info_get_mime_type( FmFileInfo* fi );
gboolean fm_file_info_is_dir( FmFileInfo* fi );
gboolean fm_file_info_is_symlink( FmFileInfo* fi );
gboolean fm_file_info_is_shortcut( FmFileInfo* fi );
gboolean fm_file_info_is_mountable( FmFileInfo* fi );
gboolean fm_file_info_is_image( FmFileInfo* fi );
gboolean fm_file_info_is_text( FmFileInfo* fi );
gboolean fm_file_info_is_desktop_entry( FmFileInfo* fi );
gboolean fm_file_info_is_unknown_type( FmFileInfo* fi );
gboolean fm_file_info_is_hidden(FmFileInfo* fi);
/* if the mime-type is executable, such as shell script, python script, ... */
gboolean fm_file_info_is_executable_type( FmFileInfo* fi);
const char* fm_file_info_get_target( FmFileInfo* fi );
const char* fm_file_info_get_collate_key( FmFileInfo* fi );
const char* fm_file_info_get_desc( FmFileInfo* fi );
const char* fm_file_info_get_disp_mtime( FmFileInfo* fi );
time_t* fm_file_info_get_mtime( FmFileInfo* fi );
time_t* fm_file_info_get_atime( FmFileInfo* fi );
gboolean fm_file_info_can_thumbnail(FmFileInfo* fi);
FmFileInfoList* fm_file_info_list_new();
FmFileInfoList* fm_file_info_list_new_from_glist();
gboolean fm_list_is_file_info_list(FmList* list);
/* return TRUE if all files in the list are of the same type */
gboolean fm_file_info_list_is_same_type(FmFileInfoList* list);
/* return TRUE if all files in the list are on the same fs */
gboolean fm_file_info_list_is_same_fs(FmFileInfoList* list);
#define FM_FILE_INFO(ptr) ((FmFileInfo*)ptr)
G_END_DECLS
#endif
|