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

« back to all changes in this revision

Viewing changes to app/tools/gimplevelstool.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20081006133041-3panbkcanaymfsmp
Tags: upstream-2.6.0
ImportĀ upstreamĀ versionĀ 2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
{
39
39
  GimpImageMapTool      parent_instance;
40
40
 
 
41
  GimpLevelsConfig     *config;
41
42
  GimpLut              *lut;
42
 
  Levels               *levels;
43
43
 
44
44
  /* dialog */
45
 
  gboolean              color;
46
 
  gboolean              alpha;
47
 
  GimpHistogramChannel  channel;
48
 
 
49
 
  gint                  active_slider;
50
 
  gint                  slider_pos[5];
51
 
 
52
 
  GimpHistogram        *hist;
53
 
  GtkWidget            *hist_view;
54
 
  GtkWidget            *active_picker;
 
45
  GimpHistogram        *histogram;
 
46
 
 
47
  GtkWidget            *channel_menu;
 
48
 
 
49
  GtkWidget            *histogram_view;
 
50
 
 
51
  GtkWidget            *input_bar;
 
52
  GtkWidget            *input_sliders;
55
53
  GtkAdjustment        *low_input;
56
54
  GtkAdjustment        *gamma;
 
55
  GtkAdjustment        *gamma_linear;
 
56
  GtkAdjustment        *high_input;
 
57
 
 
58
  GtkWidget            *output_bar;
 
59
  GtkWidget            *output_sliders;
57
60
  GtkAdjustment        *low_output;
58
 
  GtkAdjustment        *high_input;
59
61
  GtkAdjustment        *high_output;
60
 
  GtkWidget            *input_area;
61
 
  GtkWidget            *input_bar;
62
 
  GtkWidget            *output_area;
63
 
  GtkWidget            *output_bar;
64
 
  GtkWidget            *channel_menu;
 
62
 
 
63
  GtkWidget            *active_picker;
65
64
};
66
65
 
67
66
struct _GimpLevelsToolClass