diff options
author | Chris Toshok <toshok@ximian.com> | 2001-08-21 07:31:16 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-08-21 07:31:16 +0800 |
commit | 13c5202cd9f214fddaa95ac259544efc9cd70bd5 (patch) | |
tree | 1948849b192d02cbceafb3fd151bbaad7cdb2b9a /addressbook/ChangeLog | |
parent | 27ab1e72a98d218c20c658b35fea7af721d708ab (diff) | |
download | gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.tar gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.tar.gz gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.tar.bz2 gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.tar.lz gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.tar.xz gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.tar.zst gsoc2013-evolution-13c5202cd9f214fddaa95ac259544efc9cd70bd5.zip |
fix arg info - we're only passing 1 GTK_TYPE_POINTER arg, not 2.
2001-08-20 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-addressbook-reflow-adapter.c
(e_addressbook_reflow_adapter_class_init): fix arg info - we're
only passing 1 GTK_TYPE_POINTER arg, not 2.
* gui/widgets/e-minicard.c (e_minicard_event): lots of fixes for
DnD. For GDK_BUTTON_PRESS, we grab immediately. For
GDK_BUTTON_MOTION, we start the drag after a certain threshold,
and connect to the "drag_end" signal on our canvas so we'll know
when the drag is complete. For GDK_BUTTON_RELEASE, we release the
grab if we were dragging and get the event.
(e_minicard_drag_end): new function, just remove the pointer/gtk
grabs and disconnect.
* gui/widgets/e-minicard.h (struct _EMinicard): add "gint
drag_button"
svn path=/trunk/; revision=12331
Diffstat (limited to 'addressbook/ChangeLog')
-rw-r--r-- | addressbook/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 43164cabc1..ab64227662 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,21 @@ +2001-08-20 Chris Toshok <toshok@ximian.com> + + * gui/widgets/e-addressbook-reflow-adapter.c + (e_addressbook_reflow_adapter_class_init): fix arg info - we're + only passing 1 GTK_TYPE_POINTER arg, not 2. + + * gui/widgets/e-minicard.c (e_minicard_event): lots of fixes for + DnD. For GDK_BUTTON_PRESS, we grab immediately. For + GDK_BUTTON_MOTION, we start the drag after a certain threshold, + and connect to the "drag_end" signal on our canvas so we'll know + when the drag is complete. For GDK_BUTTON_RELEASE, we release the + grab if we were dragging and get the event. + (e_minicard_drag_end): new function, just remove the pointer/gtk + grabs and disconnect. + + * gui/widgets/e-minicard.h (struct _EMinicard): add "gint + drag_button" + 2001-08-20 JP Rosevear <jpr@ximian.com> * backend/pas/pas-backend-file.c |