comparison src/gtkconv.c @ 4485:f2c1cc22251e

[gaim-migrate @ 4760] Sean says we're in violation of US patent #5546528. Sorry guys, no more tab dragging. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 31 Jan 2003 00:50:34 +0000
parents fa2d74e20a89
children c3281e2af992
comparison
equal deleted inserted replaced
4484:3502a25bad47 4485:f2c1cc22251e
3195 3195
3196 g_signal_connect_after(G_OBJECT(gtkwin->notebook), "switch_page", 3196 g_signal_connect_after(G_OBJECT(gtkwin->notebook), "switch_page",
3197 G_CALLBACK(switch_conv_cb), win); 3197 G_CALLBACK(switch_conv_cb), win);
3198 3198
3199 /* Setup the tab drag and drop signals. */ 3199 /* Setup the tab drag and drop signals. */
3200 gtk_widget_add_events(gtkwin->notebook,
3201 GDK_BUTTON1_MOTION_MASK | GDK_LEAVE_NOTIFY_MASK);
3202 g_signal_connect(G_OBJECT(gtkwin->notebook), "button_press_event",
3203 G_CALLBACK(notebook_press_cb), win);
3204 g_signal_connect(G_OBJECT(gtkwin->notebook), "button_release_event",
3205 G_CALLBACK(notebook_release_cb), win);
3206
3207 testidea = gtk_vbox_new(FALSE, 0); 3200 testidea = gtk_vbox_new(FALSE, 0);
3208 3201
3209 /* Setup the menubar. */ 3202 /* Setup the menubar. */
3210 menubar = setup_menubar(win); 3203 menubar = setup_menubar(win);
3211 gtk_box_pack_start(GTK_BOX(testidea), menubar, FALSE, TRUE, 0); 3204 gtk_box_pack_start(GTK_BOX(testidea), menubar, FALSE, TRUE, 0);