2006-05-21 18:11:05 -05:00
|
|
|
/*
|
2005-08-25 09:29:01 +00:00
|
|
|
* moofileview.h
|
|
|
|
*
|
2006-02-23 14:03:17 +00:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-08-25 09:29:01 +00: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.
|
|
|
|
*/
|
|
|
|
|
2007-06-10 04:06:03 -05:00
|
|
|
#ifndef MOO_FILE_VIEW_H
|
|
|
|
#define MOO_FILE_VIEW_H
|
2005-08-25 09:29:01 +00:00
|
|
|
|
2005-11-18 20:07:56 +00:00
|
|
|
#include <mooutils/moouixml.h>
|
2005-08-25 09:29:01 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2006-06-25 07:02:14 -05:00
|
|
|
#define MOO_TYPE_FILE_VIEW (moo_file_view_get_type ())
|
2005-08-25 09:29:01 +00:00
|
|
|
#define MOO_FILE_VIEW(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_FILE_VIEW, MooFileView))
|
|
|
|
#define MOO_FILE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_FILE_VIEW, MooFileViewClass))
|
|
|
|
#define MOO_IS_FILE_VIEW(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_FILE_VIEW))
|
|
|
|
#define MOO_IS_FILE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_FILE_VIEW))
|
|
|
|
#define MOO_FILE_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_FILE_VIEW, MooFileViewClass))
|
|
|
|
|
2006-08-13 04:00:15 -05:00
|
|
|
typedef struct _MooFileView MooFileView;
|
|
|
|
typedef struct _MooFileViewClass MooFileViewClass;
|
2005-08-25 09:29:01 +00:00
|
|
|
|
2006-08-15 02:12:41 -05:00
|
|
|
GType moo_file_view_get_type (void) G_GNUC_CONST;
|
2005-08-25 09:29:01 +00:00
|
|
|
|
2006-08-15 02:12:41 -05:00
|
|
|
gboolean moo_file_view_chdir (MooFileView *fileview,
|
|
|
|
const char *dir,
|
|
|
|
GError **error);
|
2005-08-25 09:29:01 +00:00
|
|
|
|
2006-08-15 02:12:41 -05:00
|
|
|
MooUIXML *moo_file_view_get_ui_xml (MooFileView *fileview);
|
|
|
|
MooActionCollection *moo_file_view_get_actions (MooFileView *fileview);
|
2006-04-04 21:48:03 -05:00
|
|
|
|
|
|
|
|
2005-08-25 09:29:01 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2007-06-10 04:06:03 -05:00
|
|
|
#endif /* MOO_FILE_VIEW_H */
|