blob: e5c3a6f40a0051dbc244e7d873a5167793df8ee8 (
plain) (
tree)
|
|
#ifndef __EMPATHY_ROSTER_VIEW_H__
#define __EMPATHY_ROSTER_VIEW_H__
#include <libempathy-gtk/egg-list-box/egg-list-box.h>
#include <libempathy-gtk/empathy-live-search.h>
#include <libempathy/empathy-individual-manager.h>
G_BEGIN_DECLS
typedef struct _EmpathyRosterView EmpathyRosterView;
typedef struct _EmpathyRosterViewClass EmpathyRosterViewClass;
typedef struct _EmpathyRosterViewPriv EmpathyRosterViewPriv;
struct _EmpathyRosterViewClass
{
/*<private>*/
EggListBoxClass parent_class;
};
struct _EmpathyRosterView
{
/*<private>*/
EggListBox parent;
EmpathyRosterViewPriv *priv;
};
GType empathy_roster_view_get_type (void);
/* TYPE MACROS */
#define EMPATHY_TYPE_ROSTER_VIEW \
(empathy_roster_view_get_type ())
#define EMPATHY_ROSTER_VIEW(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
EMPATHY_TYPE_ROSTER_VIEW, \
EmpathyRosterView))
#define EMPATHY_ROSTER_VIEW_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), \
EMPATHY_TYPE_ROSTER_VIEW, \
EmpathyRosterViewClass))
#define EMPATHY_IS_ROSTER_VIEW(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), \
EMPATHY_TYPE_ROSTER_VIEW))
#define EMPATHY_IS_ROSTER_VIEW_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), \
EMPATHY_TYPE_ROSTER_VIEW))
#define EMPATHY_ROSTER_VIEW_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
EMPATHY_TYPE_ROSTER_VIEW, \
EmpathyRosterViewClass))
GtkWidget * empathy_roster_view_new (EmpathyIndividualManager *manager);
EmpathyIndividualManager * empathy_roster_view_get_manager (
EmpathyRosterView *self);
void empathy_roster_view_show_offline (EmpathyRosterView *self,
gboolean show);
void empathy_roster_view_show_groups (EmpathyRosterView *self,
gboolean show);
void empathy_roster_view_set_live_search (EmpathyRosterView *self,
EmpathyLiveSearch *search);
G_END_DECLS
#endif /* #ifndef __EMPATHY_ROSTER_VIEW_H__*/
|