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
http://bugs.winehq.com/show_bug.cgi?id=693
*** shadow/693 Thu May 16 20:16:12 2002
--- shadow/693.tmp.2140 Thu May 16 20:16:12 2002
***************
*** 0 ****
--- 1,29 ----
+ +============================================================================+
+ | CD device access doesn't work for IDE SCSI emulation (major 11) |
+ +----------------------------------------------------------------------------+
+ | Bug #: 693 Product: Wine |
+ | Status: UNCONFIRMED Version: 20020509 |
+ | Resolution: Platform: |
+ | Severity: normal OS/Version: All |
+ | Priority: P1 Component: wine-kernel |
+ +----------------------------------------------------------------------------+
+ | Assigned To: wine-bugs(a)winehq.com |
+ | Reported By: vberon(a)mecano.gme.usherb.ca |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | Milestone: TargetMilestone: --- |
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ At the launch of any Windows program (or Winelib program), I get the following
+ error message:
+
+ fixme:cdrom:CDROM_GetIdeInterface major 11 not supported
+
+ My CD devices are /dev/scd0 and /dev/scd1, major 11 minor {0,1}, as I use the
+ IDE SCSI emulation layer in Linux.
+
+ The function CDROM_GetIdeInterface in dlls/ntdll/cdrom.c doesn't find the
+ correct interface (as it's not really identified as a IDE CD).
+
+ Could somebeody look into it?
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=689
*** shadow/689 Thu May 16 15:09:48 2002
--- shadow/689.tmp.1570 Thu May 16 20:07:39 2002
***************
*** 17,19 ****
--- 17,23 ----
| DESCRIPTION |
Running a demo, this function is called and the programs crashes trying to
jump at 0xdeadbeef
+
+ ------- 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.
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=434
*** shadow/434 Thu Apr 18 15:50:54 2002
--- shadow/434.tmp.4718 Thu May 16 14:53:23 2002
***************
*** 7,13 ****
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-misc |
+----------------------------------------------------------------------------+
! | Assigned To: wine-bugs(a)winehq.com |
| Reported By: ivanovich(a)menta.net |
| CC list: Cc: |
+----------------------------------------------------------------------------+
--- 7,13 ----
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-misc |
+----------------------------------------------------------------------------+
! | Assigned To: julliard(a)winehq.com |
| Reported By: ivanovich(a)menta.net |
| CC list: Cc: |
+----------------------------------------------------------------------------+
***************
*** 446,448 ****
--- 446,452 ----
of code is dealing with. Each window 'part' is actually a seperate window
(the top blue bar, the 'inside', the scrollbar..), will all have different
window #'s.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-05-16 14:53 -------
+ Alexandre, according to the comments the issue is caused by your patch.
+ Could you look at it?
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=446
*** shadow/446 Tue Apr 30 14:25:24 2002
--- shadow/446.tmp.3399 Thu May 16 14:35:23 2002
***************
*** 87,89 ****
--- 87,92 ----
http://www.winehq.com/Docs/
Let me know if you need more help/information.
+
+ ------- Additional Comments From apa3a(a)yahoo.com 2002-05-16 14:35 -------
+ Andreas, do you need more help?
\ No newline at end of file
http://bugs.winehq.com/show_bug.cgi?id=609
*** shadow/609 Sun Apr 21 13:05:57 2002
--- shadow/609.tmp.3243 Thu May 16 14:33:45 2002
***************
*** 2,13 ****
| Add BiDi support |
+----------------------------------------------------------------------------+
| Bug #: 609 Product: Wine |
! | Status: NEW 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: |
+----------------------------------------------------------------------------+
--- 2,13 ----
| Add BiDi support |
+----------------------------------------------------------------------------+
| Bug #: 609 Product: Wine |
! | Status: ASSIGNED Version: unspecified |
| Resolution: Platform: |
| Severity: normal OS/Version: All |
| Priority: P1 Component: wine-gdi |
+----------------------------------------------------------------------------+
! | Assigned To: winebugzilla(a)sun.consumer.org.il |
| Reported By: fgouget(a)codeweavers.com |
| CC list: Cc: |
+----------------------------------------------------------------------------+
***************
*** 26,28 ****
--- 26,42 ----
The main work is on GetCharacterPlacement and GetFontLanguageInfo and then
tweaking some controls, starting with the Edit control.
+
+ ------- Additional Comments From winebugzilla(a)sun.consumer.org.il 2002-05-16 14:33 -------
+ IBM's BiDi group have began working on this issue, but it is unclear at what
+ stage they will be able to release their work, if ever. I am taking ownership of
+ this issue, at least until IBM say otherwise.
+
+ In addition to the steps mentioned by François, having ExtTextOut support
+ reordering (calling GetCharacterPlacement?), and finding some way to get proper
+ glyphing for Arabic (the same character is rendered differently based on
+ location in the word). Making sure that "GetTextExtent*" functions work
+ properly, as well as, probably, the rest of the text output functions. When that
+ is done, we will be able to find out what else needs to be done.
+
+ Who said that life was easy ;-).