1999-07-06 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/airbrush.c
* app/blend.c
* app/bucket_fill.c
* app/clone.c
* app/convolve.c
* app/dodgeburn.c
* app/eraser.c
* app/ink.c
* app/paintbrush.c
* app/pencil.c
* app/smudge.c: get opacity/paint mode from the current context
(currently always the user context).
* app/gimage_mask.c: the "stroke" command uses the paintbrush's
settings if the current context is the user context and we are in
per-tool paint options mode.
* app/context_manager.[ch]
* app/paint_options.h
* app/preferences_dialog.c
* app/tool_options.c
* app/tools.c: moved the global/per-tool paint options switching
to the context manager. The tool options themselves only contain
the widgets for them now. This should fix the segfaults happening
in per-tool mode.
Removed the disclaimer from the prefs. dlg. as it seems to work
now. The impl. in the context manager however is still a hack.
* app/brush_select.c
* app/brushes_cmds.c
* tools/pdbgen/pdb/brushes.pdb: same as above.
* app/lc_dialog.c: minimal code reduction. No functionality changed.
67 lines
2.1 KiB
C
67 lines
2.1 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995-1999 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 __PAINT_OPTIONS_H__
|
|
#define __PAINT_OPTIONS_H__
|
|
|
|
#include "buildmenu.h"
|
|
#include "tools.h"
|
|
#include "tool_options.h"
|
|
|
|
|
|
/* the paint options structures */
|
|
typedef struct _PaintOptions PaintOptions;
|
|
struct _PaintOptions
|
|
{
|
|
ToolOptions tool_options;
|
|
|
|
/* vbox for the common paint options */
|
|
GtkWidget *paint_vbox;
|
|
|
|
/* a widget to be shown if we are in global mode */
|
|
GtkWidget *global;
|
|
|
|
/* options used by all paint tools */
|
|
GtkObject *opacity_w;
|
|
|
|
GtkWidget *paint_mode_w;
|
|
};
|
|
|
|
|
|
/* paint tool options functions */
|
|
PaintOptions *paint_options_new (ToolType tool_type,
|
|
ToolOptionsResetFunc reset_func);
|
|
|
|
void paint_options_reset (PaintOptions *options);
|
|
|
|
/* to be used by "derived" paint options only */
|
|
void paint_options_init (PaintOptions *options,
|
|
ToolType tool_type,
|
|
ToolOptionsResetFunc reset_func);
|
|
|
|
|
|
/* functions for the global paint options */
|
|
|
|
/* switch between global and per-tool paint options */
|
|
void paint_options_set_global (gboolean global);
|
|
|
|
|
|
/* a utility function which returns a paint mode menu */
|
|
GtkWidget *paint_mode_menu_new (MenuItemCallback callback,
|
|
gpointer user_data);
|
|
|
|
#endif /* __PAINT_OPTIONS_H__ */
|