aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/gal-view-minicard.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-02-14 04:47:26 +0800
committerChris Lahey <clahey@src.gnome.org>2002-02-14 04:47:26 +0800
commit32a1a69f13932b9304a937ca0cb39102d425bc93 (patch)
tree86c1eb93cc4b6053916a677e1183fdfe046aa824 /addressbook/gui/widgets/gal-view-minicard.h
parent9f1ec16fffe3bdaa9ee4ecf0b3111f55e510decc (diff)
downloadgsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.gz
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.bz2
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.lz
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.xz
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.tar.zst
gsoc2013-evolution-32a1a69f13932b9304a937ca0cb39102d425bc93.zip
Attach to the emvw instead of the emv here.
2002-02-13 Christopher James Lahey <clahey@ximian.com> * gui/widgets/e-addressbook-view.c (display_view): Attach to the emvw instead of the emv here. * gui/widgets/e-minicard-view-widget.c, e-minicard-view-widget.h: Made this object have a "column_width" argument and a "column_width_changed" signal which are a simple layer down to the EMinicardView contained within. * gui/widgets/gal-view-minicard.c, gui/widgets/gal-view-minicard.h (gal_view_minicard_attach): Made this attach to an EMinicardViewWidget instead of a EMinicardView. svn path=/trunk/; revision=15714
Diffstat (limited to 'addressbook/gui/widgets/gal-view-minicard.h')
-rw-r--r--addressbook/gui/widgets/gal-view-minicard.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/addressbook/gui/widgets/gal-view-minicard.h b/addressbook/gui/widgets/gal-view-minicard.h
index 1228a4af8c..31a28c56d9 100644
--- a/addressbook/gui/widgets/gal-view-minicard.h
+++ b/addressbook/gui/widgets/gal-view-minicard.h
@@ -12,7 +12,7 @@
#include <gtk/gtkobject.h>
#include <gal/menus/gal-view.h>
-#include <e-minicard-view.h>
+#include <e-minicard-view-widget.h>
#define GAL_VIEW_MINICARD_TYPE (gal_view_minicard_get_type ())
#define GAL_VIEW_MINICARD(o) (GTK_CHECK_CAST ((o), GAL_VIEW_MINICARD_TYPE, GalViewMinicard))
@@ -21,13 +21,13 @@
#define GAL_IS_VIEW_MINICARD_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), GAL_VIEW_MINICARD_TYPE))
typedef struct {
- GalView base;
+ GalView base;
- char *title;
- double column_width;
+ char *title;
+ double column_width;
- EMinicardView *emv;
- guint emv_column_width_changed_id;
+ EMinicardViewWidget *emvw;
+ guint emvw_column_width_changed_id;
} GalViewMinicard;
typedef struct {
@@ -36,11 +36,11 @@ typedef struct {
/* Standard functions */
GtkType gal_view_minicard_get_type (void);
-GalView *gal_view_minicard_new (const gchar *title);
-GalView *gal_view_minicard_construct (GalViewMinicard *view,
- const gchar *title);
-void gal_view_minicard_attach (GalViewMinicard *view,
- EMinicardView *emv);
-void gal_view_minicard_detach (GalViewMinicard *view);
+GalView *gal_view_minicard_new (const gchar *title);
+GalView *gal_view_minicard_construct (GalViewMinicard *view,
+ const gchar *title);
+void gal_view_minicard_attach (GalViewMinicard *view,
+ EMinicardViewWidget *emvw);
+void gal_view_minicard_detach (GalViewMinicard *view);
#endif /* _GAL_VIEW_MINICARD_H_ */