]>
Commit | Line | Data |
---|---|---|
1 | <HTML> | |
2 | ||
3 | <HEAD> | |
4 | <TITLE>wxWindows 2 for Motif FAQ</TITLE> | |
5 | </HEAD> | |
6 | ||
7 | <BODY BGCOLOR=#FFFFFF TEXT=#000000 LINK=#FF0000 VLINK=#000000> | |
8 | ||
9 | <font face="Arial, Lucida Sans, Helvetica"> | |
10 | ||
11 | <table width=100% border=0 cellpadding=5 cellspacing=0> | |
12 | <tr> | |
13 | <td bgcolor="#C4ECF9"> | |
14 | <font size=+1 face="Arial, Lucida Sans, Helvetica" color="#000000"> | |
15 | wxWindows 2 for Motif FAQ | |
16 | </font> | |
17 | </td> | |
18 | </tr> | |
19 | </table> | |
20 | ||
21 | <P> | |
22 | ||
23 | See also <a href="faq.htm">top-level FAQ page</a>. | |
24 | <hr> | |
25 | <h3>List of questions in this category</a></h3> | |
26 | <ul> | |
27 | <li><a href="#versiob">What version of Motif do I need?</a></li> | |
28 | <li><a href="#missing">What features are missing or partially implemented?</a></li> | |
29 | <li><a href="#dialoged">Does Dialog Editor work with wxWindows for Motif?</a></li> | |
30 | <li><a href="#refresh">Why are windows are not refreshed properly until I resize them?</a></li> | |
31 | </ul> | |
32 | <hr> | |
33 | ||
34 | <h3><a name="versiob">What version of Motif do I need?</a></h3> | |
35 | ||
36 | You will need version 1.2 or above. Version 2 should also be fine. Some people | |
37 | have had a positive experience with <a href="www.lesstif.org" target=_top>Lesstif</a>, | |
38 | a free Motif clone. (Note from Julian Smart - I use the Linux version of MetroLink Motif 1.2.4). | |
39 | ||
40 | <P> | |
41 | ||
42 | <h3><a name="missing">What features are missing or partially implemented?</a></h3> | |
43 | ||
44 | The following classes are not yet implemented: wxSpinButton, wxCheckListBox, wxJoyStick, | |
45 | wxGLCanvas.<P> | |
46 | ||
47 | The following classes are not likely to be implemented because there is no sensible | |
48 | equivalent on Motif: wxMiniFrame, wxTaskBar.<P> | |
49 | ||
50 | These features are not yet implemented:<P> | |
51 | ||
52 | <ul> | |
53 | <li>Clipboard and drag and drop support are currently under development. | |
54 | <li>Support for selection of specific visuals. | |
55 | <li>Wide character support (but when Unicode is supported under Windows, this support will | |
56 | be relatively easy to add). | |
57 | <li>Configurable colour/font settings (they are currently hard-wired in wxSystemSettings). | |
58 | <li>A help system (please use wxHelpController and Netscape instead). An HTML widget and help | |
59 | system is in preparation. | |
60 | </ul> | |
61 | ||
62 | <p> | |
63 | ||
64 | <h3><a name="dialoged">Does Dialog Editor work with wxWindows for Motif?</a></h3> | |
65 | ||
66 | Suport for Dialog Editor is almost there, but there are some wrinkles to iron | |
67 | out. You may find it's useful though: compile it and see. | |
68 | <P> | |
69 | ||
70 | <h3><a name="refresh">Why are windows are not refreshed properly until I resize them?</a></h3> | |
71 | ||
72 | Very occasionally you can experience this glitch, probably because sometimes the | |
73 | window tries to resize and repaint itself before the final size is known. The workaround | |
74 | is to add code like this after window creation and initialization:<P> | |
75 | ||
76 | <PRE> | |
77 | #ifdef __WXMOTIF__ | |
78 | wxNoOptimize noOptimize; | |
79 | window->SetSize(-1, -1, w, h); | |
80 | #endif | |
81 | </PRE> | |
82 | <P> | |
83 | ||
84 | ||
85 | </font> | |
86 | ||
87 | </BODY> | |
88 | ||
89 | </HTML> |