diff options
Diffstat (limited to 'digikam/imageplugins/adjustlevels/adjustlevels.cpp')
-rw-r--r-- | digikam/imageplugins/adjustlevels/adjustlevels.cpp | 100 |
1 files changed, 50 insertions, 50 deletions
diff --git a/digikam/imageplugins/adjustlevels/adjustlevels.cpp b/digikam/imageplugins/adjustlevels/adjustlevels.cpp index 5bc4a1a9..72d5e46b 100644 --- a/digikam/imageplugins/adjustlevels/adjustlevels.cpp +++ b/digikam/imageplugins/adjustlevels/adjustlevels.cpp @@ -342,62 +342,62 @@ AdjustLevelDialog::AdjustLevelDialog(TQWidget* parent) // ------------------------------------------------------------- // Channels and scale selection slots. - connect(m_channelCB, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(slotChannelChanged(int))); + connect(m_channelCB, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(slotChannelChanged(int))); - connect(m_scaleBG, TQT_SIGNAL(released(int)), - this, TQT_SLOT(slotScaleChanged(int))); + connect(m_scaleBG, TQ_SIGNAL(released(int)), + this, TQ_SLOT(slotScaleChanged(int))); - connect(m_previewWidget, TQT_SIGNAL(spotPositionChangedFromOriginal( const Digikam::DColor &, const TQPoint & )), - this, TQT_SLOT(slotSpotColorChanged( const Digikam::DColor & ))); + connect(m_previewWidget, TQ_SIGNAL(spotPositionChangedFromOriginal( const Digikam::DColor &, const TQPoint & )), + this, TQ_SLOT(slotSpotColorChanged( const Digikam::DColor & ))); - connect(m_previewWidget, TQT_SIGNAL(spotPositionChangedFromTarget( const Digikam::DColor &, const TQPoint & )), - this, TQT_SLOT(slotColorSelectedFromTarget( const Digikam::DColor & ))); + connect(m_previewWidget, TQ_SIGNAL(spotPositionChangedFromTarget( const Digikam::DColor &, const TQPoint & )), + this, TQ_SLOT(slotColorSelectedFromTarget( const Digikam::DColor & ))); - connect(m_previewWidget, TQT_SIGNAL(signalResized()), - this, TQT_SLOT(slotEffect())); + connect(m_previewWidget, TQ_SIGNAL(signalResized()), + this, TQ_SLOT(slotEffect())); // ------------------------------------------------------------- // Color sliders and spinbox slots. - connect(m_hGradientMinInput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotAdjustMinInputSpinBox(int))); + connect(m_hGradientMinInput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotAdjustMinInputSpinBox(int))); - connect(m_minInput, TQT_SIGNAL(valueChanged (int)), - this, TQT_SLOT(slotAdjustSliders())); + connect(m_minInput, TQ_SIGNAL(valueChanged (int)), + this, TQ_SLOT(slotAdjustSliders())); - connect(m_gammaInput, TQT_SIGNAL(valueChanged (double)), - this, TQT_SLOT(slotGammaInputchanged(double))); + connect(m_gammaInput, TQ_SIGNAL(valueChanged (double)), + this, TQ_SLOT(slotGammaInputchanged(double))); - connect(m_hGradientMaxInput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotAdjustMaxInputSpinBox(int))); + connect(m_hGradientMaxInput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotAdjustMaxInputSpinBox(int))); - connect(m_maxInput, TQT_SIGNAL(valueChanged (int)), - this, TQT_SLOT(slotAdjustSliders())); + connect(m_maxInput, TQ_SIGNAL(valueChanged (int)), + this, TQ_SLOT(slotAdjustSliders())); - connect(m_hGradientMinOutput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotAdjustMinOutputSpinBox(int))); + connect(m_hGradientMinOutput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotAdjustMinOutputSpinBox(int))); - connect(m_minOutput, TQT_SIGNAL(valueChanged (int)), - this, TQT_SLOT(slotAdjustSliders())); + connect(m_minOutput, TQ_SIGNAL(valueChanged (int)), + this, TQ_SLOT(slotAdjustSliders())); - connect(m_hGradientMaxOutput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotAdjustMaxOutputSpinBox(int))); + connect(m_hGradientMaxOutput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotAdjustMaxOutputSpinBox(int))); - connect(m_maxOutput, TQT_SIGNAL(valueChanged (int)), - this, TQT_SLOT(slotAdjustSliders())); + connect(m_maxOutput, TQ_SIGNAL(valueChanged (int)), + this, TQ_SLOT(slotAdjustSliders())); // ------------------------------------------------------------- // Bouttons slots. - connect(m_autoButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotAutoLevels())); + connect(m_autoButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotAutoLevels())); - connect(m_resetButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotResetCurrentChannel())); + connect(m_resetButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotResetCurrentChannel())); - connect(m_pickerColorButtonGroup, TQT_SIGNAL(released(int)), - this, TQT_SLOT(slotPickerColorButtonActived())); + connect(m_pickerColorButtonGroup, TQ_SIGNAL(released(int)), + this, TQ_SLOT(slotPickerColorButtonActived())); } @@ -813,15 +813,15 @@ bool AdjustLevelDialog::eventFilter(TQObject *obj, TQEvent *ev) { if ( ev->type() == TQEvent::MouseButtonPress) { - connect(m_minInput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + connect(m_minInput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); return false; } if ( ev->type() == TQEvent::MouseButtonRelease) { - disconnect(m_minInput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + disconnect(m_minInput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); m_levelsHistogramWidget->reset(); return false; @@ -835,15 +835,15 @@ bool AdjustLevelDialog::eventFilter(TQObject *obj, TQEvent *ev) { if ( ev->type() == TQEvent::MouseButtonPress) { - connect(m_maxInput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + connect(m_maxInput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); return false; } if ( ev->type() == TQEvent::MouseButtonRelease) { - disconnect(m_maxInput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + disconnect(m_maxInput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); m_levelsHistogramWidget->reset(); return false; @@ -857,15 +857,15 @@ bool AdjustLevelDialog::eventFilter(TQObject *obj, TQEvent *ev) { if ( ev->type() == TQEvent::MouseButtonPress) { - connect(m_minOutput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + connect(m_minOutput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); return false; } if ( ev->type() == TQEvent::MouseButtonRelease) { - disconnect(m_minOutput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + disconnect(m_minOutput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); m_levelsHistogramWidget->reset(); return false; @@ -879,15 +879,15 @@ bool AdjustLevelDialog::eventFilter(TQObject *obj, TQEvent *ev) { if ( ev->type() == TQEvent::MouseButtonPress) { - connect(m_maxOutput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + connect(m_maxOutput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); return false; } if ( ev->type() == TQEvent::MouseButtonRelease) { - disconnect(m_maxOutput, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotShowHistogramGuide(int))); + disconnect(m_maxOutput, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotShowHistogramGuide(int))); m_levelsHistogramWidget->reset(); return false; |