~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/tools/gimpfuzzyselecttool.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
3
 *
 
4
 * gimpfuzzyselecttool.h
 
5
 *
4
6
 * This program is free software; you can redistribute it and/or modify
5
7
 * it under the terms of the GNU General Public License as published by
6
8
 * the Free Software Foundation; either version 2 of the License, or
20
22
#define __GIMP_FUZZY_SELECT_TOOL_H__
21
23
 
22
24
 
23
 
#include "gimpselectiontool.h"
 
25
#include "gimpregionselecttool.h"
24
26
 
25
27
 
26
28
#define GIMP_TYPE_FUZZY_SELECT_TOOL            (gimp_fuzzy_select_tool_get_type ())
36
38
 
37
39
struct _GimpFuzzySelectTool
38
40
{
39
 
  GimpSelectionTool  parent_instance;
40
 
 
41
 
  gint         x, y;             /*  Point from which to execute seed fill   */
42
 
  gint         first_x;          /*                                          */
43
 
  gint         first_y;          /*  variables to keep track of sensitivity  */
44
 
  gdouble      first_threshold;  /*  initial value of threshold slider       */
45
 
 
46
 
  GimpChannel *fuzzy_mask;
47
 
 
48
 
  /*  Segments which make up the fuzzy selection boundary  */
49
 
  GdkSegment  *segs;
50
 
  gint         num_segs;
 
41
  GimpRegionSelectTool  parent_instance;
51
42
};
52
43
 
53
44
struct _GimpFuzzySelectToolClass
54
45
{
55
 
  GimpSelectionToolClass parent_class;
 
46
  GimpRegionSelectToolClass  parent_class;
56
47
};
57
48
 
58
49