gtk_list_motion_notify



Hi !

I'm trying to implement a "normal" listbox behaviour, e.g. selecting
a region of list items by moving the mouse with button 1 pressed.
I just noticed that there IS a corresponding function in gtklist.c,
but all it does at the moment is a "g_print" :

----------------------------
static gint
gtk_list_motion_notify (GtkWidget      *widget,
                        GdkEventMotion *event)
{
  g_return_val_if_fail (widget != NULL, FALSE);
  g_return_val_if_fail (GTK_IS_LIST (widget), FALSE);
  g_return_val_if_fail (event != NULL, FALSE);

  g_print ("gtk_list_motion_notify\n");

  return FALSE;
}
----------------------------

Has someone already filled the gap ? ;-)

Ciao,
  Stefan



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]