2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-10-23 22:02:53 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-10-23 22:02:53 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-10-23 22:02:53 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-10-23 22:02:53 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2008-10-10 04:24:04 +08:00
|
|
|
#include <gegl.h>
|
2004-10-23 22:02:53 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "dialogs-types.h"
|
|
|
|
|
2006-05-15 00:24:31 +08:00
|
|
|
#include "core/gimpchannel.h"
|
|
|
|
#include "core/gimpcontainer.h"
|
2006-09-01 19:26:54 +08:00
|
|
|
#include "core/gimpcontext.h"
|
2006-05-15 00:24:31 +08:00
|
|
|
#include "core/gimpimage.h"
|
2004-10-23 22:02:53 +08:00
|
|
|
#include "core/gimplayer.h"
|
|
|
|
|
2006-05-15 00:24:31 +08:00
|
|
|
#include "widgets/gimpcontainercombobox.h"
|
|
|
|
#include "widgets/gimpcontainerview.h"
|
2004-10-23 22:02:53 +08:00
|
|
|
#include "widgets/gimphelp-ids.h"
|
|
|
|
#include "widgets/gimpviewabledialog.h"
|
2006-05-15 00:24:31 +08:00
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
2004-10-23 22:02:53 +08:00
|
|
|
|
|
|
|
#include "layer-add-mask-dialog.h"
|
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
2006-05-15 00:24:31 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
|
|
|
static gboolean layer_add_mask_dialog_channel_selected (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data,
|
|
|
|
LayerAddMaskDialog *dialog);
|
2007-05-24 04:08:27 +08:00
|
|
|
static void layer_add_mask_dialog_free (LayerAddMaskDialog *dialog);
|
2006-05-15 00:24:31 +08:00
|
|
|
|
|
|
|
|
2004-10-23 22:02:53 +08:00
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
LayerAddMaskDialog *
|
|
|
|
layer_add_mask_dialog_new (GimpLayer *layer,
|
2006-09-01 19:26:54 +08:00
|
|
|
GimpContext *context,
|
2004-10-23 22:02:53 +08:00
|
|
|
GtkWidget *parent,
|
|
|
|
GimpAddMaskType add_mask_type,
|
|
|
|
gboolean invert)
|
|
|
|
{
|
|
|
|
LayerAddMaskDialog *dialog;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *frame;
|
2006-05-15 00:24:31 +08:00
|
|
|
GtkWidget *combo;
|
2004-10-23 22:02:53 +08:00
|
|
|
GtkWidget *button;
|
2009-08-02 19:03:52 +08:00
|
|
|
GimpImage *image;
|
2006-05-15 00:24:31 +08:00
|
|
|
GimpChannel *channel;
|
2004-10-23 22:02:53 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_LAYER (layer), NULL);
|
|
|
|
g_return_val_if_fail (GTK_IS_WIDGET (parent), NULL);
|
2006-10-15 02:15:41 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2004-10-23 22:02:53 +08:00
|
|
|
|
2007-05-24 04:08:27 +08:00
|
|
|
dialog = g_slice_new0 (LayerAddMaskDialog);
|
2004-10-23 22:02:53 +08:00
|
|
|
|
|
|
|
dialog->layer = layer;
|
|
|
|
dialog->add_mask_type = add_mask_type;
|
|
|
|
dialog->invert = invert;
|
|
|
|
|
|
|
|
dialog->dialog =
|
2006-09-01 19:26:54 +08:00
|
|
|
gimp_viewable_dialog_new (GIMP_VIEWABLE (layer), context,
|
2004-10-23 22:02:53 +08:00
|
|
|
_("Add Layer Mask"), "gimp-layer-add-mask",
|
|
|
|
GIMP_STOCK_LAYER_MASK,
|
|
|
|
_("Add a Mask to the Layer"),
|
|
|
|
parent,
|
|
|
|
gimp_standard_help_func,
|
|
|
|
GIMP_HELP_LAYER_MASK_ADD,
|
|
|
|
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
2005-09-02 20:09:32 +08:00
|
|
|
GTK_STOCK_ADD, GTK_RESPONSE_OK,
|
2004-10-23 22:02:53 +08:00
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
2004-10-24 03:01:26 +08:00
|
|
|
gtk_window_set_resizable (GTK_WINDOW (dialog->dialog), FALSE);
|
|
|
|
|
2004-10-23 22:02:53 +08:00
|
|
|
g_object_weak_ref (G_OBJECT (dialog->dialog),
|
2007-05-24 04:08:27 +08:00
|
|
|
(GWeakNotify) layer_add_mask_dialog_free, dialog);
|
2004-10-23 22:02:53 +08:00
|
|
|
|
2005-02-09 04:40:33 +08:00
|
|
|
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog->dialog),
|
|
|
|
GTK_RESPONSE_OK,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1);
|
|
|
|
|
2011-09-30 17:29:11 +08:00
|
|
|
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
|
2004-10-23 22:02:53 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
|
2010-10-30 20:56:00 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog->dialog))),
|
|
|
|
vbox, TRUE, TRUE, 0);
|
2004-10-23 22:02:53 +08:00
|
|
|
gtk_widget_show (vbox);
|
|
|
|
|
|
|
|
frame =
|
|
|
|
gimp_enum_radio_frame_new (GIMP_TYPE_ADD_MASK_TYPE,
|
|
|
|
gtk_label_new (_("Initialize Layer Mask to:")),
|
|
|
|
G_CALLBACK (gimp_radio_button_update),
|
|
|
|
&dialog->add_mask_type,
|
|
|
|
&button);
|
|
|
|
gimp_int_radio_group_set_active (GTK_RADIO_BUTTON (button),
|
|
|
|
dialog->add_mask_type);
|
|
|
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2009-08-02 19:03:52 +08:00
|
|
|
image = gimp_item_get_image (GIMP_ITEM (layer));
|
|
|
|
|
|
|
|
combo = gimp_container_combo_box_new (gimp_image_get_channels (image),
|
2006-09-01 19:26:54 +08:00
|
|
|
context,
|
2006-05-15 00:24:31 +08:00
|
|
|
GIMP_VIEW_SIZE_SMALL, 1);
|
2008-10-29 01:40:32 +08:00
|
|
|
gimp_enum_radio_frame_add (GTK_FRAME (frame), combo,
|
2014-04-30 02:55:08 +08:00
|
|
|
GIMP_ADD_MASK_CHANNEL, TRUE);
|
2006-05-15 00:24:31 +08:00
|
|
|
gtk_widget_show (combo);
|
|
|
|
|
|
|
|
g_signal_connect (combo, "select-item",
|
|
|
|
G_CALLBACK (layer_add_mask_dialog_channel_selected),
|
|
|
|
dialog);
|
|
|
|
|
2009-08-02 19:03:52 +08:00
|
|
|
channel = gimp_image_get_active_channel (image);
|
2006-05-15 00:24:31 +08:00
|
|
|
|
|
|
|
if (! channel)
|
2009-08-02 19:03:52 +08:00
|
|
|
channel = GIMP_CHANNEL (gimp_container_get_first_child (gimp_image_get_channels (image)));
|
2006-05-15 00:24:31 +08:00
|
|
|
|
|
|
|
gimp_container_view_select_item (GIMP_CONTAINER_VIEW (combo),
|
|
|
|
GIMP_VIEWABLE (channel));
|
|
|
|
|
2005-08-23 08:18:08 +08:00
|
|
|
button = gtk_check_button_new_with_mnemonic (_("In_vert mask"));
|
2004-10-23 22:02:53 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), dialog->invert);
|
|
|
|
gtk_box_pack_end (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
|
|
|
|
|
|
|
g_signal_connect (button, "toggled",
|
|
|
|
G_CALLBACK (gimp_toggle_button_update),
|
|
|
|
&dialog->invert);
|
|
|
|
|
|
|
|
return dialog;
|
|
|
|
}
|
2006-05-15 00:24:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
layer_add_mask_dialog_channel_selected (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data,
|
|
|
|
LayerAddMaskDialog *dialog)
|
|
|
|
{
|
|
|
|
dialog->channel = GIMP_CHANNEL (viewable);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-05-24 04:08:27 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
layer_add_mask_dialog_free (LayerAddMaskDialog *dialog)
|
|
|
|
{
|
|
|
|
g_slice_free (LayerAddMaskDialog, dialog);
|
|
|
|
}
|