medit/moo/mooutils/moofileview/moofilesystem.h

150 lines
7.0 KiB
C
Raw Normal View History

2006-05-21 16:11:05 -07:00
/*
* moofilesystem.h
2005-08-25 02:29:01 -07:00
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
2005-08-25 02:29:01 -07:00
*
* 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.
*/
/*
* MooFile, MooFolder, and MooFileSystem are utility classes for loading/caching
* folders and files, ala GtkFile* stuff (I guess, at least this header was copied
* from gtk/gtkfilesystem.h; I also borrowed icon code from there.).
*/
#ifndef __MOO_FILE_SYSTEM_H__
#define __MOO_FILE_SYSTEM_H__
#include <moofileview/moofile.h>
2005-08-25 02:29:01 -07:00
#include <gtk/gtkwidget.h>
#ifdef MOO_FILE_SYSTEM_COMPILATION
#include "mooutils/moofilewatch.h"
2005-08-25 02:29:01 -07:00
#endif
G_BEGIN_DECLS
#define MOO_TYPE_FILE_SYSTEM (_moo_file_system_get_type ())
2005-08-25 02:29:01 -07:00
#define MOO_FILE_SYSTEM(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_FILE_SYSTEM, MooFileSystem))
#define MOO_FILE_SYSTEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_FILE_SYSTEM, MooFileSystemClass))
#define MOO_IS_FILE_SYSTEM(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_FILE_SYSTEM))
#define MOO_IS_FILE_SYSTEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_FILE_SYSTEM))
#define MOO_FILE_SYSTEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_FILE_SYSTEM, MooFileSystemClass))
typedef struct _MooFileSystemPrivate MooFileSystemPrivate;
typedef struct _MooFileSystemClass MooFileSystemClass;
struct _MooFileSystem
{
GObject parent;
MooFileSystemPrivate *priv;
};
struct _MooFileSystemClass
{
GObjectClass parent_class;
MooFolder* (*get_root_folder) (MooFileSystem *fs,
MooFileFlags flags);
MooFolder* (*get_folder) (MooFileSystem *fs,
const char *path,
MooFileFlags flags,
GError **error);
MooFolder* (*get_parent_folder)(MooFileSystem *fs,
MooFolder *folder,
MooFileFlags flags);
char* (*normalize_path) (MooFileSystem *fs,
const char *path,
gboolean is_folder,
GError **error);
char* (*make_path) (MooFileSystem *fs,
const char *base_path,
const char *display_name,
GError **error);
gboolean (*create_folder) (MooFileSystem *fs,
const char *path,
GError **error);
gboolean (*delete_file) (MooFileSystem *fs,
const char *path,
gboolean recursive,
GError **error);
gboolean (*move_file) (MooFileSystem *fs,
const char *old_path,
const char *new_path,
GError **error);
gboolean (*parse_path) (MooFileSystem *fs,
const char *path_utf8,
char **dirname,
char **display_dirname,
char **display_basename,
GError **error);
2005-09-02 16:27:25 -07:00
char* (*get_absolute_path)(MooFileSystem *fs,
const char *display_name,
const char *current_dir);
2005-08-25 02:29:01 -07:00
};
GType _moo_file_system_get_type (void) G_GNUC_CONST;
2005-08-25 02:29:01 -07:00
MooFileSystem *_moo_file_system_create (void);
2005-08-25 02:29:01 -07:00
MooFolder *_moo_file_system_get_root_folder (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
MooFileFlags wanted);
MooFolder *_moo_file_system_get_folder (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *path,
MooFileFlags wanted,
GError **error);
MooFolder *_moo_file_system_get_parent_folder (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
MooFolder *folder,
MooFileFlags wanted);
gboolean _moo_file_system_create_folder (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *path,
GError **error);
gboolean _moo_file_system_delete_file (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *path,
gboolean recursive,
GError **error);
gboolean _moo_file_system_move_file (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *old_path,
const char *new_path,
GError **error);
char *_moo_file_system_make_path (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *base_path,
const char *display_name,
GError **error);
char *_moo_file_system_normalize_path (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *path,
gboolean is_folder,
GError **error);
gboolean _moo_file_system_parse_path (MooFileSystem *fs,
2005-08-25 02:29:01 -07:00
const char *path_utf8,
char **dirname,
char **display_dirname,
char **display_basename,
GError **error);
char *_moo_file_system_get_absolute_path (MooFileSystem *fs,
2005-09-02 16:27:25 -07:00
const char *display_name,
const char *current_dir);
2005-08-25 02:29:01 -07:00
MooFileSystem *_moo_folder_get_file_system (MooFolder *folder);
2005-08-25 02:29:01 -07:00
#ifdef MOO_FILE_SYSTEM_COMPILATION
MooFileWatch *_moo_file_system_get_file_watch (MooFileSystem *fs);
2005-08-25 02:29:01 -07:00
#endif
G_END_DECLS
#endif /* __MOO_FILE_SYSTEM_H__ */