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

« back to all changes in this revision

Viewing changes to digikam/imageplugins/adjustcurves/adjustcurves.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.2.15 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080717202539-6n7dtirbkoo7qvhd
Tags: 2:0.9.4-1
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2004-12-01
7
7
 * Description : image histogram adjust curves.
8
8
 *
9
 
 * Copyright (C) 2004-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2004-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
104
104
                                       digikam_version,
105
105
                                       I18N_NOOP("An image-histogram-curves adjustment plugin for digiKam."),
106
106
                                       KAboutData::License_GPL,
107
 
                                       "(c) 2004-2007, Gilles Caulier",
 
107
                                       "(c) 2004-2008, Gilles Caulier",
108
108
                                       0,
109
109
                                       "http://www.digikam.org");
110
110
 
135
135
    m_channelCB->insertItem( i18n("Blue") );
136
136
    m_channelCB->insertItem( i18n("Alpha") );
137
137
    m_channelCB->setCurrentText( i18n("Luminosity") );
138
 
    QWhatsThis::add( m_channelCB, i18n("<p>Select here the histogram channel to display:<p>"
 
138
    QWhatsThis::add( m_channelCB, i18n("<p>Select the histogram channel to display here:<p>"
139
139
                                       "<b>Luminosity</b>: display the image's luminosity values.<p>"
140
140
                                       "<b>Red</b>: display the red image-channel values.<p>"
141
141
                                       "<b>Green</b>: display the green image-channel values.<p>"
145
145
                                       "is supported by some image formats, such as PNG or TIF."));
146
146
 
147
147
    m_scaleBG = new QHButtonGroup(gboxSettings);
148
 
    QWhatsThis::add( m_scaleBG, i18n("<p>Select here the histogram scale.<p>"
 
148
    QWhatsThis::add( m_scaleBG, i18n("<p>Select the histogram scale here.<p>"
149
149
                                     "If the image's maximal counts are small, you can use the linear scale.<p>"
150
150
                                     "Logarithmic scale can be used when the maximal counts are big; "
151
151
                                     "if it is used, all values (small and large) will be visible on the graph."));