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