188 lines
9.3 KiB
C
188 lines
9.3 KiB
C
/*
|
|
* mooiconview.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_ICON_VIEW_H__
|
|
#define __MOO_ICON_VIEW_H__
|
|
|
|
#include <gtk/gtkvbox.h>
|
|
#include <gtk/gtktreemodel.h>
|
|
#include <gtk/gtkcellrenderer.h>
|
|
#include <gtk/gtkdnd.h>
|
|
|
|
#ifndef G_GNUC_NULL_TERMINATED
|
|
#if __GNUC__ >= 4
|
|
#define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
|
|
#else
|
|
#define G_GNUC_NULL_TERMINATED
|
|
#endif
|
|
#endif
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
#define MOO_TYPE_ICON_VIEW (_moo_icon_view_get_type ())
|
|
#define MOO_ICON_VIEW(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_ICON_VIEW, MooIconView))
|
|
#define MOO_ICON_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_ICON_VIEW, MooIconViewClass))
|
|
#define MOO_IS_ICON_VIEW(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_ICON_VIEW))
|
|
#define MOO_IS_ICON_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_ICON_VIEW))
|
|
#define MOO_ICON_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_ICON_VIEW, MooIconViewClass))
|
|
|
|
|
|
typedef struct _MooIconView MooIconView;
|
|
typedef struct _MooIconViewPrivate MooIconViewPrivate;
|
|
typedef struct _MooIconViewClass MooIconViewClass;
|
|
|
|
struct _MooIconView
|
|
{
|
|
GtkVBox vbox;
|
|
MooIconViewPrivate *priv;
|
|
};
|
|
|
|
struct _MooIconViewClass
|
|
{
|
|
GtkVBoxClass vbox_class;
|
|
|
|
void (*set_scroll_adjustments) (GtkWidget *widget,
|
|
GtkAdjustment *hadjustment,
|
|
GtkAdjustment *vadjustment);
|
|
|
|
void (*row_activated) (MooIconView *iconview,
|
|
const GtkTreePath *path);
|
|
void (*selection_changed) (MooIconView *iconview);
|
|
void (*cursor_moved) (MooIconView *iconview,
|
|
const GtkTreePath *path);
|
|
};
|
|
|
|
typedef enum {
|
|
MOO_ICON_VIEW_CELL_PIXBUF,
|
|
MOO_ICON_VIEW_CELL_TEXT
|
|
} MooIconViewCell;
|
|
|
|
|
|
typedef void (*MooIconCellDataFunc) (MooIconView *view,
|
|
GtkCellRenderer *cell,
|
|
GtkTreeModel *model,
|
|
GtkTreeIter *iter,
|
|
gpointer data);
|
|
typedef void (*MooIconViewForeachFunc) (GtkTreeModel *model,
|
|
GtkTreePath *path,
|
|
GtkTreeIter *iter,
|
|
gpointer data);
|
|
|
|
|
|
GType _moo_icon_view_get_type (void) G_GNUC_CONST;
|
|
|
|
GtkWidget *_moo_icon_view_new (GtkTreeModel *model);
|
|
|
|
GtkTreeModel *_moo_icon_view_get_model (MooIconView *view);
|
|
void _moo_icon_view_set_model (MooIconView *view,
|
|
GtkTreeModel *model);
|
|
|
|
void _moo_icon_view_set_cell (MooIconView *view,
|
|
MooIconViewCell cell_type,
|
|
GtkCellRenderer*cell);
|
|
GtkCellRenderer *_moo_icon_view_get_cell (MooIconView *view,
|
|
MooIconViewCell cell_type);
|
|
|
|
void _moo_icon_view_set_attributes (MooIconView *view,
|
|
MooIconViewCell cell_type,
|
|
const char *first_attr,
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
void _moo_icon_view_clear_attributes (MooIconView *view,
|
|
MooIconViewCell cell_type);
|
|
|
|
void _moo_icon_view_set_cell_data_func(MooIconView *view,
|
|
MooIconViewCell cell,
|
|
MooIconCellDataFunc func,
|
|
gpointer func_data,
|
|
GDestroyNotify destroy);
|
|
|
|
void _moo_icon_view_set_adjustment (MooIconView *view,
|
|
GtkAdjustment *adjustment);
|
|
|
|
|
|
/* TreeView-like selection and cursor interface */
|
|
void _moo_icon_view_set_selection_mode (MooIconView *view,
|
|
GtkSelectionMode mode);
|
|
gboolean _moo_icon_view_get_selected (MooIconView *view,
|
|
GtkTreeIter *iter);
|
|
GtkTreePath *_moo_icon_view_get_selected_path (MooIconView *view);
|
|
void _moo_icon_view_selected_foreach (MooIconView *view,
|
|
MooIconViewForeachFunc func,
|
|
gpointer data);
|
|
GList* _moo_icon_view_get_selected_rows (MooIconView *view);
|
|
gint _moo_icon_view_count_selected_rows (MooIconView *view);
|
|
void _moo_icon_view_select_path (MooIconView *view,
|
|
GtkTreePath *path);
|
|
void _moo_icon_view_unselect_path (MooIconView *view,
|
|
GtkTreePath *path);
|
|
void _moo_icon_view_select_range (MooIconView *view,
|
|
GtkTreePath *start,
|
|
GtkTreePath *end);
|
|
gboolean _moo_icon_view_path_is_selected (MooIconView *view,
|
|
GtkTreePath *path);
|
|
void _moo_icon_view_select_all (MooIconView *view);
|
|
void _moo_icon_view_unselect_all (MooIconView *view);
|
|
|
|
void _moo_icon_view_scroll_to_cell (MooIconView *view,
|
|
GtkTreePath *path);
|
|
void _moo_icon_view_set_cursor (MooIconView *view,
|
|
GtkTreePath *path,
|
|
gboolean start_editing);
|
|
GtkTreePath* _moo_icon_view_get_cursor (MooIconView *view);
|
|
void _moo_icon_view_row_activated (MooIconView *view,
|
|
GtkTreePath *path);
|
|
|
|
void _moo_icon_view_widget_to_abs_coords (MooIconView *view,
|
|
int wx,
|
|
int wy,
|
|
int *absx,
|
|
int *absy);
|
|
void _moo_icon_view_abs_to_widget_coords (MooIconView *view,
|
|
int absx,
|
|
int absy,
|
|
int *wx,
|
|
int *wy);
|
|
|
|
gboolean _moo_icon_view_get_path_at_pos (MooIconView *view,
|
|
int x,
|
|
int y,
|
|
GtkTreePath **path,
|
|
MooIconViewCell *cell,
|
|
int *cell_x,
|
|
int *cell_y);
|
|
|
|
void _moo_icon_view_enable_drag_source (MooIconView *view,
|
|
GdkModifierType start_button_mask,
|
|
GtkTargetEntry *targets,
|
|
gint n_targets,
|
|
GdkDragAction actions);
|
|
GtkTargetList *_moo_icon_view_get_source_targets(MooIconView *view);
|
|
void _moo_icon_view_disable_drag_source (MooIconView *view);
|
|
|
|
void _moo_icon_view_enable_drag_dest (MooIconView *view,
|
|
GtkTargetEntry *targets,
|
|
gint n_targets,
|
|
GdkDragAction actions);
|
|
void _moo_icon_view_set_dest_targets (MooIconView *view,
|
|
GtkTargetList *targets);
|
|
void _moo_icon_view_disable_drag_dest (MooIconView *view);
|
|
void _moo_icon_view_set_drag_dest_row (MooIconView *view,
|
|
GtkTreePath *path);
|
|
GtkTreePath *_moo_icon_view_get_drag_dest_row (MooIconView *view);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __MOO_ICON_VIEW_H__ */
|