Home
last modified time | relevance | path

Searched refs:valueBox (Results 1 – 25 of 82) sorted by relevance

1234

/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/metadata/metadataedit/dialog/
H A Dmultistringsedit.cpp51 valueBox (nullptr) in Private()
65 QListWidget* valueBox; member in DigikamGenericMetadataEditPlugin::MultiStringsEdit::Private
93 d->valueBox = new QListWidget(this); in MultiStringsEdit()
117 grid->addWidget(d->valueBox, 0, 4, 3, 1); in MultiStringsEdit()
154 d->valueBox, SLOT(setEnabled(bool))); in MultiStringsEdit()
190 d->valueBox->takeItem(d->valueBox->row(item)); in slotDeleteValue()
203 if (!d->valueBox->selectedItems().isEmpty()) in slotReplaceValue()
212 if (!d->valueBox->selectedItems().isEmpty()) in slotSelectionChanged()
249 d->valueBox->insertItem(d->valueBox->count(), newValue); in slotAddValue()
259 d->valueBox->clear(); in setValues()
[all …]
H A Dmultivaluesedit.cpp56 valueBox (nullptr), in Private()
68 QListWidget* valueBox; member in DigikamGenericMetadataEditPlugin::MultiValuesEdit::Private
97 d->valueBox = new QListWidget(this); in MultiValuesEdit()
112 grid->addWidget(d->valueBox, 0, 4, 3, 1); in MultiValuesEdit()
149 d->valueBox, SLOT(setEnabled(bool))); in MultiValuesEdit()
180 d->valueBox->takeItem(d->valueBox->row(item)); in slotDeleteValue()
193 if (!d->valueBox->selectedItems().isEmpty()) in slotReplaceValue()
201 if (!d->valueBox->selectedItems().isEmpty()) in slotSelectionChanged()
238 d->valueBox->insertItem(d->valueBox->count(), newValue); in slotAddValue()
269 d->valueBox->clear(); in setValues()
[all …]
H A Dobjectattributesedit.cpp60 valueBox (nullptr), in Private()
74 QListWidget* valueBox; member in DigikamGenericMetadataEditPlugin::ObjectAttributesEdit::Private
103 d->valueBox = new QListWidget(this); in ObjectAttributesEdit()
158 grid->addWidget(d->valueBox, 0, 4, 4, 1); in ObjectAttributesEdit()
199 d->valueBox, SLOT(setEnabled(bool))); in ObjectAttributesEdit()
235 d->valueBox->takeItem(d->valueBox->row(item)); in slotDeleteValue()
244 if (!d->valueBox->selectedItems().isEmpty()) in slotReplaceValue()
252 if (!d->valueBox->selectedItems().isEmpty()) in slotSelectionChanged()
301 d->valueBox->insertItem(d->valueBox->count(), newValue); in slotAddValue()
310 d->valueBox->clear(); in setValues()
[all …]
/dports/science/scidavis/scidavis-2.4.0/libscidavis/src/
H A DErrDialog.cpp88 valueBox = new QLineEdit(); in ErrDialog()
89 valueBox->setAlignment(Qt::AlignHCenter); in ErrDialog()
90 valueBox->setEnabled(false); in ErrDialog()
91 gridLayout->addWidget(valueBox, 1, 1); in ErrDialog()
132 connect(percentBox, SIGNAL(toggled(bool)), valueBox, SLOT(setEnabled(bool))); in ErrDialog()
188 emit options(nameLabel->currentText(), type, valueBox->text(), direction); in add()
202 valueBox->setText(tr("5")); in languageChange()
/dports/math/qtiplot-doc/qtiplot-0.9.8.9/qtiplot/src/plot2D/dialogs/
H A DErrDialog.cpp95 valueBox = new DoubleSpinBox(); in ErrDialog()
96 valueBox->setMinimum(0.0); in ErrDialog()
97 valueBox->setLocale(QLocale()); in ErrDialog()
98 valueBox->setValue(5); in ErrDialog()
99 valueBox->setAlignment( Qt::AlignHCenter ); in ErrDialog()
100 valueBox->setEnabled(false); in ErrDialog()
101 gridLayout->addWidget(valueBox, 1, 1); in ErrDialog()
145 connect( percentBox, SIGNAL( toggled(bool) ), valueBox, SLOT( setEnabled(bool) ) ); in ErrDialog()
243 double prc = 0.01*valueBox->value(); in add()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/widgets/
H A Djuce_Slider.cpp189 if (valueBox != nullptr) in setValue()
429 if (valueBox != nullptr) in updateText()
523 if (valueBox != nullptr) in showTextBox()
524 valueBox->showEditor(); in showTextBox()
529 if (valueBox != nullptr) in hideTextBox()
549 if (valueBox != nullptr) in updateTextBoxEnablement()
562 auto previousTextBoxContent = (valueBox != nullptr ? valueBox->getText() in lookAndFeelChanged()
565 valueBox.reset(); in lookAndFeelChanged()
583 valueBox.reset(); in lookAndFeelChanged()
877 && e.mouseWasClicked() && valueBox != nullptr && valueBox->isEditable())) in mouseDrag()
[all …]
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/widgets/
H A Djuce_Slider.cpp189 if (valueBox != nullptr) in setValue()
429 if (valueBox != nullptr) in updateText()
523 if (valueBox != nullptr) in showTextBox()
524 valueBox->showEditor(); in showTextBox()
529 if (valueBox != nullptr) in hideTextBox()
549 if (valueBox != nullptr) in updateTextBoxEnablement()
562 auto previousTextBoxContent = (valueBox != nullptr ? valueBox->getText() in lookAndFeelChanged()
565 valueBox.reset(); in lookAndFeelChanged()
583 valueBox.reset(); in lookAndFeelChanged()
877 && e.mouseWasClicked() && valueBox != nullptr && valueBox->isEditable())) in mouseDrag()
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/lib/gwt/2.8.1/samples/Showcase/src/com/google/gwt/sample/showcase/client/content/i18n/
H A DCwNumberFormat.java97 private TextBox valueBox = null; field in CwNumberFormat
146 valueBox = new TextBox(); in onInitialize()
147 valueBox.setWidth("17em"); in onInitialize()
148 valueBox.setText("31415926535.897932"); in onInitialize()
149 valueBox.addKeyUpHandler(new KeyUpHandler() { in onInitialize()
155 layout.setWidget(2, 1, valueBox); in onInitialize()
202 String sValue = valueBox.getText(); in updateFormattedValue()
H A DCwDateTimeFormat.java102 private TextBox valueBox = null; field in CwDateTimeFormat
153 valueBox = new TextBox(); in onInitialize()
154 valueBox.setWidth("17em"); in onInitialize()
155 valueBox.setText("13 September 1999 12:34:56"); in onInitialize()
156 valueBox.addKeyUpHandler(new KeyUpHandler() { in onInitialize()
165 layout.setWidget(2, 1, valueBox); in onInitialize()
214 String sValue = valueBox.getText(); in updateFormattedValue()
/dports/audio/csoundqt/CsoundQt-0.9.8.1/src/
H A Dqutecheckbox.cpp247 setProperty("QCS_pressedValue", valueBox->value()); in applyProperties()
264 valueBox = new QDoubleSpinBox(dialog); in createPropertiesDialog()
265 valueBox->setDecimals(6); in createPropertiesDialog()
266 valueBox->setRange(-9999999.0, 9999999.0); in createPropertiesDialog()
267 layout->addWidget(valueBox, 4, 3, Qt::AlignLeft|Qt::AlignVCenter); in createPropertiesDialog()
272 valueBox->setValue(property("QCS_pressedValue").toDouble()); in createPropertiesDialog()
/dports/x11-toolkits/open-motif/motif-2.3.8/lib/Xm/
H A DScale.c2417 valueBox.y = scrollBox.y - valueBox.height; in LayoutHorizontalScale()
2426 labelBox.y = valueBox.y + valueBox.height; in LayoutHorizontalScale()
2432 scrollBox.y = valueBox.y + valueBox.height; in LayoutHorizontalScale()
2449 valueBox.y = scrollBox.y - valueBox.height; in LayoutHorizontalScale()
2463 valueBox.y = scrollBox.y - valueBox.height; in LayoutHorizontalScale()
2649 valueBox.x = XtWidth(sw) - valueBox.width; in LayoutVerticalScale()
2677 labelBox.x = valueBox.x - valueBox.width; in LayoutVerticalScale()
2681 valueBox.x = labelBox.x - valueBox.width; in LayoutVerticalScale()
2690 labelBox.x = valueBox.x + valueBox.width; in LayoutVerticalScale()
2695 scrollBox.x = valueBox.x + valueBox.width; in LayoutVerticalScale()
[all …]
/dports/audio/sonic-visualiser/sonic-visualiser-4.0.1/svgui/widgets/
H A DItemEditDialog.cpp69 QGroupBox *valueBox = nullptr; in ItemEditDialog() local
154 valueBox = new QGroupBox; in ItemEditDialog()
155 valueBox->setTitle(tr("Properties")); in ItemEditDialog()
156 grid->addWidget(valueBox, row, 0); in ItemEditDialog()
159 valueBox->setLayout(subgrid); in ItemEditDialog()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp65 int *&valueBox = getValue(key); in getValueIndirectly() local
66 return valueBox; in getValueIndirectly()

1234