diff -Bru fluxbox-0.9.11/src/Window.cc fluxbox-0.9.11-new/src/Window.cc --- fluxbox-0.9.11/src/Window.cc 2005-02-06 14:40:10.000000000 +0100 +++ fluxbox-0.9.11-new/src/Window.cc 2005-02-06 14:41:30.000000000 +0100 @@ -3758,6 +3758,11 @@ CommandRef stick_cmd(new WindowCmd(*this, &FluxboxWindow::stick)); CommandRef show_menu_cmd(new WindowCmd(*this, &FluxboxWindow::popupMenu)); + //EIKE<< + CommandRef next_client_cmd(new WindowCmd(*this, &FluxboxWindow::nextClient)); + CommandRef prev_client_cmd(new WindowCmd(*this, &FluxboxWindow::prevClient)); + //EIKE>> + // clear old buttons from frame frame().removeAllButtons(); //!! TODO: fix this ugly hack @@ -3838,6 +3838,10 @@ frame().setOnClickTitlebar(show_menu_cmd, 3); // on release with button 3 frame().setOnClickTitlebar(lower_cmd, 2); // on release with button 2 frame().setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval()); + //EIKE<< + frame().setOnClickTitlebar(next_client_cmd, 4); + frame().setOnClickTitlebar(prev_client_cmd, 5); + //EIKE>> // end setup frame