medit/moo/moofileview/moobookmarkmgr.h

105 lines
3.8 KiB
C
Raw Normal View History

/*
2005-08-25 02:29:01 -07:00
* moobookmarkmgr.h
*
* 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.
*/
#ifndef __MOO_BOOKMARK_MGR_H__
#define __MOO_BOOKMARK_MGR_H__
#include <gtk/gtkwidget.h>
#include <gtk/gtktreemodel.h>
2005-11-18 12:07:56 -08:00
#include <mooutils/moouixml.h>
2005-08-25 02:29:01 -07:00
G_BEGIN_DECLS
#define MOO_TYPE_BOOKMARK_MGR (_moo_bookmark_mgr_get_type ())
2005-08-25 02:29:01 -07:00
#define MOO_BOOKMARK_MGR(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_BOOKMARK_MGR, MooBookmarkMgr))
#define MOO_BOOKMARK_MGR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_BOOKMARK_MGR, MooBookmarkMgrClass))
#define MOO_IS_BOOKMARK_MGR(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_BOOKMARK_MGR))
#define MOO_IS_BOOKMARK_MGR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_BOOKMARK_MGR))
#define MOO_BOOKMARK_MGR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_BOOKMARK_MGR, MooBookmarkMgrClass))
#define MOO_TYPE_BOOKMARK (_moo_bookmark_get_type ())
2005-08-25 02:29:01 -07:00
typedef enum {
MOO_BOOKMARK_MGR_COLUMN_BOOKMARK = 0,
MOO_BOOKMARK_MGR_NUM_COLUMNS
} MooBookmarkMgrModelColumn;
typedef struct _MooBookmark MooBookmark;
typedef struct _MooBookmarkMgr MooBookmarkMgr;
typedef struct _MooBookmarkMgrPrivate MooBookmarkMgrPrivate;
typedef struct _MooBookmarkMgrClass MooBookmarkMgrClass;
struct _MooBookmark {
char *path;
char *display_path;
char *label;
char *icon_stock_id;
GdkPixbuf *pixbuf;
};
struct _MooBookmarkMgr
{
GObject parent;
MooBookmarkMgrPrivate *priv;
};
struct _MooBookmarkMgrClass
{
GObjectClass parent_class;
2005-11-18 12:07:56 -08:00
void (*changed) (MooBookmarkMgr *mgr);
void (*activate) (MooBookmarkMgr *mgr,
MooBookmark *bookmark,
GObject *user);
2005-08-25 02:29:01 -07:00
};
GType _moo_bookmark_get_type (void) G_GNUC_CONST;
GType _moo_bookmark_mgr_get_type (void) G_GNUC_CONST;
2005-08-25 02:29:01 -07:00
MooBookmark *_moo_bookmark_new (const char *name,
2005-08-25 02:29:01 -07:00
const char *path,
const char *icon);
MooBookmark *_moo_bookmark_copy (MooBookmark *bookmark);
void _moo_bookmark_free (MooBookmark *bookmark);
2005-08-25 02:29:01 -07:00
void _moo_bookmark_set_path (MooBookmark *bookmark,
2005-08-25 02:29:01 -07:00
const char *path);
void _moo_bookmark_set_display_path(MooBookmark *bookmark,
2005-08-25 02:29:01 -07:00
const char *display_path);
MooBookmarkMgr *_moo_bookmark_mgr_new (void);
GtkTreeModel *_moo_bookmark_mgr_get_model (MooBookmarkMgr *mgr);
2005-08-25 02:29:01 -07:00
void _moo_bookmark_mgr_add (MooBookmarkMgr *mgr,
2005-08-25 02:29:01 -07:00
MooBookmark *bookmark);
gboolean _moo_bookmark_mgr_is_empty (MooBookmarkMgr *mgr);
2005-08-25 02:29:01 -07:00
GtkWidget *_moo_bookmark_mgr_get_editor(MooBookmarkMgr *mgr);
2005-08-25 02:29:01 -07:00
void _moo_bookmark_mgr_add_user (MooBookmarkMgr *mgr,
2005-11-18 12:07:56 -08:00
gpointer user, /* GObject* */
2006-05-08 21:57:16 -07:00
GtkActionGroup *actions,
2005-11-18 12:07:56 -08:00
MooUIXML *xml,
const char *path);
void _moo_bookmark_mgr_remove_user(MooBookmarkMgr *mgr,
2005-11-18 12:07:56 -08:00
gpointer user); /* GObject* */
2005-08-25 02:29:01 -07:00
G_END_DECLS
#endif /* __MOO_BOOKMARK_MGR_H__ */