Home
last modified time | relevance | path

Searched refs:LOGFONT (Results 1 – 25 of 1075) sorted by relevance

12345678910>>...43

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/
H A DNONCLIENTMETRICS.java23 public LOGFONT lfCaptionFont = new LOGFONT ();
26 public LOGFONT lfSmCaptionFont = new LOGFONT ();
29 public LOGFONT lfMenuFont = new LOGFONT ();
30 public LOGFONT lfStatusFont = new LOGFONT ();
31 public LOGFONT lfMessageFont = new LOGFONT ();
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/mojo/public/cpp/base/
H A Dlogfont_win_mojom_traits.cc16 StructTraits<mojo_base::mojom::LOGFONTDataView, ::LOGFONT>::bytes( in bytes()
17 const ::LOGFONT& input) { in bytes()
19 sizeof(::LOGFONT)); in bytes()
23 bool StructTraits<mojo_base::mojom::LOGFONTDataView, ::LOGFONT>::Read( in Read()
25 ::LOGFONT* out) { in Read()
28 if (bytes_view.size() != sizeof(::LOGFONT)) in Read()
31 const ::LOGFONT* font = reinterpret_cast<const ::LOGFONT*>(bytes_view.data()); in Read()
35 memcpy(out, font, sizeof(::LOGFONT)); in Read()
/dports/www/chromium-legacy/chromium-88.0.4324.182/mojo/public/cpp/base/
H A Dlogfont_win_mojom_traits.cc16 StructTraits<mojo_base::mojom::LOGFONTDataView, ::LOGFONT>::bytes( in bytes()
17 const ::LOGFONT& input) { in bytes()
19 sizeof(::LOGFONT)); in bytes()
23 bool StructTraits<mojo_base::mojom::LOGFONTDataView, ::LOGFONT>::Read( in Read()
25 ::LOGFONT* out) { in Read()
28 if (bytes_view.size() != sizeof(::LOGFONT)) in Read()
31 const ::LOGFONT* font = reinterpret_cast<const ::LOGFONT*>(bytes_view.data()); in Read()
35 memcpy(out, font, sizeof(::LOGFONT)); in Read()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/wtl/
H A Dwtl10.patch17 LOGFONT lf = {};
18 - ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0) != FALSE);
19 + ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0));
25 LOGFONT lf = {};
27 - ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0) != FALSE);
28 + ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0));
30 - ATLVERIFY(::GetObject(hFont, sizeof(LOGFONT), &lf) == sizeof(LOGFONT));
31 + (void)(ATLVERIFY(::GetObject(hFont, sizeof(LOGFONT), &lf) == sizeof(LOGFONT)));
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/wtl/
H A Dwtl10.patch17 LOGFONT lf = {};
18 - ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0) != FALSE);
19 + ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0));
25 LOGFONT lf = {};
27 - ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0) != FALSE);
28 + ATLVERIFY(::SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(LOGFONT), &lf, 0));
30 - ATLVERIFY(::GetObject(hFont, sizeof(LOGFONT), &lf) == sizeof(LOGFONT));
31 + (void)(ATLVERIFY(::GetObject(hFont, sizeof(LOGFONT), &lf) == sizeof(LOGFONT)));
/dports/editors/libreoffice/libreoffice-7.2.6.2/external/skia/
H A Dwindows-force-unicode-api.patch.05 @@ -26,7 +26,7 @@ typedef LOGFONTA LOGFONT;
9 -SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
13 * Copy the LOGFONT associated with this typeface into the lf parameter. Note
14 @@ -34,7 +34,7 @@ SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
18 -SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
22 * Set an optional callback to ensure that the data behind a LOGFONT is loaded.
23 @@ -42,7 +42,7 @@ SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
27 -SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
H A Dwindows-do-not-modify-logfont.patch.05 SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT& origLF) {
6 LOGFONT lf = origLF;
12 @@ -363,7 +363,7 @@ SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT& origLF) {
14 …sk_sp<SkTypeface> SkCreateFontMemResourceTypefaceFromLOGFONT(const LOGFONT& origLF, HANDLE fontMem…
15 LOGFONT lf = origLF;
23 LOGFONT lf = typeface->fLogFont;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/gfx/
H A Dsystem_fonts_win_unittest.cc37 LOGFONT CreateLOGFONT(const base::char16* name, LONG height) { in CreateLOGFONT()
38 LOGFONT logfont = {}; in CreateLOGFONT()
78 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
86 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
94 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
108 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
122 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
136 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
150 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
157 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/gfx/
H A Dsystem_fonts_win_unittest.cc37 LOGFONT CreateLOGFONT(const base::char16* name, LONG height) { in CreateLOGFONT()
38 LOGFONT logfont = {}; in CreateLOGFONT()
78 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
86 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
94 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
108 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
122 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -12); in TEST_F()
136 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
150 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
157 LOGFONT logfont = CreateLOGFONT(kSegoeUI, -10); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/include/ports/
H A DSkTypeface_win.h18 typedef LOGFONTW LOGFONT; typedef
21 typedef LOGFONTA LOGFONT; typedef
29 SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
37 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
45 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/include/ports/
H A DSkTypeface_win.h18 typedef LOGFONTW LOGFONT; typedef
21 typedef LOGFONTA LOGFONT; typedef
29 SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
37 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
45 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/include/ports/
H A DSkTypeface_win.h18 typedef LOGFONTW LOGFONT; typedef
21 typedef LOGFONTA LOGFONT; typedef
29 SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
37 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
45 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/include/ports/
H A DSkTypeface_win.h18 typedef LOGFONTW LOGFONT; typedef
21 typedef LOGFONTA LOGFONT; typedef
29 SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
37 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
45 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
/dports/www/firefox/firefox-99.0/gfx/skia/skia/include/ports/
H A DSkTypeface_win.h18 typedef LOGFONTW LOGFONT; typedef
21 typedef LOGFONTA LOGFONT; typedef
29 SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
37 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
45 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/include/ports/
H A DSkTypeface_win.h18 typedef LOGFONTW LOGFONT; typedef
21 typedef LOGFONTA LOGFONT; typedef
29 SK_API SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
37 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
45 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
/dports/www/firefox-esr/firefox-91.8.0/gfx/2d/
H A DScaledFontWin.cpp27 ScaledFontWin::ScaledFontWin(const LOGFONT* aFont, in ScaledFontWin()
86 if (aDataLength < sizeof(LOGFONT)) { in CreateFromFontDescriptor()
91 const LOGFONT* logFont = reinterpret_cast<const LOGFONT*>(aData); in CreateFromFontDescriptor()
100 if (aInstanceDataLength < sizeof(LOGFONT)) { in CreateScaledFont()
105 reinterpret_cast<const LOGFONT*>(aInstanceData), this, aGlyphSize); in CreateScaledFont()
/dports/www/firefox/firefox-99.0/gfx/2d/
H A DScaledFontWin.cpp23 ScaledFontWin::ScaledFontWin(const LOGFONT* aFont, in ScaledFontWin()
82 if (aDataLength < sizeof(LOGFONT)) { in CreateFromFontDescriptor()
87 const LOGFONT* logFont = reinterpret_cast<const LOGFONT*>(aData); in CreateFromFontDescriptor()
96 if (aInstanceDataLength < sizeof(LOGFONT)) { in CreateScaledFont()
101 reinterpret_cast<const LOGFONT*>(aInstanceData), this, aGlyphSize); in CreateScaledFont()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/2d/
H A DScaledFontWin.cpp27 ScaledFontWin::ScaledFontWin(const LOGFONT* aFont, in ScaledFontWin()
86 if (aDataLength < sizeof(LOGFONT)) { in CreateFromFontDescriptor()
91 const LOGFONT* logFont = reinterpret_cast<const LOGFONT*>(aData); in CreateFromFontDescriptor()
100 if (aInstanceDataLength < sizeof(LOGFONT)) { in CreateScaledFont()
105 reinterpret_cast<const LOGFONT*>(aInstanceData), this, aGlyphSize); in CreateScaledFont()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/2d/
H A DScaledFontWin.cpp27 ScaledFontWin::ScaledFontWin(const LOGFONT* aFont, in ScaledFontWin()
82 if (aDataLength < sizeof(LOGFONT)) { in CreateFromFontDescriptor()
87 const LOGFONT* logFont = reinterpret_cast<const LOGFONT*>(aData); in CreateFromFontDescriptor()
96 if (aInstanceDataLength < sizeof(LOGFONT)) { in CreateScaledFont()
101 reinterpret_cast<const LOGFONT*>(aInstanceData), this, aGlyphSize); in CreateScaledFont()
/dports/x11/workrave/workrave-1.10.44/frontend/applets/win32/src/
H A DTimeBar.h82 LOGFONT lfCaptionFont;
85 LOGFONT lfSmCaptionFont;
88 LOGFONT lfMenuFont;
89 LOGFONT lfStatusFont;
90 LOGFONT lfMessageFont;
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/3rdparty/opennurbs/
H A Dopennurbs_font.h50 ON_Font( const LOGFONT& logfont );
51 ON_Font& operator=( const LOGFONT& logfont );
250 bool SetLogFont( const LOGFONT& logfont );
251 const LOGFONT& LogFont() const;
275 LOGFONT m_logfont;
/dports/math/gismo/gismo-21.12.0/external/onurbs/
H A Dopennurbs_font.h50 ON_Font( const LOGFONT& logfont );
51 ON_Font& operator=( const LOGFONT& logfont );
250 bool SetLogFont( const LOGFONT& logfont );
251 const LOGFONT& LogFont() const;
275 LOGFONT m_logfont;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/System/Drawing/
H A DNativeMethods.cs96 public SafeNativeMethods.LOGFONT lfCaptionFont;
102 public SafeNativeMethods.LOGFONT lfSmCaptionFont;
108 public SafeNativeMethods.LOGFONT lfMenuFont;
112 public SafeNativeMethods.LOGFONT lfStatusFont;
116 public SafeNativeMethods.LOGFONT lfMessageFont;
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/2d/
H A DScaledFontWin.cpp27 ScaledFontWin::ScaledFontWin(const LOGFONT* aFont, in ScaledFontWin()
82 if (aDataLength < sizeof(LOGFONT)) { in CreateFromFontDescriptor()
87 const LOGFONT* logFont = reinterpret_cast<const LOGFONT*>(aData); in CreateFromFontDescriptor()
96 if (aInstanceDataLength < sizeof(LOGFONT)) { in CreateScaledFont()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/win/
H A DFontCacheWin.cpp77 *reinterpret_cast<LOGFONT*>(logFont) = createFontRecord->elfw.elfLogFont; in metaFileEnumProc()
180 LOGFONT lf; in createMLangFont()
181 GetObject(MLangFont, sizeof(LOGFONT), &lf); in createMLangFont()
246 LOGFONT logFont; in getFontDataForCharacters()
276 LOGFONT logFont; in getFontDataForCharacters()
342 LOGFONT defaultGUILogFont; in getLastResortFallbackFont()
412 LOGFONT m_chosen;
452 LOGFONT logFont; in createGDIFont()
539 LOGFONT logFont; in getTraitsInFamily()
576 LOGFONT logFont; in createFontPlatformData()
[all …]

12345678910>>...43