Home
last modified time | relevance | path

Searched refs:labelText (Results 1 – 25 of 1513) sorted by relevance

12345678910>>...61

/dports/audio/praat/praat-6.2.03/sys/
H A DEditorM.h67 REAL_FIELD (realVariable, labelText, defaultStringValue)
169 #define LABEL(labelText) \ argument
179 #define MUTABLE_LABEL(stringVariable, labelText) \ argument
181 MUTABLE_LABEL_FIELD (stringVariable, labelText)
214 INFILE_FIELD (stringVariable, labelText, defaultValue)
236 FOLDER_FIELD (stringVariable, labelText, defaultValue)
269 RADIO_FIELD (optionVariable, labelText, defaultValue)
277 #define RADIOBUTTON(labelText) \ argument
278 UiRadio_addButton (_radio_, labelText);
297 #define OPTION(labelText) \ argument
[all …]
H A DpraatM.h88 #define REAL(realVariable, labelText, defaultStringValue) \
120 #define LABEL(labelText) UiForm_addLabel (_dia_.get(), nullptr, labelText);
122 #define MUTABLE_LABEL(stringVariable, labelText) \
166 #define STRINGARRAY(stringArrayVariable, labelText, ...) \
192 #define RADIOBUTTON(labelText) \
193 UiRadio_addButton (_radio_, labelText);
207 #define OPTION(labelText) \
208 UiOptionMenu_addButton (_radio_, labelText);
254 #define FILE_IN(labelText) \
255 UiForm_addFileIn (_dia_.get(), labelText);
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/Html/
H A DLabelExtensions.cs16 labelText: null); in Label()
36 return Label(html, expression, labelText, htmlAttributes, metadataProvider: null); in Label()
41 return Label(html, expression, labelText, htmlAttributes, metadataProvider: null); in Label()
48 labelText, in Label()
58 labelText, in Label()
65 return LabelFor<TModel, TValue>(html, expression, labelText: null); in LabelFor()
102 labelText, in LabelFor()
112 labelText, in LabelFor()
118 return LabelForModel(html, labelText: null); in LabelForModel()
121 public static MvcHtmlString LabelForModel(this HtmlHelper html, string labelText) in LabelForModel() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.WebPages/Html/
H A DHtmlHelper.Label.cs11 public IHtmlString Label(string labelText) in Label() argument
13 return Label(labelText, null, (IDictionary<string, object>)null); in Label()
16 public IHtmlString Label(string labelText, string labelFor) in Label() argument
18 return Label(labelText, labelFor, (IDictionary<string, object>)null); in Label()
21 public IHtmlString Label(string labelText, object attributes) in Label() argument
23 return Label(labelText, null, TypeHelper.ObjectToDictionary(attributes)); in Label()
26 public IHtmlString Label(string labelText, string labelFor, object attributes) in Label() argument
28 return Label(labelText, labelFor, TypeHelper.ObjectToDictionary(attributes)); in Label()
33 if (String.IsNullOrEmpty(labelText)) in Label()
38 labelFor = labelFor ?? labelText; in Label()
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/api/
H A DGTMSAEditorStatusWidget.cpp45 QString labelText = label->text(); in length() local
46 QString lengthString = labelText.section('/', -1, -1); in length()
61 QString labelText = label->text(); in getSequencesCount() local
62 QString countString = labelText.section('/', -1, -1); in getSequencesCount()
77 const QString labelText = lineLabel->text(); in getRowNumberString() local
78 return labelText.mid(QString("Seq ").length() - 1).section('/', 0, 0).trimmed(); in getRowNumberString()
87 const QString labelText = lineLabel->text(); in getRowsCountString() local
97 const QString labelText = columnLabel->text(); in getColumnNumberString() local
107 const QString labelText = columnLabel->text(); in getColumnsCountString() local
117 const QString labelText = positionLabel->text(); in getSequenceUngappedPositionString() local
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/tests/common_scenarios/options_panel/
H A DGTTestsOptionPanel.cpp394 …CHECK_SET_ERR(labelText.contains(s), QString("label text: %1. It does not contais %2").arg(labelTe… in GUI_TEST_CLASS_DEFINITION()
395 …CHECK_SET_ERR(labelText.contains(s1), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
396 …CHECK_SET_ERR(labelText.contains(s2), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
397 …CHECK_SET_ERR(labelText.contains(s3), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
398 …CHECK_SET_ERR(labelText.contains(s4), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
399 …CHECK_SET_ERR(labelText.contains(s5), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
400 …CHECK_SET_ERR(labelText.contains(s6), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
401 …CHECK_SET_ERR(labelText.contains(s7), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
402 …CHECK_SET_ERR(labelText.contains(s8), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
403 …CHECK_SET_ERR(labelText.contains(s9), QString("label text: %1. It does not contais %2").arg(labelT… in GUI_TEST_CLASS_DEFINITION()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/examples/org.eclipse.ui.examples.views.properties.tabbed.article/src/org/eclipse/ui/examples/views/properties/tabbed/article/views/
H A DLabelSection.java41 private Text labelText; field in LabelSection
47 properties.setPropertyValue(ButtonElementProperties.PROPERTY_TEXT, labelText.getText());
67 labelText = getWidgetFactory().createText(composite, ""); //$NON-NLS-1$ in createControls()
72 labelText.setLayoutData(data); in createControls()
73 labelText.addModifyListener(listener); in createControls()
79 data.right = new FormAttachment(labelText, in createControls()
81 data.top = new FormAttachment(labelText, 0, SWT.CENTER); in createControls()
87 labelText.removeModifyListener(listener); in refresh()
89 labelText.setText(properties.strText); in refresh()
90 labelText.addModifyListener(listener); in refresh()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/Html/
H A DLabelExtensions.cs14 … public static MvcHtmlString Label(this HtmlHelper html, string expression, string labelText) { in Label() argument
18 labelText); in Label()
27 …lue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, string labelText) { in LabelFor() argument
31 labelText); in LabelFor()
38 public static MvcHtmlString LabelForModel(this HtmlHelper html, string labelText) { in LabelForModel() argument
39 return LabelHelper(html, html.ViewData.ModelMetadata, String.Empty, labelText); in LabelForModel()
42 …belHelper(HtmlHelper html, ModelMetadata metadata, string htmlFieldName, string labelText = null) { in LabelHelper() argument
43 …string resolvedLabelText = labelText ?? metadata.DisplayName ?? metadata.PropertyName ?? htmlField… in LabelHelper()
/dports/biology/ugene/ugene-40.1/src/plugins/GUITestBase/src/
H A DGTUtilsMcaEditorStatusWidget.cpp47 const QString labelText = lineLabel->text(); in getRowNumberString() local
48 return labelText.mid(QString("Ln ").length() - 1).section('/', 0, 0).trimmed(); in getRowNumberString()
69 const QString labelText = lineLabel->text(); in getRowsCountString() local
70 return labelText.mid(QString("Ln ").length() - 1).section('/', 1, 1).trimmed(); in getRowsCountString()
91 const QString labelText = columnLabel->text(); in getReferenceUngappedPositionString() local
92 return labelText.mid(QString("RefPos ").length() - 1).section('/', 0, 0).trimmed(); in getReferenceUngappedPositionString()
113 const QString labelText = columnLabel->text(); in getReferenceUngappedLengthString() local
114 return labelText.mid(QString("RefPos ").length() - 1).section('/', 1, 1).trimmed(); in getReferenceUngappedLengthString()
141 const QString labelText = positionLabel->text(); in getReadUngappedPositionString() local
142 return labelText.mid(QString("ReadPos ").length() - 1).section('/', 0, 0).trimmed(); in getReadUngappedPositionString()
[all …]
/dports/audio/bharvestr-lv2/BHarvestr-7e6a1e7c81d0af61d4fabcd823978d62c8970502/src/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 if (labelText != oldText) in operator =()
67 oldText = labelText; in operator =()
77 if (text != labelText) in setText()
79 labelText = text; in setText()
86 if (labelText != oldText) in setText()
89 oldText = labelText; in setText()
208 if (labelText != oldText) in applyEdit()
[all …]
/dports/security/keybase/client-v5.7.1/osx/KBKit/KBKit/UI/Proof/
H A DKBProveInputView.m61 NSString *labelText = @"What's your username?";
65 labelText = @"What's your Twitter username?";
69 labelText = @"What's your Github username?";
73 labelText = @"What's your Reddit username?";
77 labelText = @"What's your Coinbase username?";
81 labelText = @"What's your HackerNews username?";
85 labelText = @"What domain name do you want to add?";
88 labelText = @"What website name do you want to add?";
91 labelText = @"What website name do you want to add?";
94 labelText = @"What's your Keybase username?";
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/
H A DMultipleInputDialog.java119 fieldList.add(new FieldSummary(BROWSE, labelText, initialValue, allowsEmpty)); in addBrowseField()
122 fieldList.add(new FieldSummary(TEXT, labelText, initialValue, allowsEmpty)); in addTextField()
125 fieldList.add(new FieldSummary(VARIABLE, labelText, initialValue, allowsEmpty)); in addVariablesField()
133 label.setText(labelText); in createTextField()
138 text.setData(FIELD_NAME, labelText); in createTextField()
167 label.setText(labelText); in createBrowseField()
181 text.setData(FIELD_NAME, labelText); in createBrowseField()
234 label.setText(labelText); in createVariablesField()
248 text.setData(FIELD_NAME, labelText); in createVariablesField()
294 label.setText(labelText); in createMultilineVariablesField()
[all …]
/dports/x11-toolkits/redkite/redkite-1.3.1/src/
H A DRkLabelImpl.cpp33 , labelText{text}
43 labelText = text; in setText()
48 return labelText; in text()
58 if (labelText.empty() && labelImage.isNull()) in drawLabel()
66 if (!labelText.empty()) { in drawLabel()
71 painter.drawText(inf_ptr->rect(), labelText); in drawLabel()
/dports/audio/geonkick-lv2/geonkick-2.8.0/redkite/src/
H A DRkLabelImpl.cpp33 , labelText{text}
43 labelText = text; in setText()
48 return labelText; in text()
58 if (labelText.empty() && labelImage.isNull()) in drawLabel()
66 if (!labelText.empty()) { in drawLabel()
71 painter.drawText(inf_ptr->rect(), labelText); in drawLabel()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/alertmanager/ui/app/src/Utils/
H A DViews.elm46 labelButton maybeMsg labelText =
55 [ text labelText ]
99 [ label [] [ strong [] [ text labelText ] ]
111 [ label [] [ strong [] [ text labelText ] ]
123 [ label [] [ strong [] [ text labelText ] ]
146 [ label [] [ strong [] [ text labelText ] ]
160 [ label [] [ strong [] [ text labelText ] ]
189 formField labelText content classes msg =
191 [ label [] [ strong [] [ text labelText ] ]
197 textField labelText content classes msg =
[all …]
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/resources/qml/Governikus/Global/
H A DLabeledText.qml11 property alias label: labelText.text
12 property alias labelStyle: labelText.textStyle
23 Accessible.name: labelText.text + d.effectiveSeparator + bodyText.text
26 implicitWidth: Math.max(labelText.implicitWidth, bodyText.implicitWidth)
32 readonly property string accessibleSeparator: labelText.text.trim().endsWith(":") ? " " : ": "
33 …readonly property string effectiveSeparator: labelText.visible && bodyText.visible ? accessibleSep…
50 id: labelText
/dports/emulators/cemu/CEmu-1.3/gui/qt/keypad/
H A Dotherkey.h19 QString labelText, QString secondText = {}, QString alphaText = {},
23 labelText, secondText, alphaText, right, left, labelHeight} { }
25 QString labelText, QString secondText, QString alphaText = {},
29 config.otherColor, config.textColor, labelText, secondText, alphaText,
30 … Qt::AlignHCenter | (labelText.contains(QStringLiteral("^")) ? Qt::AlignTop : Qt::AlignVCenter),
31 Qt::AlignVCenter | (alphaText.isNull() ? labelText == QStringLiteral("on") ?
/dports/audio/spotify-qt/spotify-qt-3.7/src/widget/
H A Dloader.cpp7 labelText = label->text(); in Loader()
17 if (label == nullptr || label->text() != labelText) in timeout()
24 labelText = labelText.length() >= limit in timeout()
27 label->setText(labelText); in timeout()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/
H A DMultipleInputDialog.java105 public void addBrowseField(String labelText, String initialValue, boolean allowsEmpty) { in addBrowseField() argument
106 fieldList.add(new FieldSummary(BROWSE, labelText, initialValue, allowsEmpty)); in addBrowseField()
108 public void addTextField(String labelText, String initialValue, boolean allowsEmpty) { in addTextField() argument
109 fieldList.add(new FieldSummary(TEXT, labelText, initialValue, allowsEmpty)); in addTextField()
112 fieldList.add(new FieldSummary(VARIABLE, labelText, initialValue, allowsEmpty)); in addVariablesField()
117 label.setText(labelText); in createTextField()
122 text.setData(FIELD_NAME, labelText); in createTextField()
149 label.setText(labelText); in createBrowseField()
163 text.setData(FIELD_NAME, labelText); in createBrowseField()
213 label.setText(labelText); in createVariablesField()
[all …]
/dports/audio/bshapr-lv2/BShapr-0.13/src/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 oldText = labelText; in operator =()
73 if (text != labelText) in setText()
76 labelText = text; in setText()
83 oldText = labelText; in setText()
200 if (labelText != oldText) in applyEdit()
203 oldText = labelText; in applyEdit()
211 if (labelText != oldText) setText (oldText); in discardEdit()
[all …]
/dports/audio/bamp-lv2/BAmp-fe91b838f2ec801df55b12ffbdf6c6a4ab4ef093/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 oldText = labelText; in operator =()
73 if (text != labelText) in setText()
76 labelText = text; in setText()
83 oldText = labelText; in setText()
200 if (labelText != oldText) in applyEdit()
203 oldText = labelText; in applyEdit()
211 if (labelText != oldText) setText (oldText); in discardEdit()
[all …]
/dports/audio/bschaffl-lv2/BSchaffl-1.4.8/src/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 oldText = labelText; in operator =()
73 if (text != labelText) in setText()
76 labelText = text; in setText()
83 oldText = labelText; in setText()
200 if (labelText != oldText) in applyEdit()
203 oldText = labelText; in applyEdit()
211 if (labelText != oldText) setText (oldText); in discardEdit()
[all …]
/dports/audio/bslizr-lv2/BSlizr-1.2.16/src/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 oldText = labelText; in operator =()
73 if (text != labelText) in setText()
76 labelText = text; in setText()
83 oldText = labelText; in setText()
200 if (labelText != oldText) in applyEdit()
203 oldText = labelText; in applyEdit()
211 if (labelText != oldText) setText (oldText); in discardEdit()
[all …]
/dports/audio/bsequencer-lv2/BSEQuencer-1.8.10/src/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 oldText = labelText; in operator =()
73 if (text != labelText) in setText()
76 labelText = text; in setText()
83 oldText = labelText; in setText()
200 if (labelText != oldText) in applyEdit()
203 oldText = labelText; in applyEdit()
211 if (labelText != oldText) setText (oldText); in discardEdit()
[all …]
/dports/audio/boops-lv2/BOops-1.8.2/src/BWidgets/
H A DLabel.cpp34 labelText (text), in Label()
49 u32labelText = convert.from_bytes (labelText); in Label()
56 labelText = that.labelText; in operator =()
64 oldText = labelText; in operator =()
73 if (text != labelText) in setText()
76 labelText = text; in setText()
83 oldText = labelText; in setText()
200 if (labelText != oldText) in applyEdit()
203 oldText = labelText; in applyEdit()
211 if (labelText != oldText) setText (oldText); in discardEdit()
[all …]

12345678910>>...61