Re: Accelerators for GtkNotebook to switch between pages

2018-02-07 Thread Alexander Koeppe
Oh no sorry. It not working. I had just defined the t accelerator in the activate function of the app. If I change it to e.g. b the accelerator doesn't work. Am 07.02.2018 um 23:19 schrieb Alexander Koeppe: > Hi infirit, > > crazy. I rebuilt the relevant parts in a demo app and there it's

Re: Accelerators for GtkNotebook to switch between pages

2018-02-07 Thread Alexander Koeppe
Hi infirit, crazy. I rebuilt the relevant parts in a demo app and there it's working as expected. *argh*. For completeness here's what I mean. The code that creates my GtkNotebook:   /* notebook */   notebook = gtk_notebook_new();   gtk_notebook_set_tab_pos(GTK_NOTEBOOK(notebook),

Re: Accelerators for GtkNotebook to switch between pages

2018-02-03 Thread infirit
Op 02/02/2018 om 10:33 PM schreef Alexander Koeppe: > I'm looking for a way to switch between the pages of a GtkNotebook using > e.g. Left and Right. What have you tried so far, do you have a basic example, what part did you get stuck on? > I searched the documentation from different angels but

Accelerators for GtkNotebook to switch between pages

2018-02-02 Thread Alexander Koeppe
Hi list, I'm looking for a way to switch between the pages of a GtkNotebook using e.g. Left and Right. I searched the documentation from different angels but didn't found a obvious way how to accomplish that. Does somebody have a hint for me pointing into the right direction? Thank you