~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/imageplugins/coreplugin/imageeffect_redeye.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-ttj4and3ds1ldgn1
Tags: upstream-0.9.4
ImportĀ upstreamĀ versionĀ 0.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * Description : Red eyes correction tool for image editor
8
8
 *
9
9
 * Copyright (C) 2004-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
10
 
 * Copyright (C) 2004-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 * Copyright (C) 2004-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
11
11
 *
12
12
 * This program is free software; you can redistribute it
13
13
 * and/or modify it under the terms of the GNU General
75
75
    QWidget* m_parent;
76
76
};
77
77
 
 
78
// ----------------------------------------------------------------
 
79
 
78
80
class ImageEffect_RedEye : public Digikam::ImageDlgBase
79
81
{
80
82
    Q_OBJECT
127
129
    QLabel                       *m_thresholdLabel;
128
130
    QLabel                       *m_smoothLabel;
129
131
 
130
 
    QComboBox                    *m_channelCB;   
 
132
    QComboBox                    *m_channelCB;
131
133
 
132
 
    QHButtonGroup                *m_scaleBG;  
 
134
    QHButtonGroup                *m_scaleBG;
133
135
 
134
136
    KIntNumInput                 *m_tintLevel;
135
 
    KIntNumInput                 *m_redThreshold; 
 
137
    KIntNumInput                 *m_redThreshold;
136
138
    KIntNumInput                 *m_smoothLevel;
137
139
 
138
140
    KHSSelector                  *m_HSSelector;
139
141
    KValueSelector               *m_VSelector;
140
 
    
 
142
 
141
143
    Digikam::ImageWidget         *m_previewWidget;
142
144
 
143
145
    Digikam::ColorGradientWidget *m_hGradient;
144
 
    
 
146
 
145
147
    Digikam::HistogramWidget     *m_histogramWidget;
146
148
};
147
149