After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 315440 - Problem with gtkpaned inside gtknotebook(mouse wheel over the handler)
Problem with gtkpaned inside gtknotebook(mouse wheel over the handler)
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
2.6.x
Other All
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2005-09-07 11:44 UTC by Mateusz Stefek
Modified: 2006-12-29 19:14 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch (679 bytes, patch)
2006-12-29 16:03 UTC, Carlos Garnacho
committed Details | Review

Description Mateusz Stefek 2005-09-07 11:44:05 UTC
Please describe the problem:

Hello. We have found anoying problem which occurs when a GtkPaned is
inserted as a page to a GtkNotebook.
When you move your mouse over that handle which is used to adjust
division in GtkPaned and you use your mouse wheel then the page is
changed in the notebook.
Even if this looks ok for someone, this is a major problem for us.
Because we hide pages on the GtkNotebook from users and we don't want to
allow user to change pages when he wants. Of course we use
gtk_notebook_set_show_tabs(notebook, FALSE).
This is a way we implement different screens in Freeciv.

Can anyone help us?
I've attached a simple program, which demonstrates the problem.

--
Freeciv developers

Steps to reproduce:
1.
Compile the following program:
#include <gtk/gtk.h>

int main(int argc, char* argv[])
{
  GtkWidget* window, *notebook, *paned;

  gtk_init(&argc, &argv);  

  window = gtk_window_new(GTK_WINDOW_TOPLEVEL);

  notebook = gtk_notebook_new();
  gtk_container_add(GTK_CONTAINER(window), notebook);
  
  gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
                           gtk_label_new("Page 1"),
			   gtk_label_new("Page 1"));
			   
  paned = gtk_vpaned_new();
  gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
                            paned,
			    gtk_label_new("Page 2"));
  gtk_paned_add1(GTK_PANED(paned), gtk_label_new("Top"));
  gtk_paned_add2(GTK_PANED(paned), gtk_label_new("Bottom"));

  gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
                           gtk_label_new("Page 3"),
			   gtk_label_new("Page 3"));


  gtk_widget_show_all(window);
  gtk_main();
}

2. Run it
3. Switch to the second page
4. Place your mouse over the handler in GtkPaned
5. Use your mouse

Actual results:
The page is changed in GtkNotebook

Expected results:
That the page isn't changed

Does this happen every time?
Yes

Other information:
Comment 1 Vasco Alexandre da Silva Costa 2005-10-09 12:04:24 UTC
This should work around the bug by stopping the emission of the mousewheel
scroll events to the GtkNotebook:

  /* stop mouse wheel notebook page switching. */
  g_signal_connect(notebook, "scroll_event",
                  G_CALLBACK(gtk_true), NULL);

Comment 2 Matthias Clasen 2006-12-29 07:17:21 UTC
GtkNotebook already tries to prevent this from happening in gtk_notebook_scroll()


  /* ignore scroll events from the content of the page */
  if (!originator || gtk_widget_is_ancestor (originator, child))
    return FALSE;


We need to debug why this isn't working. 
Comment 3 Carlos Garnacho 2006-12-29 16:03:03 UTC
Created attachment 79034 [details] [review]
patch

The problem only happens if the Gtk[HV]Paned is a page widget, and not a child of it, the patch adds this check.
Comment 4 Matthias Clasen 2006-12-29 18:46:25 UTC
Ah right, thanks. Please commit to both branches.
Comment 5 Carlos Garnacho 2006-12-29 19:14:38 UTC
Committed to HEAD and gtk-2-10 :),

2006-12-29  Carlos Garnacho  <carlosg@gnome.org>

        * gtk/gtknotebook.c (gtk_notebook_scroll): return if the widget that
        originally received the event is a notebook page. (#315440, reported
        by Mateusz Stefek)