Home
last modified time | relevance | path

Searched refs:thresholdSlider (Results 1 – 25 of 32) sorted by relevance

12

/dports/graphics/scantailor/scantailor-advanced-1.0.16/filters/output/
H A DOtsuBinarizationOptionsWidget.cpp16 thresholdSlider->setToolTip(QString::number(thresholdSlider->value())); in OtsuBinarizationOptionsWidget()
18 thresholdSlider->setMinimum(-100); in OtsuBinarizationOptionsWidget()
19 thresholdSlider->setMaximum(100); in OtsuBinarizationOptionsWidget()
40 const int value = thresholdSlider->value(); in thresholdSliderReleased()
54 thresholdSlider->setToolTip(tooltip_text); in thresholdSliderValueChanged()
64 if (thresholdSlider->isSliderDown()) { in thresholdSliderValueChanged()
89 thresholdSlider->setValue(thresholdSlider->value() - 1); in setLighterThreshold()
90 setThresholdAdjustment(thresholdSlider->value()); in setLighterThreshold()
98 thresholdSlider->setValue(thresholdSlider->value() + 1); in setDarkerThreshold()
99 setThresholdAdjustment(thresholdSlider->value()); in setDarkerThreshold()
[all …]
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/threshold/
H A Dui.qml52thresholdSlider.value = filter.getDouble(threshold, position) / 255 * thresholdSlider.maximumValue
59 thresholdSlider.enabled = enabled
63 …updateFilter(threshold, thresholdSlider.value / thresholdSlider.maximumValue * 255, thresholdKeyfr…
93 id: thresholdSlider
99 …onValueChanged: updateFilter(threshold, thresholdSlider.value / thresholdSlider.maximumValue * 255…
102 … onClicked: thresholdSlider.value = thresholdDefault / 255 * thresholdSlider.maximumValue
108 … toggleKeyframes(checked, threshold, thresholdSlider.value / thresholdSlider.maximumValue * 255)
/dports/graphics/krita/krita-4.4.8/libs/ui/widgets/
H A Dkis_lod_availability_widget.cpp52 KisDoubleSliderSpinBox *thresholdSlider = 0; member
81 m_d->thresholdSlider = new KisDoubleSliderSpinBox(m_d->thresholdMenu.data()); in KisLodAvailabilityWidget()
83 m_d->thresholdSlider->setRange(0, cfg.readEntry("maximumBrushSize", 1000), 2); in KisLodAvailabilityWidget()
84 m_d->thresholdSlider->setValue(100); in KisLodAvailabilityWidget()
85 m_d->thresholdSlider->setSingleStep(1); in KisLodAvailabilityWidget()
86 m_d->thresholdSlider->setExponentRatio(3.0); in KisLodAvailabilityWidget()
87 m_d->thresholdSlider->setSuffix(i18n(" px")); in KisLodAvailabilityWidget()
88 m_d->thresholdSlider->setBlockUpdateSignalOnDrag(true); in KisLodAvailabilityWidget()
91 sliderAction->setDefaultWidget(m_d->thresholdSlider); in KisLodAvailabilityWidget()
228 KisSignalsBlocker b(m_d->thresholdSlider); in slotUserChangedLodThreshold()
[all …]
/dports/biology/ugene/ugene-40.1/src/corelibs/U2View/src/ov_msa/general/
H A DMaConsensusModeWidget.cpp57 connect(thresholdSlider, SIGNAL(valueChanged(int)), SLOT(sl_thresholdSliderChanged(int))); in init()
91 thresholdSlider->setEnabled(enable); in updateThresholdState()
95 thresholdSlider->setRange(minVal, maxVal); in updateThresholdState()
99 thresholdSlider->setValue(qBound(minVal, value, maxVal)); in updateThresholdState()
135 thresholdSlider->disconnect(this); in sl_thresholdSpinBoxChanged()
136 thresholdSlider->setValue(value); in sl_thresholdSpinBoxChanged()
137 connect(thresholdSlider, SIGNAL(valueChanged(int)), SLOT(sl_thresholdSliderChanged(int))); in sl_thresholdSpinBoxChanged()
/dports/graphics/okular/okular-21.12.3/part/
H A Ddlgaccessibility.cpp114 QSlider *thresholdSlider = new QSlider(this); in DlgAccessibility() local
115 thresholdSlider->setMinimum(2); in DlgAccessibility()
116 thresholdSlider->setMaximum(253); in DlgAccessibility()
117 thresholdSlider->setOrientation(Qt::Horizontal); in DlgAccessibility()
118 thresholdSlider->setObjectName(QStringLiteral("kcfg_BWThreshold")); in DlgAccessibility()
119 …t->addRow(i18nc("@label:slider Config dialog, accessibility page", "Threshold:"), thresholdSlider); in DlgAccessibility()
/dports/audio/geonkick-lv2/geonkick-2.8.0/src/
H A Dcompressor_group_box.cpp44 , thresholdSlider{nullptr}
106 thresholdSlider = new GeonkickSlider(this);
107 thresholdSlider->setFixedSize(sliderW, 12);
108 … RK_ACT_BIND(thresholdSlider, valueUpdated, RK_ACT_ARGS(int value), this, setThreshold(value));
110 hContainer->addWidget(thresholdSlider);
168 thresholdSlider->onSetValue(100 - 100 * (db / -60)); in updateGui()
H A Dcompressor_group_box.h47 GeonkickSlider *thresholdSlider; variable
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/common_scenarios/msa_editor/consensus/
H A DGTTestsMSAEditorConsensus.cpp62 QWidget *thresholdSlider = GTWidget::findWidget(os, "thresholdSlider"); in GUI_TEST_CLASS_DEFINITION() local
63 CHECK_SET_ERR(thresholdSlider != nullptr, "thresholdSlider is NULL"); in GUI_TEST_CLASS_DEFINITION()
64 CHECK_SET_ERR(!thresholdSlider->isEnabled(), "thresholdSlider is unexpectedly enabled"); in GUI_TEST_CLASS_DEFINITION()
311 QSlider *thresholdSlider = qobject_cast<QSlider *>(GTWidget::findWidget(os, "thresholdSlider")); in checkLimits() local
312 CHECK_SET_ERR(thresholdSlider != nullptr, "thresholdSlider not found"); in checkLimits()
313 int actualSliderMin = thresholdSlider->minimum(); in checkLimits()
314 int actualSliderMax = thresholdSlider->maximum(); in checkLimits()
347 QSlider *thresholdSlider = qobject_cast<QSlider *>(GTWidget::findWidget(os, "thresholdSlider")); in checkValues() local
348 CHECK_SET_ERR(thresholdSlider != nullptr, "thresholdSlider not found"); in checkValues()
349 int actualSliderValue = thresholdSlider->value(); in checkValues()
/dports/graphics/scantailor/scantailor-advanced-1.0.16/
H A DDefaultParamsDialog.cpp102 thresholdSlider->setToolTip(QString::number(thresholdSlider->value())); in DefaultParamsDialog()
104 thresholdSlider->setMinimum(-100); in DefaultParamsDialog()
105 thresholdSlider->setMaximum(100); in DefaultParamsDialog()
106 thresholLabel->setText(QString::number(thresholdSlider->value())); in DefaultParamsDialog()
823 thresholdSlider->setToolTip(tooltip_text); in thresholdSliderValueChanged()
828 const QPoint center(thresholdSlider->rect().center()); in thresholdSliderValueChanged()
832 tooltip_pos = thresholdSlider->mapToGlobal(tooltip_pos); in thresholdSliderValueChanged()
833 QToolTip::showText(tooltip_pos, tooltip_text, thresholdSlider); in thresholdSliderValueChanged()
837 thresholdSlider->setValue(thresholdSlider->value() - 1); in setLighterThreshold()
842 thresholdSlider->setValue(thresholdSlider->value() + 1); in setDarkerThreshold()
[all …]
/dports/comms/gqrx/gqrx-2.15/src/qtgui/
H A Dagc_options.cpp127 return ui->thresholdSlider->value(); in threshold()
133 ui->thresholdSlider->setValue(value); in setThreshold()
134 ui->thresholdLabel->setText(QString("%1 dB").arg(ui->thresholdSlider->value())); in setThreshold()
211 ui->thresholdLabel->setText(QString("%1 dB").arg(ui->thresholdSlider->value())); in on_thresholdSlider_valueChanged()
/dports/graphics/price/PRICE-1.3.0/
H A DPRCTraceEdges.m38 [thresholdSlider setEnabled:YES];
45 [thresholdSlider setEnabled:NO];
91 [thresholdSlider setEnabled:YES];
97 [thresholdSlider setEnabled:NO];
H A DPRCTraceEdges.h31 IBOutlet NSSlider *thresholdSlider; variable
H A DPRCCustTraceEdges.h19 IBOutlet NSSlider *thresholdSlider; variable
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/audio_noisegate/
H A Dui.qml69 thresholdSlider.value = filter.getDouble(threshold, position)
86 … lfkeySlider.enabled = hfkeySlider.enabled = thresholdSlider.enabled = thresholdSlider.enabled =
93 updateFilter(threshold, thresholdSlider.value, thresholdKeyframesButton)
183 id: thresholdSlider
192 onClicked: thresholdSlider.value = thresholdDefault
198 toggleKeyframes(checked, threshold, thresholdSlider.value)
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/mask_shape/
H A Dui.qml76 thresholdSlider.value = filter.getDouble('filter.mix', position)
79thresholdSlider.enabled = position <= 0 || (position >= (filter.animateIn - 1) && position <= (fil…
146 thresholdSlider.enabled = softnessSlider.enabled = true
318 id: thresholdSlider
326 onClicked: thresholdSlider.value = 50
330 onToggled: onKeyframesButtonClicked(checked, 'filter.mix', thresholdSlider.value)
353 updateFilter('filter.mix', thresholdSlider.value, getPosition(), thresholdKeyframesButton)
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/smartblur/
H A Dui.qml48 thresholdSlider.value = filter.getDouble("av.luma_threshold")
111 id: thresholdSlider
121 onClicked: thresholdSlider.value = thresholdDefault
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/
H A DGTUtilsOptionPanelMca.cpp137 QSlider *thresholdSlider = GTWidget::findExactWidget<QSlider *>(os, "thresholdSlider"); in getThreshold() local
138 GT_CHECK_RESULT(nullptr != thresholdSlider, "thresholdSlider is NULL", -1); in getThreshold()
139 return thresholdSlider->value(); in getThreshold()
H A DGTUtilsOptionPanelMSA.cpp338 QSlider *thresholdSlider = GTWidget::findExactWidget<QSlider *>(os, "thresholdSlider"); in getThreshold() local
339 GT_CHECK_RESULT(nullptr != thresholdSlider, "thresholdSlider is NULL", -1); in getThreshold()
340 return thresholdSlider->value(); in getThreshold()
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/lightshow/
H A Dui_lightshow.qml70 thresholdSlider.value = filter.getDouble('threshold')
224 id: thresholdSlider
232 onClicked: thresholdSlider.value = -60
/dports/graphics/price/PRICE-1.3.0/Resources/TraceEdges.gorm/
H A Ddata.classes29 thresholdSlider,
/dports/graphics/price/PRICE-1.3.0/Resources/CustTraceEdges.gorm/
H A Ddata.classes36 thresholdSlider,
/dports/multimedia/butt/butt-0.1.27/src/FLTK/
H A Dflgui.cpp813 fl_g->thresholdSlider->value(-20); in cb_Reset1_i()
1742 thresholdSlider->type(4); in flgui()
1743 thresholdSlider->box(FL_NO_BOX); in flgui()
1744 thresholdSlider->color(FL_BACKGROUND_COLOR); in flgui()
1746 thresholdSlider->labeltype(FL_NORMAL_LABEL); in flgui()
1747 thresholdSlider->labelfont(0); in flgui()
1748 thresholdSlider->labelsize(11); in flgui()
1749 thresholdSlider->labelcolor(FL_FOREGROUND_COLOR); in flgui()
1750 thresholdSlider->maximum(-60); in flgui()
1751 thresholdSlider->step(0.1); in flgui()
[all …]
/dports/graphics/price/PRICE-1.3.0/Resources/MainMenu.gorm/
H A Ddata.classes271 thresholdSlider,
418 thresholdSlider,
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/spectrum/
H A Dui_spectrum.qml83 thresholdSlider.value = filter.getDouble('threshold')
331 id: thresholdSlider
339 onClicked: thresholdSlider.value = -60
/dports/multimedia/shotcut/shotcut-21.03.21/src/qml/filters/dance/
H A Dui_dance.qml63 thresholdSlider.value = filter.getDouble('threshold')
298 id: thresholdSlider
306 onClicked: thresholdSlider.value = -30

12