2001-04-14 08:21:45 -07:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
|
|
|
|
* 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 __DIALOGS_CONSTRUCTORS_H__
|
|
|
|
|
#define __DIALOGS_CONSTRUCTORS_H__
|
|
|
|
|
|
|
|
|
|
|
2002-03-07 16:27:45 -08:00
|
|
|
/* toplevel dialogs */
|
|
|
|
|
|
2004-09-13 08:15:23 -07:00
|
|
|
GtkWidget * dialogs_image_new_new (GimpDialogFactory *factory,
|
2004-09-13 09:01:52 -07:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
GtkWidget * dialogs_file_open_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-05-02 11:43:15 -07:00
|
|
|
gint preview_size);
|
2004-09-09 02:47:33 -07:00
|
|
|
GtkWidget * dialogs_file_open_location_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2004-09-09 02:47:33 -07:00
|
|
|
gint preview_size);
|
2004-09-13 09:37:01 -07:00
|
|
|
GtkWidget * dialogs_file_save_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_preferences_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2004-09-13 08:15:23 -07:00
|
|
|
GtkWidget * dialogs_module_get (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_tips_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_about_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2004-08-25 10:58:52 -07:00
|
|
|
GtkWidget * dialogs_error_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2004-08-25 10:58:52 -07:00
|
|
|
gint preview_size);
|
2004-09-13 16:09:10 -07:00
|
|
|
GtkWidget * dialogs_quit_get (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-17 09:00:27 -07:00
|
|
|
|
2002-02-03 04:10:23 -08:00
|
|
|
|
2002-03-14 09:07:02 -08:00
|
|
|
/* docks */
|
2001-07-15 07:32:44 -07:00
|
|
|
|
2002-03-14 09:07:02 -08:00
|
|
|
GtkWidget * dialogs_toolbox_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-03-14 09:07:02 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_dock_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-21 17:38:56 -07:00
|
|
|
|
2002-03-14 09:07:02 -08:00
|
|
|
|
|
|
|
|
/* dockables */
|
|
|
|
|
|
2004-09-26 11:41:29 -07:00
|
|
|
GtkWidget * dialogs_dockable_constructor (GimpDialogFactory *factory,
|
|
|
|
|
GimpDialogFactoryEntry *entry,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
|
2002-03-10 07:05:58 -08:00
|
|
|
GtkWidget * dialogs_tool_options_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-03-10 07:05:58 -08:00
|
|
|
gint preview_size);
|
2003-07-07 06:37:19 -07:00
|
|
|
GtkWidget * dialogs_device_status_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-07-07 06:37:19 -07:00
|
|
|
gint preview_size);
|
2002-03-10 07:05:58 -08:00
|
|
|
GtkWidget * dialogs_error_console_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-03-10 07:05:58 -08:00
|
|
|
gint preview_size);
|
|
|
|
|
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_image_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_brush_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_pattern_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_gradient_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_palette_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2003-03-25 14:53:10 -08:00
|
|
|
GtkWidget * dialogs_font_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-03-25 14:53:10 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_tool_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-06-26 05:09:43 -07:00
|
|
|
GtkWidget * dialogs_buffer_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2004-09-27 02:38:32 -07:00
|
|
|
GtkWidget * dialogs_document_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-07-08 08:07:56 -07:00
|
|
|
gint preview_size);
|
2004-09-27 02:38:32 -07:00
|
|
|
GtkWidget * dialogs_template_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-07-08 08:07:56 -07:00
|
|
|
gint preview_size);
|
2001-04-14 08:21:45 -07:00
|
|
|
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_image_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_brush_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_pattern_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_gradient_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_palette_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2003-03-25 14:53:10 -08:00
|
|
|
GtkWidget * dialogs_font_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-03-25 14:53:10 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_tool_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-06-26 05:09:43 -07:00
|
|
|
GtkWidget * dialogs_buffer_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2004-09-27 02:38:32 -07:00
|
|
|
GtkWidget * dialogs_document_grid_view_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
GtkWidget * dialogs_template_grid_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-07-08 08:07:56 -07:00
|
|
|
gint preview_size);
|
2001-04-14 08:21:45 -07:00
|
|
|
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_layer_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_channel_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2002-02-25 09:58:50 -08:00
|
|
|
GtkWidget * dialogs_vectors_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-02-25 09:58:50 -08:00
|
|
|
gint preview_size);
|
2001-05-11 10:02:30 -07:00
|
|
|
GtkWidget * dialogs_path_list_view_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2004-09-26 11:41:29 -07:00
|
|
|
GtkWidget * dialogs_colormap_editor_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2003-10-31 18:39:34 -08:00
|
|
|
GtkWidget * dialogs_histogram_editor_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2002-08-22 05:49:01 -07:00
|
|
|
GtkWidget * dialogs_selection_editor_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-08-22 05:49:01 -07:00
|
|
|
gint preview_size);
|
2004-09-26 11:41:29 -07:00
|
|
|
GtkWidget * dialogs_undo_editor_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-02-20 04:47:42 -08:00
|
|
|
gint preview_size);
|
2001-04-19 19:30:43 -07:00
|
|
|
|
2004-09-26 11:41:29 -07:00
|
|
|
GtkWidget * dialogs_navigation_editor_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2003-02-26 08:17:10 -08:00
|
|
|
gint preview_size);
|
2003-04-05 11:56:38 -08:00
|
|
|
|
2003-07-08 08:07:56 -07:00
|
|
|
GtkWidget * dialogs_color_editor_new (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2001-11-23 08:25:01 -08:00
|
|
|
gint preview_size);
|
2001-08-11 00:47:35 -07:00
|
|
|
|
2002-03-07 16:27:45 -08:00
|
|
|
GtkWidget * dialogs_brush_editor_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-03-07 16:27:45 -08:00
|
|
|
gint preview_size);
|
|
|
|
|
GtkWidget * dialogs_gradient_editor_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-03-07 16:27:45 -08:00
|
|
|
gint preview_size);
|
|
|
|
|
GtkWidget * dialogs_palette_editor_get (GimpDialogFactory *factory,
|
2004-09-13 08:15:23 -07:00
|
|
|
GimpContext *context,
|
2002-03-07 16:27:45 -08:00
|
|
|
gint preview_size);
|
|
|
|
|
|
2001-04-14 08:21:45 -07:00
|
|
|
|
|
|
|
|
#endif /* __DIALOGS_CONSTRUCTORS_H__ */
|