Home
last modified time | relevance | path

Searched refs:textDisplay (Results 1 – 25 of 54) sorted by relevance

123

/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/mobiletheme/src/spark/skins/mobile/
H A DTextAreaSkin.as198 if (!textDisplay)
325 textDisplay.commitStyles();
328 textDisplay.minWidth = textDisplay.minHeight = NaN;
377 textDisplay.commitStyles();
456 // grab new measured textDisplay height after the textDisplay has taken its final width
695 if (textDisplay.scrollV > 1)
696 textDisplay.scrollV = 1;
697 if (textDisplay.scrollH > 0)
698 textDisplay.scrollH = 0;
798 if (textDisplay)
[all …]
H A DTextInputSkin.as152 if (textDisplay)
155 var oldText:String = textDisplay.text;
158 textDisplay.text = "Wj";
159 textDisplay.commitStyles();
162 textDisplay.text = oldText;
216 if (textDisplay)
232 textDisplay.leftMargin = paddingLeft;
233 textDisplay.rightMargin = paddingRight;
238 textDisplay.styleChanged(null);
239 textDisplay.commitStyles();
[all …]
H A DStageTextInputSkin.as86 var textHeight:Number = getElementPreferredHeight(textDisplay);
89 if (textDisplay)
91 textDisplay.commitStyles();
92 setElementSize(textDisplay, unscaledTextWidth, unscaledTextHeight);
93 setElementPosition(textDisplay, paddingLeft, textY);
H A DStageTextAreaSkin.as126 if (textDisplay)
137 textDisplay.commitStyles();
138 setElementSize(textDisplay, unscaledTextWidth, unscaledTextHeight + heightAdjustment);
139 setElementPosition(textDisplay, paddingLeft, paddingTop - verticalPosAdjustment);
/dports/comms/qsstv/qsstv/widgets/
H A Dtextdisplay.cpp4 textDisplay::textDisplay(QWidget *parent) : in textDisplay() function in textDisplay
6 ui(new Ui::textDisplay) in textDisplay()
11 textDisplay::~textDisplay() in ~textDisplay()
17 void textDisplay::clear() in clear()
22 void textDisplay::append(QString t) in append()
H A Dtextdisplay.h7 class textDisplay; variable
10 class textDisplay : public QDialog
15 explicit textDisplay(QWidget *parent = 0);
16 ~textDisplay();
21 Ui::textDisplay *ui;
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/spark/components/supportClasses/
H A DSkinnableTextBase.as501 // textDisplay
710 if (textDisplay)
743 if (textDisplay)
911 if (textDisplay)
924 if (textDisplay)
967 if (textDisplay)
980 if (textDisplay)
1062 if (textDisplay)
1258 return textDisplay ? textDisplay.selectionActivePosition : -1;
1291 return textDisplay ? textDisplay.selectionAnchorPosition : -1;
[all …]
H A DRichEditableTextContainerManager.as89 textDisplay = container;
106 private var textDisplay:RichEditableText;
123 var width:Number = textDisplay.width;
124 var height:Number = textDisplay.height;
220 if (!textDisplay.undoManager)
226 return textDisplay.undoManager;
349 textDisplay.getFocus() == textDisplay)
614 textDisplay.focusInHandler(event);
624 textDisplay.focusOutHandler(event);
634 textDisplay.keyDownHandler(event);
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/spark/components/
H A DNumericStepper.as306 public var textDisplay:TextInput; variable in spark.components.NumericStepper
415 if (textDisplay && textDisplay.textDisplay)
416 return textDisplay.textDisplay.editable;
674 if (instance == textDisplay)
712 stage.focus = textDisplay.textDisplay as InteractiveObject;
716 if (textDisplay.textDisplay &&
717 (textDisplay.textDisplay.editable || textDisplay.textDisplay.selectable))
719 textDisplay.textDisplay.selectAll();
729 return target == textDisplay.textDisplay;
791 if ((textDisplay.text && textDisplay.text.length != value.toString().length)
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/automation_spark/src/spark/automation/delegates/components/
H A DSparkNumericStepperAutomationImpl.as153 var number:Number = Number(ns.textDisplay.textDisplay.text);
176 help.replayKeyboardEvent(ns.textDisplay,
186 if(ns.textDisplay.text.length)
187 ns.value = Number(ns.textDisplay.text);
193 ns.textDisplay.invalidateProperties();
194 ns.textDisplay.validateNow();
204 ns.textDisplay.insertText("");
210 ns.value = Number(ns.textDisplay.text);
267 // We get this handler for events from ns.textDisplay.textDisplay also.
269 // of NumericStepper) and ns.textDisplay.textDisplay (which is the RichEditableText of
[all …]
H A DSparkComboBoxAutomationImpl.as181 sparkComboBox.textInput.textDisplay.dispatchEvent(ke);
190 sparkComboBox.textInput.textDisplay.dispatchEvent(ke);
195 … return RichEditableText(sparkComboBox.textInput.textDisplay).replayAutomatableEvent(event);
202 return help.replayKeyboardEvent(sparkComboBox.textInput.textDisplay,
207 // Instead of replaying it on textDisplay, we handle it explicitly here
214 sparkComboBox.textInput.textDisplay.setFocus();
225 sparkComboBox.textInput.textDisplay.dispatchEvent(ke);
232 sparkComboBox.textInput.textDisplay.insertText(text.charAt(i));
238 sparkComboBox.textInput.textDisplay.dispatchEvent(te);
243 sparkComboBox.textInput.textDisplay.dispatchEvent(ke);
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/spark/accessibility/
H A DNumericStepperAccImpl.as199 var textDisplay:TextInput = NumericStepper(master).textDisplay;
200 if (textDisplay)
241 var textDisplay:TextInput;
247 textDisplay = NumericStepper(master).textDisplay;
248 if (SkinPartEvent(event).instance == textDisplay)
250 textDisplay.addEventListener(Event.CHANGE,
252 textDisplay.addEventListener(FocusEvent.FOCUS_IN,
260 textDisplay = NumericStepper(master).textDisplay;
261 if (SkinPartEvent(event).instance == textDisplay)
263 textDisplay.removeEventListener(Event.CHANGE,
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/mobiletheme/src/spark/skins/mobile/supportClasses/
H A DStageTextSkinBase.as151 * textDisplay skin part.
157 public var textDisplay:StyleableStageText; variable in spark.skins.mobile.supportClasses.StageTextSkinBase
183 if (!textDisplay)
185 textDisplay = new StyleableStageText(multiline);
186 textDisplay.editable = true;
188 textDisplay.styleName = this;
189 this.addChild(textDisplay);
331 // for textDisplay, textDisplay will still be on top.
350 if (textDisplay)
351 textHeight = getElementPreferredHeight(textDisplay);
[all …]
H A DTextSkinBase.as111 * textDisplay skin part.
113 public var textDisplay:StyleableTextField; variable in spark.skins.mobile.supportClasses.TextSkinBase
135 if (!textDisplay)
137 textDisplay = StyleableTextField(createInFontContext(StyleableTextField));
138 textDisplay.styleName = this;
139 textDisplay.editable = true;
140 textDisplay.useTightTextBounds = false;
141 addChild(textDisplay);
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/YouTube/
H A DCommentSnippet.php30 public $textDisplay; variable in Google_Service_YouTube_CommentSnippet
116 public function setTextDisplay($textDisplay) argument
118 $this->textDisplay = $textDisplay;
122 return $this->textDisplay;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/YouTube/
H A DCommentSnippet.php31 public $textDisplay; variable in Google_Service_YouTube_CommentSnippet
123 public function setTextDisplay($textDisplay) argument
125 $this->textDisplay = $textDisplay;
129 return $this->textDisplay;
/dports/devel/libgdata/libgdata-0.17.13/gdata/tests/traces/youtube/
H A Dcomment-query121 < "textDisplay": "This is a test comment.",
154 < "textDisplay": "This is a test comment.",
187 < "textDisplay": "This is a test comment.",
220 < "textDisplay": "This is a test comment.",
253 < "textDisplay": "This is a test comment.",
286 < "textDisplay": "This is a test comment.",
319 < "textDisplay": "This is a test comment.",
352 < "textDisplay": "This is a test comment.",
385 < "textDisplay": "This is a test comment.",
418 < "textDisplay": "This is a test comment.",
[all …]
H A Dcomment-query-async-progress-closure156 < "textDisplay": "This is a test comment.",
189 < "textDisplay": "This is a test comment.",
222 < "textDisplay": "This is a test comment.",
255 < "textDisplay": "This is a test comment.",
288 < "textDisplay": "This is a test comment.",
321 < "textDisplay": "This is a test comment.",
354 < "textDisplay": "This is a test comment.",
387 < "textDisplay": "This is a test comment.",
420 < "textDisplay": "This is a test comment.",
453 < "textDisplay": "This is a test comment.",
[all …]
H A Dcomment_query-async156 < "textDisplay": "This is a test comment.",
189 < "textDisplay": "This is a test comment.",
222 < "textDisplay": "This is a test comment.",
255 < "textDisplay": "This is a test comment.",
288 < "textDisplay": "This is a test comment.",
321 < "textDisplay": "This is a test comment.",
354 < "textDisplay": "This is a test comment.",
387 < "textDisplay": "This is a test comment.",
420 < "textDisplay": "This is a test comment.",
453 < "textDisplay": "This is a test comment.",
[all …]
H A Dcomment_query-async-cancellation156 < "textDisplay": "This is a test comment.",
189 < "textDisplay": "This is a test comment.",
222 < "textDisplay": "This is a test comment.",
255 < "textDisplay": "This is a test comment.",
288 < "textDisplay": "This is a test comment.",
321 < "textDisplay": "This is a test comment.",
354 < "textDisplay": "This is a test comment.",
387 < "textDisplay": "This is a test comment.",
420 < "textDisplay": "This is a test comment.",
453 < "textDisplay": "This is a test comment.",
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/automation_spark/src/spark/automation/delegates/components/supportClasses/
H A DSparkSkinnableTextBaseAutomationImpl.as150 // instead of delegating it to its textDisplay
162 if(skinnableTextBase.textDisplay is RichEditableText)
163 … return RichEditableText(skinnableTextBase.textDisplay).replayAutomatableEvent(interaction);
193 if(event1.automationObject == skinnableTextBase.textDisplay)
215 … return new RichEditableTextTabularData(skinnableTextBase.textDisplay as RichEditableText);
321 return (event.target == skinnableTextBase.textDisplay);
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/rio-0.1.20.0/src/RIO/Prelude/
H A DDisplay.hs58 display = display . textDisplay
64 textDisplay :: a -> Text
65 textDisplay = utf8BuilderToText . display function
/dports/devel/stack/stack-2.7.3/_cabal_deps/rio-0.1.20.0/src/RIO/Prelude/
H A DDisplay.hs58 display = display . textDisplay
64 textDisplay :: a -> Text
65 textDisplay = utf8BuilderToText . display function
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/mx/controls/
H A DMXFTETextInput.as208 return textDisplay ? textDisplay.horizontalScrollPosition : 0;
216 if (textDisplay)
217 textDisplay.horizontalScrollPosition = value;
313 // Hide everything in TextInputSkin except the textDisplay and
/dports/emulators/qmc2/qmc2-0.195_4/qmc2/arcade/qml/ToxicWaste/1.1/components/
H A DTextArea.qml15 contentHeight: textDisplay.height
18 id: textDisplay

123