/*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with the program; if not, see
*
*
* Authors:
* Jon Trowbridge
* Chris Toshok
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
*/
#ifndef __EAB_POPUP_CONTROL_H__
#define __EAB_POPUP_CONTROL_H__
#include
#include
#include
#include
G_BEGIN_DECLS
#define EAB_TYPE_POPUP_CONTROL (eab_popup_control_get_type ())
#define EAB_POPUP_CONTROL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EAB_TYPE_POPUP_CONTROL, EABPopupControl))
#define EAB_POPUP_CONTROL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EAB_TYPE_POPUP_CONTROL, EABPopupControlClass))
#define EAB_IS_POPUP_CONTROL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EAB_TYPE_POPUP_CONTROL))
#define EAB_IS_POPUP_CONTROL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EAB_TYPE_POPUP_CONTROL))
typedef struct _EABPopupControl EABPopupControl;
typedef struct _EABPopupControlClass EABPopupControlClass;
struct _EABPopupControl {
GtkEventBox parent;
gchar *name;
gchar *email;
gchar *vcard;
GtkWidget *name_widget;
GtkWidget *email_widget;
GtkWidget *query_msg;
GtkWidget *main_vbox;
GtkWidget *generic_view;
GtkWidget *contact_display;
gboolean transitory;
guint scheduled_refresh;
EBook *book;
guint query_tag;
gboolean multiple_matches;
EContact *contact;
BonoboEventSource *es;
};
struct _EABPopupControlClass {
GtkEventBoxClass parent_class;
};
GType eab_popup_control_get_type (void);
void eab_popup_control_construct (EABPopupControl *);
BonoboControl *eab_popup_control_new (void);
G_END_DECLS
#endif /* __EAB_POPUP_CONTROL_H__ */