98 lines
2.9 KiB
C
98 lines
2.9 KiB
C
/*
|
|
* moofile-private.h
|
|
*
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* 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.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef MOO_FILE_VIEW_COMPILATION
|
|
#error "This file may not be included"
|
|
#endif
|
|
|
|
#ifndef __MOO_FILE_PRIVATE_H__
|
|
#define __MOO_FILE_PRIVATE_H__
|
|
|
|
#include "moofileview/moofile.h"
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
#define MOO_TYPE_FILE (_moo_file_get_type ())
|
|
#define MOO_TYPE_FILE_INFO (_moo_file_info_get_type ())
|
|
#define MOO_TYPE_FILE_FLAGS (_moo_file_flags_get_type ())
|
|
|
|
#ifdef __WIN32__
|
|
/* FILETIME */
|
|
typedef guint64 MooFileTime;
|
|
#else
|
|
/* time_t */
|
|
/* XXX it's not time_t! */
|
|
typedef GTime MooFileTime;
|
|
#endif
|
|
|
|
typedef gint64 MooFileSize;
|
|
|
|
struct _MooFile
|
|
{
|
|
char *name;
|
|
char *link_target;
|
|
char *display_name; /* normalized */
|
|
char *case_display_name;
|
|
char *collation_key;
|
|
MooFileInfo info;
|
|
MooFileFlags flags;
|
|
guint8 icon;
|
|
const char *mime_type;
|
|
int ref_count;
|
|
/* TODO: who needs whole structure? */
|
|
struct stat statbuf;
|
|
};
|
|
|
|
|
|
GType _moo_file_get_type (void) G_GNUC_CONST;
|
|
GType _moo_file_flags_get_type (void) G_GNUC_CONST;
|
|
GType _moo_file_info_get_type (void) G_GNUC_CONST;
|
|
|
|
MooFile *_moo_file_new (const char *dirname,
|
|
const char *basename);
|
|
|
|
MooFile *_moo_file_ref (MooFile *file);
|
|
void _moo_file_unref (MooFile *file);
|
|
|
|
MooFileInfo _moo_file_get_info (const MooFile *file);
|
|
|
|
const char *_moo_file_name (const MooFile *file);
|
|
|
|
/* returned pixbuf is owned by icon cache */
|
|
GdkPixbuf *_moo_file_get_icon (const MooFile *file,
|
|
GtkWidget *widget,
|
|
GtkIconSize size);
|
|
|
|
const char *_moo_file_collation_key (const MooFile *file);
|
|
const char *_moo_file_case_display_name(const MooFile *file);
|
|
|
|
#ifndef __WIN32__
|
|
const char *_moo_file_link_get_target (const MooFile *file);
|
|
#endif
|
|
|
|
guint8 _moo_file_icon_blank (void);
|
|
guint8 _moo_file_get_icon_type (MooFile *file,
|
|
const char *dirname);
|
|
void _moo_file_stat (MooFile *file,
|
|
const char *dirname);
|
|
void _moo_file_find_mime_type (MooFile *file,
|
|
const char *path);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __MOO_FILE_PRIVATE_H__ */
|