Home
last modified time | relevance | path

Searched refs:textToDraw (Results 1 – 25 of 74) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms.VisualStyles/
H A DVisualStyleRenderer.cs151 …public void DrawText (IDeviceContext dc, Rectangle bounds, string textToDraw, bool drawDisabled, T… in DrawText() argument
156 …last_hresult = VisualStyles.UxThemeDrawThemeText (theme, dc, this.part, this.state, textToDraw, fl… in DrawText()
159 public void DrawText (IDeviceContext dc, Rectangle bounds, string textToDraw, bool drawDisabled) in DrawText() argument
161 this.DrawText (dc, bounds, textToDraw, drawDisabled, TextFormatFlags.Default); in DrawText()
164 public void DrawText (IDeviceContext dc, Rectangle bounds, string textToDraw) in DrawText() argument
166 this.DrawText (dc, bounds, textToDraw, false, TextFormatFlags.Default); in DrawText()
328 …public Rectangle GetTextExtent (IDeviceContext dc, Rectangle bounds, string textToDraw, TextFormat… in GetTextExtent() argument
334 …ualStyles.UxThemeGetThemeTextExtent (theme, dc, this.part, this.state, textToDraw, flags, bounds, … in GetTextExtent()
338 public Rectangle GetTextExtent (IDeviceContext dc, string textToDraw, TextFormatFlags flags) in GetTextExtent() argument
344 …ualStyles.UxThemeGetThemeTextExtent (theme, dc, this.part, this.state, textToDraw, flags, out resu… in GetTextExtent()
H A DVisualStylesNative.cs212 …t (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, string textToDraw, TextFormatFlags… in UxThemeGetThemeTextExtent() argument
217 …eme.GetThemeTextExtent (hTheme, dc.GetHdc (), iPartId, iStateId, textToDraw, textToDraw.Length, (i… in UxThemeGetThemeTextExtent()
223 …t (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, string textToDraw, TextFormatFlags… in UxThemeGetThemeTextExtent() argument
227 …eme.GetThemeTextExtent (hTheme, dc.GetHdc (), iPartId, iStateId, textToDraw, textToDraw.Length, (i… in UxThemeGetThemeTextExtent()
H A DIVisualStyles.cs56 …t (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, string textToDraw, TextFormatFlags… in UxThemeGetThemeTextExtent() argument
57 …t (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, string textToDraw, TextFormatFlags… in UxThemeGetThemeTextExtent() argument
/dports/games/residualvm/residualvm-0.3.1/engines/myst3/
H A Dgfx_opengl_shaders.cpp267 Common::String textToDraw = text; in draw2DText() local
268 textToDraw.toUppercase(); in draw2DText()
276 if (_prevText != textToDraw || _prevTextPosition != position) { in draw2DText()
277 _prevText = textToDraw; in draw2DText()
283 float *bufData = new float[16 * textToDraw.size()]; in draw2DText()
286 for (uint i = 0; i < textToDraw.size(); i++) { in draw2DText()
287 Common::Rect textureRect = getFontCharacterRect(textToDraw[i]); in draw2DText()
310 glBufferSubData(GL_ARRAY_BUFFER, 0, textToDraw.size() * 16 * sizeof(float), bufData); in draw2DText()
317 glDrawElements(GL_TRIANGLES, 6 * textToDraw.size(), GL_UNSIGNED_SHORT, 0); in draw2DText()
H A Dgfx_tinygl.cpp205 Common::String textToDraw = text; in draw2DText() local
206 textToDraw.toUppercase(); in draw2DText()
220 for (uint i = 0; i < textToDraw.size(); i++) { in draw2DText()
221 Common::Rect textureRect = getFontCharacterRect(textToDraw[i]); in draw2DText()
H A Dgfx_opengl.cpp215 Common::String textToDraw = text; in draw2DText() local
216 textToDraw.toUppercase(); in draw2DText()
230 for (uint i = 0; i < textToDraw.size(); i++) { in draw2DText()
231 Common::Rect textureRect = getFontCharacterRect(textToDraw[i]); in draw2DText()
/dports/games/scummvm/scummvm-2.5.1/engines/myst3/
H A Dgfx_opengl_shaders.cpp258 Common::String textToDraw = text; in draw2DText() local
259 textToDraw.toUppercase(); in draw2DText()
267 if (_prevText != textToDraw || _prevTextPosition != position) { in draw2DText()
268 _prevText = textToDraw; in draw2DText()
274 float *bufData = new float[16 * textToDraw.size()]; in draw2DText()
277 for (uint i = 0; i < textToDraw.size(); i++) { in draw2DText()
278 Common::Rect textureRect = getFontCharacterRect(textToDraw[i]); in draw2DText()
301 glBufferSubData(GL_ARRAY_BUFFER, 0, textToDraw.size() * 16 * sizeof(float), bufData); in draw2DText()
308 glDrawElements(GL_TRIANGLES, 6 * textToDraw.size(), GL_UNSIGNED_SHORT, 0); in draw2DText()
H A Dgfx_tinygl.cpp187 Common::String textToDraw = text; in draw2DText() local
188 textToDraw.toUppercase(); in draw2DText()
202 for (uint i = 0; i < textToDraw.size(); i++) { in draw2DText()
203 Common::Rect textureRect = getFontCharacterRect(textToDraw[i]); in draw2DText()
H A Dgfx_opengl.cpp209 Common::String textToDraw = text; in draw2DText() local
210 textToDraw.toUppercase(); in draw2DText()
224 for (uint i = 0; i < textToDraw.size(); i++) { in draw2DText()
225 Common::Rect textureRect = getFontCharacterRect(textToDraw[i]); in draw2DText()
/dports/astro/kstars/kstars-3.5.6/kstars/auxiliary/
H A DQRoundProgressBar.cpp327 QString textToDraw(m_format); in valueToText() local
330 textToDraw.replace("%v", QString::number(value, 'f', m_decimals)); in valueToText()
335 textToDraw.replace("%p", QString::number(procent, 'f', m_decimals)); in valueToText()
339 textToDraw.replace("%m", QString::number(m_max - m_min + 1, 'f', m_decimals)); in valueToText()
341 return textToDraw; in valueToText()
/dports/graphics/qvge/qvge-0.6.3/src/3rdParty/qsint-widgets/
H A Droundprogressbar.cpp348 QString textToDraw(m_format); in valueToText() local
351 textToDraw.replace("%v", QString::number(value, 'f', m_decimals)); in valueToText()
356 textToDraw.replace("%p", QString::number(procent, 'f', m_decimals)); in valueToText()
360 textToDraw.replace("%m", QString::number(m_max - m_min + 1, 'f', m_decimals)); in valueToText()
362 return textToDraw; in valueToText()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/
H A DHyperlink.java258 String textToDraw = getText(); in paintText() local
260 textToDraw = shortenText(gc, getText(), bounds.width); in paintText()
268 gc.drawText(textToDraw, bounds.x, bounds.y, true); in paintText()
/dports/graphics/qgis/qgis-3.22.3/src/core/layout/
H A Dqgslayoutitemlabel.cpp147 const QString textToDraw = currentText(); in draw() local
149 …QgsLayoutUtils::drawText( painter, painterRect, textToDraw, mFont, mFontColor, mHAlignment, mVAlig… in draw()
161 const QString textToDraw = currentText(); in contentChanged() local
174 mWebPage->mainFrame()->setHtml( textToDraw, baseUrl ); in contentChanged()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/layout/
H A Dqgslayoutitemlabel.cpp146 const QString textToDraw = currentText(); in draw() local
148 …QgsLayoutUtils::drawText( painter, painterRect, textToDraw, mFont, mFontColor, mHAlignment, mVAlig… in draw()
160 const QString textToDraw = currentText(); in contentChanged() local
173 mWebPage->mainFrame()->setHtml( textToDraw, baseUrl ); in contentChanged()
/dports/devel/kdevelop/kdevelop-21.12.3/kdevplatform/sublime/
H A Didealtoolbutton.cpp143 …QString textToDraw = fontMetrics().elidedText(text(), Qt::ElideRight, contentsRect().height() - ic… in paintEvent() local
164 option.text = textToDraw; in paintEvent()
/dports/audio/praat/praat-6.2.03/fon/
H A DRunnerMFC.cpp118 conststring32 textToDraw = response -> label.get(); // can be overridden in drawNow() local
123 textToDraw = visibleText_p; // override in drawNow()
127 if (str32nequ (textToDraw, U"\\FI", 3)) { in drawNow()
129 MelderDir_relativePathToFile (& experiment -> rootDirectory, textToDraw + 3, & file); in drawNow()
144 0.5 * (response -> bottom + response -> top), textToDraw); in drawNow()
/dports/graphics/tiled/tiled-1.7.2/src/tiled/
H A Dtiledproxystyle.cpp828 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
831 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
834 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
849 const QString textToDraw = s.left(t).toString(); in drawControl() local
852 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
855 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/general/
H A DThornStyle.cpp880 const QString textToDraw = s.mid(t + 1); in drawControl() local
881 painter->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
888 const QString textToDraw = s.left(t); in drawControl() local
889 painter->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqwindowsstyle.cpp1204 const QString textToDraw = s.mid(t + 1).toString(); in drawControl() local
1207 p->drawText(vShortcutRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1210 p->drawText(vShortcutRect, text_flags, textToDraw); in drawControl()
1217 const QString textToDraw = s.left(t).toString(); in drawControl() local
1220 p->drawText(vTextRect.adjusted(1, 1, 1, 1), text_flags, textToDraw); in drawControl()
1223 p->drawText(vTextRect, text_flags, textToDraw); in drawControl()

123