http://bugs.winehq.com/show_bug.cgi?id=697
*** shadow/697 Fri May 17 02:44:48 2002
--- shadow/697.tmp.28410 Fri May 17 02:44:48 2002
***************
*** 0 ****
--- 1,106 ----
+ +============================================================================+
+ | Add support for Type1 fonts using FreeType |
+ +----------------------------------------------------------------------------+
+ | Bug #: 697 Product: Wine |
+ | Status: UNCONFIRMED Version: unspecified |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-gdi |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: fgouget(a)codeweavers.com |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ g List: (1 of 1) First Last Prev Next Show list Query page Enter new
+ bug
+
+
+ Bug Details for Bug 695
+
+
+ Summary:
+
+ Bug#:
+ 695
+
+ Reporter:
+
+ fgouget(a)codeweavers.com (François Gouget)
+ Product:
+
+
+ Add CC:
+
+
+ Cc:
+ Component:
+
+
+ Version:
+
+ Status:
+ NEW
+
+ Severity:
+
+ Assigned To:
+ hdavies(a)codeweavers.com (Huw
+ Davies)
+
+ Target
+ Milestone:
+
+
+ Attachments:
+ Create a new attachment (proposed patch, testcase,
+ etc.)
+
+ Bug 695 depends on:
+
+ Show dependency
+ tree
+ Show dependency
+ graph
+ Bug 695 blocks:
+ 395
+
+
+ Votes for bug 695:
+ 0 Vote for this bug
+
+
+ Additional Comments:
+
+
+
+ Leave as NEW
+ Accept bug (change status to ASSIGNED)
+ Resolve bug
+ Resolve bug, mark it as duplicate of bug #
+ Reassign bug to
+
+
+
+
+
+ Comments:
+
+ Opened: 2002-05-17 02:29
+
+ Same rationale as for .fon files (bug 695) except Type1 fonts are less common,
+ except maybe in publishing houses, and that Windows does not support Postscript
+ fonts out of the box.
+ However, Postscript fonts tend to be more popular on the Unix side so Wine users
+ may be interested in being able to take advantage of the client-side
+ capabilities of FreeType with Wine for their stash of Type1 fonts.
+
+ Huw adds:
+ Care has to be taken with GetGlyphOutline as TT outlines are 2nd order Beziers
+ and Type1 outlines are 3rd order. There's a GGO_NATIVE flag which probably
+ covers us. The trick is to install some Type1 fonts under Windows and find out
+ what it does.
+ Again we have to worry about GetOutlineTextMetrics too.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=696
*** shadow/696 Fri May 17 02:38:44 2002
--- shadow/696.tmp.27988 Fri May 17 02:38:44 2002
***************
*** 0 ****
--- 1,22 ----
+ +============================================================================+
+ | Implement {Add,Remove}FontResource |
+ +----------------------------------------------------------------------------+
+ | Bug #: 696 Product: Wine |
+ | Status: UNCONFIRMED Version: unspecified |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-gdi |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: fgouget(a)codeweavers.com |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ Applications can add fonts at runtime by calling AddFontResource with the path
+ to a font file. Similarly they can call RemoveFontResource to remove a
+ font.These are pretty much unimplementable as long as we use an X font server.
+ However they should be quite easy to implement as long as we are using
+ client-side font rendering.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=695
*** shadow/695 Fri May 17 02:29:16 2002
--- shadow/695.tmp.27432 Fri May 17 02:29:16 2002
***************
*** 0 ****
--- 1,32 ----
+ +============================================================================+
+ | Add support for .fon files using FreeType |
+ +----------------------------------------------------------------------------+
+ | Bug #: 695 Product: Wine |
+ | Status: UNCONFIRMED Version: unspecified |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-gdi |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: fgouget(a)codeweavers.com |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ Rationale:
+ FreeType supports .fon files but not Wine. This means that a Windows application
+ cannot just drop a .fon file in c:\Windows\Fonts and expect it to work like on
+ Windows. Instead the Wine user has to marshall the
+ font, copy it to the right X font server directory, restart the font server,
+ etc. in addition to that, currently if Wine is using FreeType it will not even
+ try to use X fonts so this .fon file will be ignored anyway.
+ So Wine's FreeType support should be extended to also support .fon files.
+
+ Huw adds:
+ We have to have the apis GetGlyphOutline and GetOutlineTextMetrics return
+ something sensible. Actually maybe GetOutlineTextMetrics should just fail. Not
+ sure how hard it is to get the metrics for GetTextMetrics correct.
+
+ We also get support for .pcf/.bdf's almost for free if we get .fon's working.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=694
*** shadow/694 Fri May 17 02:10:08 2002
--- shadow/694.tmp.26326 Fri May 17 02:10:08 2002
***************
*** 0 ****
--- 1,21 ----
+ +============================================================================+
+ | Printing: Type1 font support |
+ +----------------------------------------------------------------------------+
+ | Bug #: 694 Product: Wine |
+ | Status: UNCONFIRMED Version: unspecified |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-gdi |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: fgouget(a)codeweavers.com |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ Once we have Type42 font support (which gives the best results), we can add
+ support for Type1 fonts which will help for compatibility with older printers.
+ Corel's tree has code for Type1 downloading so hopefully it will be possible to
+ leverage this code.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=569
*** shadow/569 Tue Apr 9 07:14:24 2002
--- shadow/569.tmp.11064 Thu May 16 22:09:24 2002
***************
*** 46,48 ****
--- 46,55 ----
------- Additional Comments From marcus(a)jet.franken.de 2002-04-09 07:14 -------
its a wine bug, so wine-bugs
+
+ ------- Additional Comments From galberte(a)neo.lrun.com 2002-05-16 22:09 -------
+ Bug occurs as described. Tested with native comctl32.dll and problem still
+ occurs. Anything that causes a repaint of the MDI window will make the items
+ reappear. That includes overlaying the area with another window, minimizing the
+ MDI window, or the SHADE/UNSHADE. Suspect missing InvalidateRect somewhere in
+ the MDI processing.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=689
*** shadow/689 Thu May 16 20:18:39 2002
--- shadow/689.tmp.4663 Thu May 16 20:46:53 2002
***************
*** 26,28 ****
--- 26,31 ----
Jeremy, could you give me a bit more privileges? At least the possibility of
taking ownership of an unconfirmed bug.
+
+ ------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2002-05-16 20:46 -------
+ Sylvain, which demo? Is it freely downloadable?
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=689
*** shadow/689 Thu May 16 20:07:39 2002
--- shadow/689.tmp.2315 Thu May 16 20:18:39 2002
***************
*** 9,15 ****
+----------------------------------------------------------------------------+
| Assigned To: wine-bugs(a)winehq.com |
| Reported By: spetreolle(a)yahoo.fr |
- | CC list: Cc: |
+----------------------------------------------------------------------------+
| Milestone: TargetMilestone: --- |
| URL: |
--- 9,14 ----
***************
*** 21,23 ****
--- 20,28 ----
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2002-05-16 20:07 -------
Will try to implement that function.
The W is a stub.
+
+ ------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2002-05-16 20:18 -------
+ Could't take ownership (not enough privileges).
+
+ Jeremy, could you give me a bit more privileges? At least the possibility of
+ taking ownership of an unconfirmed bug.
\ No newline at end of file