aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-minicard-view-widget.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/e-minicard-view-widget.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/e-minicard-view-widget.h')
-rw-r--r--addressbook/gui/widgets/e-minicard-view-widget.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-minicard-view-widget.h b/addressbook/gui/widgets/e-minicard-view-widget.h
index 4cf3a72d93..7df63c26e4 100644
--- a/addressbook/gui/widgets/e-minicard-view-widget.h
+++ b/addressbook/gui/widgets/e-minicard-view-widget.h
@@ -51,12 +51,15 @@ struct _EMinicardViewWidget
EBook *book;
char *query;
guint editable : 1;
+
+ double column_width;
};
struct _EMinicardViewWidgetClass
{
ECanvasClass parent_class;
- void (*selection_change) (EMinicardViewWidget*);
+ void (*selection_change) (EMinicardViewWidget *emvw);
+ void (*column_width_changed) (EMinicardViewWidget *emvw, double width);
};
GtkType e_minicard_view_widget_get_type (void);