Sun Jan 10 22:41:51 GMT 1999 Andy Thomas <alt@picnic.demon.co.uk> New * app/dialog_handler.c * app/dialog_handler.h Changed * app/disp_callbacks.c * app/gradient_select.c * app/tools.c * app/interface.c * app/patterns.c * app/gimpbrushlist.c * app/palette.c * app/layers_dialog.c * app/devices.c * app/errorconsole.c Can now hide/show all main dialogs using the TAB key in any window. However.... there is a bug in gtk that causes the Gimp the crash if you show and then hide a lot of dialogs (eg if you have all dialogs visible and press the TAB key repeatedly). I have email-ed an example to the gtk bug list. Also I can't seem to be able to catch the SHIFT-TAB combination (suggestions welcome ;-) so the first press of the tab hide all dialogs the second press reshows only the toolbox and the third press reshows all. Comments please if you find this behaviour non-intuitive.
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
* Copyright (C) 1999 Andy Thomas
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __DIALOG_HANDLER_H_
|
|
#define __DIALOG_HANDLER_H_
|
|
|
|
void dialog_register(GtkWidget *dialog);
|
|
void dialog_register_toolbox(GtkWidget *dialog);
|
|
void dialog_unregister(GtkWidget *dialog);
|
|
void dialog_toggle();
|
|
|
|
#endif /* __DIALOG_HANDLER_H_ */
|