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

« back to all changes in this revision

Viewing changes to digikam/imageplugins/coreplugin/hsl/imageeffect_hsl.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:
93
93
    m_channelCB->insertItem( i18n("Red") );
94
94
    m_channelCB->insertItem( i18n("Green") );
95
95
    m_channelCB->insertItem( i18n("Blue") );
96
 
    QWhatsThis::add( m_channelCB, i18n("<p>Select here the histogram channel to display:<p>"
 
96
    QWhatsThis::add( m_channelCB, i18n("<p>Select the histogram channel to display here:<p>"
97
97
                                       "<b>Luminosity</b>: display the image's luminosity values.<p>"
98
98
                                       "<b>Red</b>: display the red image-channel values.<p>"
99
99
                                       "<b>Green</b>: display the green image-channel values.<p>"
103
103
    m_scaleBG->setExclusive(true);
104
104
    m_scaleBG->setFrameShape(QFrame::NoFrame);
105
105
    m_scaleBG->setInsideMargin( 0 );
106
 
    QWhatsThis::add( m_scaleBG, i18n("<p>Select here the histogram scale.<p>"
 
106
    QWhatsThis::add( m_scaleBG, i18n("<p>Select the histogram scale here.<p>"
107
107
                                     "If the image's maximal counts are small, you can use the linear scale.<p>"
108
108
                                     "Logarithmic scale can be used when the maximal counts are big; "
109
109
                                     "if it is used, all values (small and large) will be visible on the graph."));
149
149
    // -------------------------------------------------------------
150
150
 
151
151
    m_HSSelector = new KHSSelector(gboxSettings);
152
 
    QWhatsThis::add( m_HSSelector, i18n("<p>Select here the hue and saturation adjustments of the image."));
 
152
    QWhatsThis::add( m_HSSelector, i18n("<p>Select the hue and saturation adjustments of the image here."));
153
153
    m_HSSelector->setMinimumSize(256, 142);
154
154
    gridSettings->addMultiCellWidget(m_HSSelector, 3, 3, 0, 4);
155
155
 
156
156
    m_HSPreview = new HSPreviewWidget(gboxSettings, spacingHint());
157
 
    QWhatsThis::add( m_HSPreview, i18n("<p>You can see here the color preview of hue and "
 
157
    QWhatsThis::add( m_HSPreview, i18n("<p>You can see here a color preview of the hue and "
158
158
                                       "saturation adjustments."));
159
159
    m_HSPreview->setMinimumSize(256, 15);
160
160
    gridSettings->addMultiCellWidget(m_HSPreview, 4, 4, 0, 4);