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 */
|
|
|
|
|
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_device_status_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_preferences_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_module_browser_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_undo_history_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_display_filters_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_tips_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_about_get (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
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,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_dock_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-21 17:38:56 -07:00
|
|
|
|
2002-03-14 09:07:02 -08:00
|
|
|
|
|
|
|
|
/* dockables */
|
|
|
|
|
|
2002-03-10 07:05:58 -08:00
|
|
|
GtkWidget * dialogs_tool_options_get (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
GtkWidget * dialogs_error_console_get (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_image_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_brush_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_pattern_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_gradient_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_palette_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_tool_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-06-26 05:09:43 -07:00
|
|
|
GtkWidget * dialogs_buffer_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
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,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_brush_grid_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_pattern_grid_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_gradient_grid_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_palette_grid_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_tool_grid_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-06-26 05:09:43 -07:00
|
|
|
GtkWidget * dialogs_buffer_grid_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
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,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-23 09:58:18 -07:00
|
|
|
GtkWidget * dialogs_channel_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2002-02-25 09:58:50 -08:00
|
|
|
GtkWidget * dialogs_vectors_list_view_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-05-11 10:02:30 -07:00
|
|
|
GtkWidget * dialogs_path_list_view_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-07-15 07:32:44 -07:00
|
|
|
GtkWidget * dialogs_indexed_palette_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2002-08-22 05:49:01 -07:00
|
|
|
GtkWidget * dialogs_selection_editor_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
2001-04-19 19:30:43 -07:00
|
|
|
|
2002-11-04 16:02:56 -08:00
|
|
|
GtkWidget * dialogs_color_editor_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
|
2001-08-11 00:47:35 -07:00
|
|
|
GtkWidget * dialogs_document_history_new (GimpDialogFactory *factory,
|
2001-11-23 08:25:01 -08:00
|
|
|
GimpContext *context,
|
|
|
|
|
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,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
void dialogs_edit_brush_func (GimpData *data);
|
|
|
|
|
|
|
|
|
|
GtkWidget * dialogs_gradient_editor_get (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
void dialogs_edit_gradient_func (GimpData *data);
|
|
|
|
|
|
|
|
|
|
GtkWidget * dialogs_palette_editor_get (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
void dialogs_edit_palette_func (GimpData *data);
|
|
|
|
|
|
2002-05-07 09:23:14 -07:00
|
|
|
GtkWidget * dialogs_navigation_view_new (GimpDialogFactory *factory,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint preview_size);
|
|
|
|
|
|
2001-04-14 08:21:45 -07:00
|
|
|
|
|
|
|
|
#endif /* __DIALOGS_CONSTRUCTORS_H__ */
|