search for: logfont

Displaying 19 results from an estimated 19 matches for "logfont".

2007 Mar 03
0
winhelp.exe - tiny, unreadable fonts (SOLVED)
...ubstituting a bunch of different fonts, from "Aria" to "Courier" to "Courier New,238" and "Times New Roman" for "Helv" and "Helvetica", again, without effect. Then, on line 1209 of programs/winhelp/hlpfile.c I found: hlpfile->fonts[i].LogFont.lfHeight = -ref[dscr_offset + i * 11 + 1] / 2; I tried changing this assignment to 24, and it finally made winhelp's fonts readable. This is obviously not the ideal solution for all screen resolutions. The ideal solution would probably be a font selection dialog within the program, and a lar...
2008 Nov 03
1
possible tcltk event loop problem
...odd is that the Rcmdr has three similar windows -- Script, Output, and Messages, created by the following code: For the messages window: messagesFrame <- tkframe(.commander) putRcmdr("messagesWindow", tktext(messagesFrame, bg="lightgray", font=getRcmdr("logFont"), height=3, width=log.width, wrap="none")) .messages <- MessagesWindow() messagesXscroll <- ttkscrollbar(messagesFrame, orient="horizontal", command=function(...) tkxview(.messages, ...)) messagesYscroll <- ttkscrollbar(messagesFrame, c...
2011 Aug 08
1
Register fonts in Wine
...2.exe, with copying files to different directories. But when I try to list all fonts in my program just like that, I only get the only same result This is my code(midified XPDF-code): Code: EnumFonts(dc, NULL, &WinFontList::enumFunc1, (LPARAM)this); int CALLBACK WinFontList::enumFunc1(CONST LOGFONT *font, CONST TEXTMETRIC *metrics, DWORD type, LPARAM data) { WinFontList *fl = (WinFontList *)data; printf("Font %s\n", font->lfFaceName); return 1; }
2011 Oct 20
2
Locating .tff or .fon file for fonts in C:\Windows\Font
Normally each font has entry in the registry under HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts whereby the registry Name is the font name and the registry Data value is the filename of the font (for example courier.ttf). In my app I use the facename from the LOGFONT structure and the above registry entries to determine the associated ttf file. When I add a font to the C:\Windows\font, the font correctly appears as an available font in the font dialog, but the entry is not listed in HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts. My question is...
2016 Dec 09
0
Wine release 2.0-rc1
...t for IEnumIDList implementation. shell32: Simplify drag drop helper object creation. dwrite: Skip entries prefixed with '@' in system font file enumerator. dwrite: Return zeroed fsCsb for OS/2 table of version 0. dwrite: Fix lfItalic flag as returned by ConvertFontToLOGFONT(). dwrite: Improve lfWeight values returned by ConvertFontToLOGFONT(). dwrite/tests: Use defined symbols when testing LOGFONT fields values. dwrite: Improve face name returned by ConvertFontToLOGFONT(). advapi32: Handle empty kSecCreationDateItemAttr attribute. shell32...
2005 Aug 22
0
R-help Digest, Vol 30, Issue 22
...it is not quite... > > > > Here is some code and a little data dat <- read.table("/home/project5R/datasplf.csv", header=TRUE, sep=",", na.strings="NA", dec=".", strip.white=TRUE) attach(dat) showData(dat, placement='-20+200', font=.logFont, maxwidth=80, maxheight=30) x <- as.matrix(dat) x1 <- as.vector(x[,1]) xd1 <- as.Date(x1, format= "%m-%d-%Y") n <- length(x1) n x2 <- as.vector(x[,2]) length(x2) x3 <- as.vector(x[,3]) length(x3) x4 <- as.vector(x[,4]) x5 <- as.vector(x[,5]) x5[is.na(x5)] <- 0 x...
2012 May 11
0
Wine release 1.5.4
...nt APIs. winex11.drv: Use XK_KP_Decimal as a fallback if XK_KP_Separator doesn't work. gdi32: Add a test for ntmCellHeight calculation. gdiplus: Derive GpFont from GpFontFamily. gdi32: Set tmDigitizedAspectX/Y to 96 instead of 300 for consistency. gdiplus: Retrieve LOGFONT from a GpFont using GdipGetLogFontW instead of accessing it directly. gdiplus: Use appropriate accessors to calculate font height instead of accessing GpFont internals directly. gdiplus: Use OUTLINETEXTMETRIC instead of LOGFONT to store GpFont metrics. gdiplus: Fetch font family m...
2012 Feb 21
2
Dataframes in PLS package
...pls[3],pls[4]) B <- c(pls[5],pls[6],pls[7],pls[8]) I then put these into the data.fram C, retaining the matrix structure per guidelines in the JSS article on the pls package C <- data.frame(h = I(as.matrix(A)), c = I(as.matrix(B))) showData(C, placement='-20+200', font=getRcmdr('logFont'), maxwidth=80, maxheight=30) 63 55 1 0 44 37200 4 0 145 52 1 1 33 69300 4 1 104 32 0 1 68 56900 3 1 109 69 1 1 94 44300 6 1 221 61 0 1 72 79800 6 0 110 40 1 1 48 17600 5 1 194 41 0 0 85 58100 4 0 120 76 1 1 19 76700 3 0 210 61 0 0 41 37600 1 0 243 101 1 1 57 40...
2014 Sep 05
0
Wine release 1.7.26
...rite factory object. dwrite: Store font data in its own structure. dwrite: Store fontface data in its own structure. dwrite: Add face data to font data. dwrite: Implement GetGlyphIndices from the CMAP table. dwrite: Break out basic IDWriteFont creation from requiring a logfont. dwrite: Check if family is set before releasing. dwrite: Implement a list of font data for IDWriteFontFamily. dwrite: Implement GetFontCollection. dwrite: Shift get_font_properties to opentype. dwrite: Shift to using localized string for family name. Austin English (...
2009 Feb 27
0
Wine release 1.1.16
...GdiRealizationInfo flags so that the test passes on Vista. gdi32/tests: GetTextFaceA called with a NULL buffer returns 0 on win98 and winMe. gdi32/tests: Win98 and WinMe actually do set error codes. gdi32/tests: Win9x doesn't ensure the facename is nul terminated. Compare the logfont one element at a time. gdi32: In a Baltic locale the last char of a symbol font is reported as 0xf8fd rather than 0xf0ff. gdi32/tests: Allow the first char code to point to glyph 0 (the .notdef glyph). inetcomm/tests: Object is a static singleton on win95. inetcomm/tests: Ad...
2015 Aug 07
0
Wine release 1.7.49
...mon item dialog. comdlg32: Remove some casts. dwrite: Fix outline translation before rendering. dwrite: Advances and offsets are optional for IDWriteGlyphRunAnalysis. dwrite: Release run info as soon as it's rendered to save some memory. dwrite: Properly initialize LOGFONT returned from ConvertFontToLOGFONT(). dwrite: Implement IsSymbolFont(). dwrite: Use right charmap for symbol encoding. dwrite: Implement CreateGlyphRunAnalysis() from IDWriteFactory2. dwrite: Implement GetColorPaletteCount(). dwrite: Implement GetPaletteEntryCount()....
2015 Feb 20
0
Wine release 1.7.37
...Fix potential crash if script site creation failed. wshom.ocx: Implement RegRead(). wshom.ocx: Implement RegWrite(). dwrite: Use vertical variants in GetGlyphs() when appropriate. dwrite: Fix error code returned by GetFontFromFontFace(). dwrite: Set facename field of a LOGFONT in ConvertFontFaceToLOGFONT(). wshom.ocx: Fix WshShell instance QI behaviour. wshom.ocx: Silence class factory QI fixme. Pierre Schweitzer (1): setupapi: Fix string conversion in SetupGetInfInformationA(). Piotr Caban (7): server: Filter WM_QUIT message in PeekMessage call...
2018 May 25
0
Wine release 3.9
...mum frame latency parameter. d2d1/tests: Add a simple test for creating d2d devices. dwrite: Support IDWriteFontList1 for font families. dwrite: Support IDWriteTextFormat2 for layout. dwrite/tests: Use ARRAY_SIZE() macro in tests. dwrite: Properly truncate face name to LOGFONT size. dwrite/tests: Remove a test failing after recent update. dwrite/tests: Skip some tests on variable fonts. d2d1: Add ID2D1Bitmap1 stub. include: Update with latest DirectWrite API additions. Pablo Martin (6): d3d11: Partially implement d3d11_immediate_context_Cop...
2012 Aug 17
0
Wine release 1.5.11
...ect GdipSaveImageToFile spec entry. include/gdipluspixelformats.h: Avoid explicit TRUE/FALSE in conditional expressions. gdiplus: Add more tests for GdipMeasureString using device with custom resolution. Revert commit b20a1f56b0c915b24f70b8be83fbf76ea7378123. gdiplus: GdipGetLogFontW should transform returned font height using font and device unit/resolution/scale. gdiplus: get_font_hfont helper should transform returned font height using font and device unit/resolution/scale. gdiplus: GdipMeasureString should apply its internal scaling factors to layout rectangle....
2020 Jul 17
0
Wine release 5.13
...inet: Get rid of user buffer in create_cookie_url(). winapi_test: Add/remove headers for urlmon test. Shawn M. Chapla (6): gdiplus/tests: Add metafile DrawDriverString test. gdiplus: Make brush parameter const in brush object serialize helpers. gdiplus/tests: Add additional logfont size tests. gdiplus: Set font emSize to height minus internal leading. gdiplus: Add DrawDriverString record deserialization. gdiplus: Add DrawDriverString serialization. Thomas Crider (1): ntdll: Add missing LC_NUMERIC locale setting to init_locale. Zebediah Figura (68):...
2018 Mar 02
0
Wine release 3.3
...ture_allocate_gl_mutable_storage(). usp10: Use heap_calloc() in ScriptLayout(). usp10: Use heap_calloc() in ScriptTextOut(). Hirofumi Katayama (1): shlwapi: Don't attempt to un-expand ComputerName in PathUnExpandEnvStrings. Huw D. M. Davies (5): riched20: Don't use logfont-style underlining for links. riched20: Return the underline pen as the return value. riched20: Underline links. winedbg: Fix the operand order of some XMM instructions. winedbg: Add cvtdq2ps and cvtps2pd opcodes. Isira Seneviratne (1): ping: Implement -l, -w, -n using...
2007 Nov 09
0
Wine release 0.9.49
...of tape position offsets. wldap32: Fix build against latest OpenLDAP release. mlang: Release EnumRfc1766 object. mlang: Free SCRIPTINFO structure embedded in EnumScript object. mlang: Fix buffer size calculation. usp10: Fix a memory leak. usp10: Fully initialize LOGFONT structure. usp10: Fix a test to not rely on uninitialized memory. usp10: Fix some more memory leaks. Huw Davies (7): inetcomm: Add self-registration code. include: Add a few defines and fill out IMimeMessageCallback. inetcomm: Add a stub for MimeOleCreateVirtualStream...
2008 Oct 24
0
Wine release 1.1.7
...nal VGA/VESA modes & information missing in mode descriptions. winedos: Added/stubbed/documented missing VGA registers. Jeremy White (2): gdi32: Expand maximum font count to 4096, warn when we go over that limit. gdi32/tests: Make the comparison of the enumerated and returned logfont structures actually work. Joris Huizer (1): shlwapi: Fix ASSOC_GetExecutable not to use uninitialised variable. Juan Lang (39): crypt32: Fix more test failures on Win9x. rpcrt4: Add tests for UuidCreate. crypt32: Fix remaining Win9x encoding test failures. crypt32: F...
2010 May 07
0
Wine release 1.1.44
...ps.drv: Remove the unscaled font hack and read the outline directly from the font file. wineps.drv: Make the rectangle an optional parameter to get_bbox(). wineps.drv: Defer accessing the font metrics until we really need them. wineps.drv: Calculate the font size directly from the logfont. wineps.drv: Add world transform support for fonts. wineps.drv: MM_ISOTROPIC and MM_ANISOTROPIC should also have inverted y-transforms (even if the page -> device mapping results in a negative y-scale). gdi32: Fix ExtTextOutA -> W forwarding when ETO_PDY is set. comctl...