2009-07-04 15:29:51 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef __SHELL_OVERFLOW_LIST_H__
|
|
|
|
#define __SHELL_OVERFLOW_LIST_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _ShellOverflowList ShellOverflowList;
|
|
|
|
typedef struct _ShellOverflowListClass ShellOverflowListClass;
|
|
|
|
typedef struct _ShellOverflowListPrivate ShellOverflowListPrivate;
|
|
|
|
|
|
|
|
#define SHELL_TYPE_OVERFLOW_LIST (shell_overflow_list_get_type ())
|
|
|
|
#define SHELL_OVERFLOW_LIST(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), SHELL_TYPE_OVERFLOW_LIST, ShellOverflowList))
|
|
|
|
#define SHELL_OVERFLOW_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_TYPE_OVERFLOW_LIST, ShellOverflowListClass))
|
|
|
|
#define SHELL_IS_OVERFLOW_LIST(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), SHELL_TYPE_OVERFLOW_LIST))
|
|
|
|
#define SHELL_IS_OVERFLOW_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_TYPE_OVERFLOW_LIST))
|
|
|
|
#define SHELL_OVERFLOW_LIST_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SHELL_TYPE_OVERFLOW_LIST, ShellOverflowListClass))
|
|
|
|
|
|
|
|
struct _ShellOverflowList
|
|
|
|
{
|
|
|
|
ClutterGroup parent_instance;
|
|
|
|
|
|
|
|
ShellOverflowListPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _ShellOverflowListClass
|
|
|
|
{
|
|
|
|
ClutterGroupClass parent_class;
|
|
|
|
|
|
|
|
ShellOverflowListPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType shell_overflow_list_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2009-07-11 12:26:36 -04:00
|
|
|
ClutterActor *shell_overflow_list_get_displayed_actor (ShellOverflowList *list, guint index);
|
2009-08-06 13:51:11 -04:00
|
|
|
int shell_overflow_list_get_actor_index (ShellOverflowList *list, ClutterActor *actor);
|
2009-07-11 12:26:36 -04:00
|
|
|
|
2009-07-04 15:29:51 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __SHELL_OVERFLOW_LIST_H__ */
|