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

« back to all changes in this revision

Viewing changes to digikam/libs/imageproperties/imagepropertiescolorstab.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:
166
166
    d->channelCB->insertItem( i18n("Blue") );
167
167
    d->channelCB->insertItem( i18n("Alpha") );
168
168
    d->channelCB->insertItem( i18n("Colors") );
169
 
    QWhatsThis::add( d->channelCB, i18n("<p>Select here the histogram channel to display:<p>"
 
169
    QWhatsThis::add( d->channelCB, i18n("<p>Select the histogram channel to display here:<p>"
170
170
                                        "<b>Luminosity</b>: Display luminosity (perceived brightness) values.<p>"
171
171
                                        "<b>Red</b>: Display the red image channel.<p>"
172
172
                                        "<b>Green</b>: Display the green image channel.<p>"
180
180
    d->scaleBG->setExclusive(true);
181
181
    d->scaleBG->setFrameShape(QFrame::NoFrame);
182
182
    d->scaleBG->setInsideMargin( 0 );
183
 
    QWhatsThis::add( d->scaleBG, i18n("<p>Select here the histogram scale.<p>"
 
183
    QWhatsThis::add( d->scaleBG, i18n("<p>Select the histogram scale here.<p>"
184
184
                                      "If the image's maximal values are small, you can use the linear scale.<p>"
185
185
                                      "Logarithmic scale can be used when the maximal values are big; "
186
186
                                      "if it is used, all values (small and large) will be visible on the "
209
209
    d->colorsCB->insertItem( i18n("Green") );
210
210
    d->colorsCB->insertItem( i18n("Blue") );
211
211
    d->colorsCB->setEnabled( false );
212
 
    QWhatsThis::add( d->colorsCB, i18n("<p>Select here the main color displayed with Colors Channel mode:<p>"
 
212
    QWhatsThis::add( d->colorsCB, i18n("<p>Select the main color displayed with Colors Channel mode here:<p>"
213
213
                                       "<b>Red</b>: Draw the red image channel in the foreground.<p>"
214
214
                                       "<b>Green</b>: Draw the green image channel in the foreground.<p>"
215
215
                                       "<b>Blue</b>: Draw the blue image channel in the foreground.<p>"));
219
219
    d->regionBG->setFrameShape(QFrame::NoFrame);
220
220
    d->regionBG->setInsideMargin( 0 );
221
221
    d->regionBG->hide();
222
 
    QWhatsThis::add( d->regionBG, i18n("<p>Select here from which region the histogram will be computed:<p>"
 
222
    QWhatsThis::add( d->regionBG, i18n("<p>Select from which region the histogram will be computed here:<p>"
223
223
                                       "<b>Full Image</b>: Compute histogram using the full image.<p>"
224
224
                                       "<b>Selection</b>: Compute histogram using the current image "
225
225
                                       "selection."));
267
267
    label3->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
268
268
    d->minInterv = new QSpinBox(0, 255, 1, histogramPage);
269
269
    d->minInterv->setValue(0);
270
 
    QWhatsThis::add(d->minInterv, i18n("<p>Select here the minimal intensity "
271
 
                                       "value of the histogram selection."));
 
270
    QWhatsThis::add(d->minInterv, i18n("<p>Select the minimal intensity "
 
271
                                       "value of the histogram selection here."));
272
272
    d->maxInterv = new QSpinBox(0, 255, 1, histogramPage);
273
273
    d->maxInterv->setValue(255);
274
 
    QWhatsThis::add(d->minInterv, i18n("<p>Select here the maximal intensity value "
275
 
                                       "of the histogram selection."));
 
274
    QWhatsThis::add(d->minInterv, i18n("<p>Select the maximal intensity value "
 
275
                                       "of the histogram selection here."));
276
276
    hlay2->addWidget(label3);
277
277
    hlay2->addWidget(d->minInterv);
278
278
    hlay2->addWidget(d->maxInterv);