
2001-04-20 Michael Natterer <mitch@gimp.org> * app/Makefile.am * app/layers_dialogP.h: removed. * app/gimpui.[ch]: new function gimp_menu_position(). * app/disp_callbacks.c * app/interface.c * app/gui/layers-dialog.c: popup the image and layers menu with gtk_item_factory_popup_with_data() instead of gtk_menu_popup() and pass the GimpImage we're operating on as data. For accelerators, which are invoked without context, we catch key press events and attach the context to the GtkItemFactory. * app/gui/Makefile.am * app/gui/layers-commands.[ch]: common layer callbacks (instead of separate ones in commands.c and layers-dialog.c * app/gui/commands.[ch] * app/gui/layers-dialog.[ch]: removed the menu callbacks here. * app/gdisplay.h * app/lc_dialog.c * app/gui/channels-dialog.c * app/gui/layer-select.c * app/gui/menus.c * po/POTFILES.in: changed accordingly.
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpui.h
|
|
* Copyright (C) 1999 Michael Natterer <mitch@gimp.org>
|
|
*
|
|
* 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 __GIMP_UI_H__
|
|
#define __GIMP_UI_H__
|
|
|
|
|
|
/* a simple message box */
|
|
|
|
void gimp_message_box (gchar *message,
|
|
GtkCallback callback,
|
|
gpointer data);
|
|
|
|
void gimp_dialog_hide (GtkWidget *dialog);
|
|
|
|
void gimp_menu_position (GtkMenu *menu,
|
|
gint *x,
|
|
gint *y);
|
|
|
|
|
|
#endif /* __GIMP_UI_H__ */
|