2001-04-14 23:21:45 +08: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2002-05-03 20:45:22 +08:00
|
|
|
#include "gui-types.h"
|
2001-04-14 23:21:45 +08:00
|
|
|
|
2001-07-07 20:17:23 +08:00
|
|
|
#include "core/gimp.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpcontext.h"
|
|
|
|
|
2001-04-15 00:37:28 +08:00
|
|
|
#include "widgets/gimpdialogfactory.h"
|
2002-01-26 02:34:33 +08:00
|
|
|
#include "widgets/gimpitemfactory.h"
|
2001-04-15 00:37:28 +08:00
|
|
|
|
2001-04-14 23:21:45 +08:00
|
|
|
#include "dialogs.h"
|
|
|
|
#include "dialogs-constructors.h"
|
2003-01-11 01:55:53 +08:00
|
|
|
#include "menus.h"
|
2001-04-14 23:21:45 +08:00
|
|
|
|
|
|
|
|
2002-03-15 01:07:02 +08:00
|
|
|
GimpDialogFactory *global_dialog_factory = NULL;
|
|
|
|
GimpDialogFactory *global_dock_factory = NULL;
|
|
|
|
GimpDialogFactory *global_toolbox_factory = NULL;
|
2001-04-14 23:21:45 +08:00
|
|
|
|
|
|
|
|
2001-04-19 00:39:34 +08:00
|
|
|
static const GimpDialogFactoryEntry toplevel_entries[] =
|
2001-04-18 00:00:27 +08:00
|
|
|
{
|
2003-05-03 02:43:15 +08:00
|
|
|
/* foreign toplevels without constructor */
|
2003-05-04 07:02:26 +08:00
|
|
|
{ "gimp-file-open-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, TRUE, FALSE },
|
|
|
|
{ "gimp-file-save-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, TRUE, FALSE },
|
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
{ "gimp-brightness-contrast-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-color-picker-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
2003-05-19 22:21:03 +08:00
|
|
|
{ "gimp-colorize-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
2003-05-03 02:43:15 +08:00
|
|
|
{ "gimp-crop-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-curves-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-color-balance-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-hue-saturation-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-levels-tool-dialog",
|
2003-11-25 23:30:16 +08:00
|
|
|
NULL, 0, TRUE, TRUE, TRUE, FALSE },
|
2003-05-03 17:56:25 +08:00
|
|
|
{ "gimp-measure-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
2003-05-03 02:43:15 +08:00
|
|
|
{ "gimp-posterize-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-rotate-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-scale-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-shear-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
2003-06-27 22:26:04 +08:00
|
|
|
{ "gimp-text-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, TRUE, FALSE },
|
2003-05-03 02:43:15 +08:00
|
|
|
{ "gimp-threshold-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-perspective-tool-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
|
2003-05-16 19:53:50 +08:00
|
|
|
{ "gimp-toolbox-color-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-gradient-editor-color-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
{ "gimp-palette-editor-color-dialog",
|
|
|
|
NULL, 0, TRUE, TRUE, FALSE, FALSE },
|
|
|
|
|
|
|
|
{ "gimp-colormap-editor-color-dialog",
|
|
|
|
NULL, 0, FALSE, TRUE, FALSE, FALSE },
|
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* ordinary toplevels */
|
|
|
|
{ "gimp-file-new-dialog", dialogs_file_new_new,
|
|
|
|
0, FALSE, TRUE, FALSE, FALSE },
|
|
|
|
|
|
|
|
/* singleton toplevels */
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-preferences-dialog", dialogs_preferences_get,
|
2003-05-03 02:43:15 +08:00
|
|
|
0, TRUE, TRUE, FALSE, FALSE },
|
2003-06-30 21:20:17 +08:00
|
|
|
{ "gimp-module-manager-dialog", dialogs_module_browser_get,
|
2003-05-04 07:02:26 +08:00
|
|
|
0, TRUE, TRUE, TRUE, FALSE },
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-tips-dialog", dialogs_tips_get,
|
2003-05-03 02:43:15 +08:00
|
|
|
0, TRUE, FALSE, FALSE, FALSE },
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-about-dialog", dialogs_about_get,
|
2003-05-03 02:43:15 +08:00
|
|
|
0, TRUE, FALSE, FALSE, FALSE }
|
2001-04-18 00:00:27 +08:00
|
|
|
};
|
|
|
|
|
2001-04-19 00:39:34 +08:00
|
|
|
static const GimpDialogFactoryEntry dock_entries[] =
|
2001-04-18 00:00:27 +08:00
|
|
|
{
|
2003-05-03 02:43:15 +08:00
|
|
|
/* singleton dockables */
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-tool-options", dialogs_tool_options_get,
|
|
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
2003-07-07 21:37:19 +08:00
|
|
|
{ "gimp-device-status", dialogs_device_status_get,
|
|
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-error-console", dialogs_error_console_get,
|
|
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* list views */
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-image-list", dialogs_image_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-brush-list", dialogs_brush_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-pattern-list", dialogs_pattern_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-gradient-list", dialogs_gradient_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-palette-list", dialogs_palette_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
2003-03-26 06:53:10 +08:00
|
|
|
{ "gimp-font-list", dialogs_font_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-tool-list", dialogs_tool_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_SMALL, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-buffer-list", dialogs_buffer_list_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
2003-05-03 02:43:15 +08:00
|
|
|
{ "gimp-document-list", dialogs_document_list_new,
|
|
|
|
GIMP_PREVIEW_SIZE_LARGE, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-template-list", dialogs_template_list_new,
|
|
|
|
GIMP_PREVIEW_SIZE_SMALL, FALSE, FALSE, FALSE, TRUE },
|
2003-03-13 19:37:51 +08:00
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* grid views */
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-image-grid", dialogs_image_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-brush-grid", dialogs_brush_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-pattern-grid", dialogs_pattern_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-gradient-grid", dialogs_gradient_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-palette-grid", dialogs_palette_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
2003-03-26 06:53:10 +08:00
|
|
|
{ "gimp-font-grid", dialogs_font_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-tool-grid", dialogs_tool_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_SMALL, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-buffer-grid", dialogs_buffer_grid_view_new,
|
|
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
2003-05-03 02:43:15 +08:00
|
|
|
{ "gimp-document-grid", dialogs_document_grid_new,
|
|
|
|
GIMP_PREVIEW_SIZE_LARGE, FALSE, FALSE, FALSE, TRUE },
|
2003-03-13 19:37:51 +08:00
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* image related */
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-layer-list", dialogs_layer_list_view_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-channel-list", dialogs_channel_list_view_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-vectors-list", dialogs_vectors_list_view_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-indexed-palette", dialogs_indexed_palette_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
2003-11-01 10:39:34 +08:00
|
|
|
{ "gimp-histogram-editor", dialogs_histogram_editor_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-selection-editor", dialogs_selection_editor_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-undo-history", dialogs_undo_history_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* display related */
|
|
|
|
{ "gimp-navigation-view", dialogs_navigation_view_new,
|
2003-03-13 19:37:51 +08:00
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* editors */
|
|
|
|
{ "gimp-color-editor", dialogs_color_editor_new,
|
|
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
2003-04-06 03:56:38 +08:00
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
/* singleton editors */
|
2003-03-13 19:37:51 +08:00
|
|
|
{ "gimp-brush-editor", dialogs_brush_editor_get,
|
|
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-gradient-editor", dialogs_gradient_editor_get,
|
|
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-palette-editor", dialogs_palette_editor_get,
|
|
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
2001-04-18 00:00:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
2001-04-14 23:21:45 +08:00
|
|
|
void
|
2001-07-07 20:17:23 +08:00
|
|
|
dialogs_init (Gimp *gimp)
|
2001-04-14 23:21:45 +08:00
|
|
|
{
|
2001-04-18 00:00:27 +08:00
|
|
|
gint i;
|
|
|
|
|
2001-07-07 20:17:23 +08:00
|
|
|
global_dialog_factory = gimp_dialog_factory_new ("toplevel",
|
|
|
|
gimp_get_user_context (gimp),
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2001-07-02 22:58:02 +08:00
|
|
|
|
2002-03-15 01:07:02 +08:00
|
|
|
global_toolbox_factory = gimp_dialog_factory_new ("toolbox",
|
|
|
|
gimp_get_user_context (gimp),
|
2003-01-11 01:55:53 +08:00
|
|
|
global_menu_factory,
|
2002-03-15 01:07:02 +08:00
|
|
|
dialogs_toolbox_get);
|
|
|
|
|
2001-07-07 20:17:23 +08:00
|
|
|
global_dock_factory = gimp_dialog_factory_new ("dock",
|
|
|
|
gimp_get_user_context (gimp),
|
2003-01-11 01:55:53 +08:00
|
|
|
global_menu_factory,
|
2001-07-07 20:17:23 +08:00
|
|
|
dialogs_dock_new);
|
2001-07-02 22:58:02 +08:00
|
|
|
|
2001-10-23 01:27:46 +08:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (toplevel_entries); i++)
|
2001-07-02 22:58:02 +08:00
|
|
|
gimp_dialog_factory_register_entry (global_dialog_factory,
|
|
|
|
toplevel_entries[i].identifier,
|
|
|
|
toplevel_entries[i].new_func,
|
2001-11-24 00:25:01 +08:00
|
|
|
toplevel_entries[i].preview_size,
|
2001-07-02 22:58:02 +08:00
|
|
|
toplevel_entries[i].singleton,
|
|
|
|
toplevel_entries[i].session_managed,
|
2001-07-18 04:50:01 +08:00
|
|
|
toplevel_entries[i].remember_size,
|
|
|
|
toplevel_entries[i].remember_if_open);
|
2001-04-18 00:00:27 +08:00
|
|
|
|
2001-10-23 01:27:46 +08:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (dock_entries); i++)
|
2001-07-02 22:58:02 +08:00
|
|
|
gimp_dialog_factory_register_entry (global_dock_factory,
|
|
|
|
dock_entries[i].identifier,
|
|
|
|
dock_entries[i].new_func,
|
2001-11-24 00:25:01 +08:00
|
|
|
dock_entries[i].preview_size,
|
2001-07-02 22:58:02 +08:00
|
|
|
dock_entries[i].singleton,
|
|
|
|
dock_entries[i].session_managed,
|
2001-07-18 04:50:01 +08:00
|
|
|
dock_entries[i].remember_size,
|
|
|
|
dock_entries[i].remember_if_open);
|
2001-04-14 23:21:45 +08:00
|
|
|
}
|
2001-04-17 02:49:29 +08:00
|
|
|
|
|
|
|
void
|
2001-07-07 20:17:23 +08:00
|
|
|
dialogs_exit (Gimp *gimp)
|
2001-04-17 02:49:29 +08:00
|
|
|
{
|
2002-03-08 08:27:45 +08:00
|
|
|
if (global_dialog_factory)
|
|
|
|
{
|
2003-01-06 06:07:10 +08:00
|
|
|
g_object_unref (global_dialog_factory);
|
2002-03-08 08:27:45 +08:00
|
|
|
global_dialog_factory = NULL;
|
|
|
|
}
|
|
|
|
|
2002-03-15 01:07:02 +08:00
|
|
|
/* destroy the "global_toolbox_factory" _before_ destroying the
|
|
|
|
* "global_dock_factory" because the "global_toolbox_factory" owns
|
|
|
|
* dockables which were created by the "global_dock_factory". This
|
|
|
|
* way they are properly removed from the "global_dock_factory", which
|
|
|
|
* would complain about stale entries otherwise.
|
|
|
|
*/
|
|
|
|
if (global_toolbox_factory)
|
|
|
|
{
|
2003-01-06 06:07:10 +08:00
|
|
|
g_object_unref (global_toolbox_factory);
|
2002-03-15 01:07:02 +08:00
|
|
|
global_toolbox_factory = NULL;
|
|
|
|
}
|
|
|
|
|
2002-03-08 08:27:45 +08:00
|
|
|
if (global_dock_factory)
|
|
|
|
{
|
2003-01-06 06:07:10 +08:00
|
|
|
g_object_unref (global_dock_factory);
|
2002-03-08 08:27:45 +08:00
|
|
|
global_dock_factory = NULL;
|
|
|
|
}
|
2001-04-17 02:49:29 +08:00
|
|
|
}
|