2003-03-16 Michael Natterer <mitch@gimp.org> Added GtkTreeView versions of layers/channels/vectors: * app/core/core-enums.[ch]: renamed GIMP_UNDO_GROUP_LAYER_PROPERTIES to GIMP_UNDO_GROUP_ITEM_PROPERTIES. * app/core/gimpcontainer.c (gimp_container_reorder): don't try to reorder containers with num_children == 1. * app/core/gimpmarshal.list: added VOID: STRING, UINT marshaller. * app/widgets/Makefile.am * app/widgets/widgets-types.h * app/widgets/gimpchanneltreeview.[ch] * app/widgets/gimpdrawabletreeview.[ch] * app/widgets/gimpitemtreeview.[ch] * app/widgets/gimplayertreeview.[ch] * app/widgets/gimpvectorstreeview.[ch]: new widgets. * app/widgets/gimpcellrenderertoggle.c: draw the frame only if the cell is prelit. * app/widgets/gimpcellrendererviewable.[ch]: added "clicked" signal, unref the renderer in finalize(). Set the renderer's border color to black if the cell is not selected (a hack that saves tons of code in GimpLayerTreeView). * app/widgets/gimpcomponenteditor.c: no need to gtk_list_store_set() stuff we just got from the store. * app/widgets/gimpcontainertreeview.[ch]: added lots of state used by the new subclasses to the GimpContainerTreeView struct. Create the GtkListStore/GtkTreeView in GObject::constructor() and only collect parameters in init() so subclasses can modify store/view creation. Do most of the button_press_event stuff manually and return TRUE from the handler. * app/widgets/gimpcontainerview.c: cleanup. * app/widgets/gimpitemlistview.h * app/widgets/gimpvectorslistview.h: temp hacks before they die. * app/widgets/gimppreviewrenderer.[ch]: added gimp_preview_renderer_update_idle() which idle-emits "update" without invalidating. * app/gui/dialogs-constructors.[ch] * app/gui/dialogs.c: added constructors for the new dialogs. * app/gui/channels-commands.c * app/gui/channels-menu.c * app/gui/layers-commands.c * app/gui/layers-menu.c * app/gui/vectors-commands.c * app/gui/vectors-menu.c: accept tree views as callback data.
221 lines
8.3 KiB
C
221 lines
8.3 KiB
C
/* 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>
|
|
|
|
#include "gui-types.h"
|
|
|
|
#include "core/gimp.h"
|
|
#include "core/gimpcontext.h"
|
|
|
|
#include "widgets/gimpdialogfactory.h"
|
|
#include "widgets/gimpitemfactory.h"
|
|
|
|
#include "dialogs.h"
|
|
#include "dialogs-constructors.h"
|
|
#include "menus.h"
|
|
|
|
|
|
GimpDialogFactory *global_dialog_factory = NULL;
|
|
GimpDialogFactory *global_dock_factory = NULL;
|
|
GimpDialogFactory *global_toolbox_factory = NULL;
|
|
|
|
|
|
static const GimpDialogFactoryEntry toplevel_entries[] =
|
|
{
|
|
{ "gimp-device-status-dialog", dialogs_device_status_get,
|
|
0, TRUE, TRUE, FALSE, TRUE },
|
|
{ "gimp-preferences-dialog", dialogs_preferences_get,
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
{ "gimp-module-browser-dialog", dialogs_module_browser_get,
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
{ "gimp-display-filters-dialog", dialogs_display_filters_get,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-tips-dialog", dialogs_tips_get,
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
{ "gimp-about-dialog", dialogs_about_get,
|
|
0, TRUE, FALSE, FALSE, TRUE }
|
|
};
|
|
|
|
static const GimpDialogFactoryEntry dock_entries[] =
|
|
{
|
|
{ "gimp-tool-options", dialogs_tool_options_get,
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
{ "gimp-error-console", dialogs_error_console_get,
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
|
|
{ "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 },
|
|
{ "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 },
|
|
|
|
{ "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 },
|
|
{ "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 },
|
|
|
|
{ "gimp-image-tree", dialogs_image_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-brush-tree", dialogs_brush_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-pattern-tree", dialogs_pattern_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-gradient-tree", dialogs_gradient_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-palette-tree", dialogs_palette_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-tool-tree", dialogs_tool_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_SMALL, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-buffer-tree", dialogs_buffer_tree_view_new,
|
|
GIMP_PREVIEW_SIZE_MEDIUM, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-layer-list", dialogs_layer_list_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-layer-tree", dialogs_layer_tree_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-channel-list", dialogs_channel_list_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-channel-tree", dialogs_channel_tree_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-vectors-list", dialogs_vectors_list_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-vectors-tree", dialogs_vectors_tree_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-path-list", dialogs_path_list_view_new,
|
|
0, TRUE, FALSE, FALSE, TRUE },
|
|
{ "gimp-indexed-palette", dialogs_indexed_palette_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-selection-editor", dialogs_selection_editor_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-undo-history", dialogs_undo_history_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-color-editor", dialogs_color_editor_new,
|
|
0, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "gimp-document-list", dialogs_document_list_new,
|
|
GIMP_PREVIEW_SIZE_LARGE, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-document-grid", dialogs_document_grid_new,
|
|
GIMP_PREVIEW_SIZE_LARGE, FALSE, FALSE, FALSE, TRUE },
|
|
{ "gimp-document-tree", dialogs_document_tree_new,
|
|
GIMP_PREVIEW_SIZE_LARGE, FALSE, FALSE, FALSE, TRUE },
|
|
|
|
{ "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 },
|
|
|
|
{ "gimp-navigation-view", dialogs_navigation_view_new,
|
|
0, FALSE, FALSE, FALSE, TRUE }
|
|
};
|
|
|
|
|
|
/* public functions */
|
|
|
|
void
|
|
dialogs_init (Gimp *gimp)
|
|
{
|
|
gint i;
|
|
|
|
global_dialog_factory = gimp_dialog_factory_new ("toplevel",
|
|
gimp_get_user_context (gimp),
|
|
NULL,
|
|
NULL);
|
|
|
|
global_toolbox_factory = gimp_dialog_factory_new ("toolbox",
|
|
gimp_get_user_context (gimp),
|
|
global_menu_factory,
|
|
dialogs_toolbox_get);
|
|
|
|
global_dock_factory = gimp_dialog_factory_new ("dock",
|
|
gimp_get_user_context (gimp),
|
|
global_menu_factory,
|
|
dialogs_dock_new);
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (toplevel_entries); i++)
|
|
gimp_dialog_factory_register_entry (global_dialog_factory,
|
|
toplevel_entries[i].identifier,
|
|
toplevel_entries[i].new_func,
|
|
toplevel_entries[i].preview_size,
|
|
toplevel_entries[i].singleton,
|
|
toplevel_entries[i].session_managed,
|
|
toplevel_entries[i].remember_size,
|
|
toplevel_entries[i].remember_if_open);
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (dock_entries); i++)
|
|
gimp_dialog_factory_register_entry (global_dock_factory,
|
|
dock_entries[i].identifier,
|
|
dock_entries[i].new_func,
|
|
dock_entries[i].preview_size,
|
|
dock_entries[i].singleton,
|
|
dock_entries[i].session_managed,
|
|
dock_entries[i].remember_size,
|
|
dock_entries[i].remember_if_open);
|
|
}
|
|
|
|
void
|
|
dialogs_exit (Gimp *gimp)
|
|
{
|
|
if (global_dialog_factory)
|
|
{
|
|
g_object_unref (global_dialog_factory);
|
|
global_dialog_factory = NULL;
|
|
}
|
|
|
|
/* 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)
|
|
{
|
|
g_object_unref (global_toolbox_factory);
|
|
global_toolbox_factory = NULL;
|
|
}
|
|
|
|
if (global_dock_factory)
|
|
{
|
|
g_object_unref (global_dock_factory);
|
|
global_dock_factory = NULL;
|
|
}
|
|
}
|