|
17 | 17 | should be included with this source code. |
18 | 18 |
|
19 | 19 | """ |
20 | | -""" |
21 | | -KNOWN BUGS - |
22 | | - - Mousewheel (on Windows) only works after menu button has been pressed |
23 | | - at least once |
24 | | - - Mousewheel on Linux (wxGTK linked against GTK 1.2) does not work at all |
25 | | - - Vertical text renders horizontally if you use a non TrueType font |
26 | | - on Windows. This is a known wxPython issue. Work-around is to ensure |
27 | | - that you use a TrueType font. |
28 | | - - Pcolor demo puts chart slightly outside bounding box (approx 1-2 pixels |
29 | | - to the bottom left) |
30 | | - - Outputting to bitmap more than 300dpi results in some text being incorrectly |
31 | | - scaled. Seems to be a wxPython bug on Windows or font point sizes > 60, as |
32 | | - font size is correctly calculated. |
33 | | - - Performance poorer than for previous direct rendering version |
34 | | - - TIFF output not supported on wxGTK. This is a wxGTK issue |
35 | | - - Text is not anti-aliased on wxGTK. This is probably a platform |
36 | | - configuration issue. |
37 | | - - If a second call is made to show(), no figure is generated (#866965) |
38 | | -
|
39 | | -Not implemented: |
40 | | - - Printing |
41 | | -
|
42 | | -Fixed this release: |
43 | | - - Bug #866967: Interactive operation issues fixed [JDH] |
44 | | - - Bug #866969: Dynamic update does not function with backend_wx [JOD] |
45 | | -
|
46 | | -Examples which work on this release: |
47 | | - --------------------------------------------------------------- |
48 | | - | Windows 2000 | Linux | |
49 | | - | wxPython 2.3.3 | wxPython 2.4.2.4 | |
50 | | - --------------------------------------------------------------| |
51 | | - - alignment_test.py | TBE | OK | |
52 | | - - arctest.py | TBE | (3) | |
53 | | - - axes_demo.py | OK | OK | |
54 | | - - axes_props.py | OK | OK | |
55 | | - - bar_stacked.py | TBE | OK | |
56 | | - - barchart_demo.py | OK | OK | |
57 | | - - color_demo.py | OK | OK | |
58 | | - - csd_demo.py | OK | OK | |
59 | | - - dynamic_demo.py | N/A | N/A | |
60 | | - - dynamic_demo_wx.py | TBE | OK | |
61 | | - - embedding_in_gtk.py | N/A | N/A | |
62 | | - - embedding_in_wx.py | OK | OK | |
63 | | - - errorbar_demo.py | OK | OK | |
64 | | - - figtext.py | OK | OK | |
65 | | - - histogram_demo.py | OK | OK | |
66 | | - - interactive.py | N/A (2) | N/A (2) | |
67 | | - - interactive2.py | N/A (2) | N/A (2) | |
68 | | - - legend_demo.py | OK | OK | |
69 | | - - legend_demo2.py | OK | OK | |
70 | | - - line_styles.py | OK | OK | |
71 | | - - log_demo.py | OK | OK | |
72 | | - - logo.py | OK | OK | |
73 | | - - mpl_with_glade.py | N/A (2) | N/A (2) | |
74 | | - - mri_demo.py | OK | OK | |
75 | | - - mri_demo_with_eeg.py | OK | OK | |
76 | | - - multiple_figs_demo.py | OK | OK | |
77 | | - - pcolor_demo.py | OK | OK | |
78 | | - - psd_demo.py | OK | OK | |
79 | | - - scatter_demo.py | OK | OK | |
80 | | - - scatter_demo2.py | OK | OK | |
81 | | - - simple_plot.py | OK | OK | |
82 | | - - stock_demo.py | OK | OK | |
83 | | - - subplot_demo.py | OK | OK | |
84 | | - - system_monitor.py | N/A (2) | N/A (2) | |
85 | | - - text_handles.py | OK | OK | |
86 | | - - text_themes.py | OK | OK | |
87 | | - - vline_demo.py | OK | OK | |
88 | | - --------------------------------------------------------------- |
89 | | -
|
90 | | - (2) - Script uses GTK-specific features - cannot not run, |
91 | | - but wxPython equivalent should be written. |
92 | | - (3) - Clipping seems to be broken. |
93 | | -""" |
94 | 20 |
|
95 | 21 | cvs_id = '$Id$' |
96 | 22 |
|
|
0 commit comments