Searched refs:strText (Results 1 - 25 of 49) sorted by relevance

12

/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUILineTextEdit.h41 void setText(const QString& strText);
72 void setText(const QString& strText) { m_strText = strText; } argument
H A DUIPopupPaneTextPane.cpp32 UIPopupPaneTextPane::UIPopupPaneTextPane(QWidget *pParent, const QString &strText, bool fFocused) argument
36 , m_strText(strText)
46 void UIPopupPaneTextPane::setText(const QString &strText) argument
49 if (m_pLabel->text() == strText)
53 m_strText = strText;
H A DUIPopupPaneTextPane.h47 UIPopupPaneTextPane(QWidget *pParent, const QString &strText, bool fFocused);
50 void setText(const QString &strText);
H A DUISpecialControls.h43 void setText(const QString &strText) { m_pButton->setText(strText); } argument
67 void setText(const QString &strText) { m_pButton->setText(strText); } argument
H A DUIHotKeyEditor.cpp421 QString strText; local
425 strText.append(strModifierNames);
429 strText.append(strMainKeyName);
431 m_pLineEdit->setText(strText);
454 QString strText = m_hotKey.sequence(); local
456 if (!m_fIsModifiersAllowed && !strText.isEmpty())
458 strText.prepend(UIHostCombo::hostComboModifierName());
460 m_pLineEdit->setText(strText);
H A DUILineTextEdit.cpp67 void UITextEditor::setText(const QString& strText) argument
69 m_pTextEdit->setText(strText);
H A DUIMiniToolBar.h83 void setText(const QString &strText);
182 void setText(const QString &strText);
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/
H A DUIWizardExportAppDefs.h40 VMListWidgetItem(QPixmap &pixIcon, QString &strText, QString strUuid, bool fInSaveState, QListWidget *pParent) argument
41 : QListWidgetItem(pixIcon, strText, pParent)
/vbox/src/VBox/Frontends/VirtualBox/src/
H A Dmain.cpp568 QString strText = "<html>"; local
573 strText += QApplication::tr("<b>Cannot access the kernel driver!</b><br/><br/>");
575 strText += g_QStrHintLinuxNoDriver;
577 strText += g_QStrHintOtherNoDriver;
582 strText += g_QStrHintLinuxNoMemory;
586 strText += QApplication::tr("Kernel driver not accessible");
590 strText += g_QStrHintLinuxWrongDriverVersion;
592 strText += g_QStrHintOtherWrongDriverVersion;
596 strText += QApplication::tr("Unknown error %2 during initialization of the Runtime").arg(rc);
599 strText
632 QString strText = QApplication::tr("<html><b>%1 (rc=%2)</b><br/><br/>").arg(szMsgBuf).arg(rc); local
[all...]
H A DUIVMInfoDialog.h102 QString parseStatistics(const QString &strText);
116 /** Helper to set @a strText with HiDPI-aware pixmaps to corresponding @a pTextEdit. */
117 static void setText(QRichTextEdit *pTextEdit, QString strText);
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DUICocoaSpecialControls.h49 void setText(const QString& strText);
103 void insert(const QString &strText);
110 void onTextChanged(const QString &strText);
113 void textChanged(const QString& strText);
/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/
H A DUIGChooserItem.cpp374 const QString &strText)
383 pPainter->drawText(point, strText);
388 QSize UIGChooserItem::textSize(const QFont &font, QPaintDevice *pPaintDevice, const QString &strText) argument
391 if (strText.isEmpty())
396 return QSize(fm.width(strText), fm.height());
410 QString UIGChooserItem::compressText(const QFont &font, QPaintDevice *pPaintDevice, QString strText, int iWidth) argument
413 if (strText.isEmpty())
414 return strText;
418 if (fm.width(strText) <= iWidth)
419 return strText;
372 paintText(QPainter *pPainter, QPoint point, const QFont &font, QPaintDevice *pPaintDevice, const QString &strText) argument
[all...]
H A DUIGChooserHandlerKeyboard.cpp328 QString strText = pEvent->text(); local
329 if (!strText.isEmpty())
330 model()->lookFor(strText);
354 QString strText = pEvent->text(); local
355 if (!strText.isEmpty())
356 model()->lookFor(strText);
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIMessageBox.cpp68 void QIMessageBox::setDetailsText(const QString &strText) argument
71 AssertReturnVoid(!strText.isEmpty());
74 QStringList paragraphs(strText.split("<!--EOP-->", QString::SkipEmptyParts));
114 void QIMessageBox::setButtonText(int iButton, const QString &strText) argument
118 case 0: if (m_pButton1) m_pButton1->setText(strText); break;
119 case 1: if (m_pButton2) m_pButton2->setText(strText); break;
120 case 2: if (m_pButton3) m_pButton3->setText(strText); break;
270 QString strText;
274 case AlertButton_Ok: strText = tr("OK"); role = QDialogButtonBox::AcceptRole; break;
275 case AlertButton_Cancel: strText
[all...]
H A DQIRichTextLabel.h54 void setText(const QString &strText);
H A DQIRichToolButton.h50 /** Defines text-label @a strText. */
51 void setText(const QString &strText);
H A DQIMessageBox.h92 void setDetailsText(const QString &strText);
101 /** Defines @a iButton @a strText. */
102 void setButtonText(int iButton, const QString &strText);
H A DQIRichToolButton.cpp63 void QIRichToolButton::setText(const QString &strText) argument
65 m_pLabel->setText(strText);
H A DQIStatusBarIndicator.cpp135 void QITextStatusBarIndicator::setText(const QString &strText) argument
137 m_pLabel->setText(strText);
H A DQIRichTextLabel.cpp114 void QIRichTextLabel::setText(const QString &strText) argument
117 m_pTextEdit->setHtml(strText);
H A DQIStatusBarIndicator.h118 /** Defines @a strText. */
119 void setText(const QString &strText);
/vbox/src/VBox/Frontends/VirtualBox/src/selector/
H A DUIVMDesktop.h60 void updateDetailsText(const QString &strText);
H A DUIVMDesktop.cpp76 void setText(const QString &strText);
112 void UIVMDesktopPrivate::setText(const QString &strText) argument
118 m_pText->setText(strText);
323 void UIVMDesktop::updateDetailsText(const QString &strText) argument
325 m_pDesktopPrivate->setText(strText);
/vbox/src/VBox/Main/src-all/
H A DVirtualBoxErrorInfoImpl.cpp29 const Utf8Str &strText,
36 m_strText = strText;
46 const Utf8Str &strText,
49 HRESULT hr = init(aResultCode, aIID, pcszComponent, strText, aNext);
26 init(HRESULT aResultCode, const GUID &aIID, const char *pcszComponent, const Utf8Str &strText, IVirtualBoxErrorInfo *aNext) argument
42 initEx(HRESULT aResultCode, LONG aResultDetail, const GUID &aIID, const char *pcszComponent, const Utf8Str &strText, IVirtualBoxErrorInfo *aNext) argument
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/graphics/
H A DUIGraphicsTextPane.h91 const QString &strText, int iWidth, int &iHeight,

Completed in 110 milliseconds

12