X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e3a43801df2f05c057892481df9d3cfe30fd8800..cc24bf919256e8e1d317dbb8e67df6d007d641ea:/docs/html/faqmot.htm
diff --git a/docs/html/faqmot.htm b/docs/html/faqmot.htm
new file mode 100644
index 0000000000..661e0f019b
--- /dev/null
+++ b/docs/html/faqmot.htm
@@ -0,0 +1,84 @@
+
+
+
+
+wxWidgets for Motif FAQ
+
+
+
+
+
+
+
+
+
+
+wxWidgets for Motif FAQ
+
+ |
+
+
+
+
+
+See also top-level FAQ page
+and Unix FAQ page.
+
+List of questions in this category
+
+
+
+
+
+You will need version 1.2 or above. Version 2 should also be fine. Some people
+have had a positive experience with Lesstif,
+a free Motif clone. (Note from Julian Smart - I use the Linux version of MetroLink Motif 1.2.4).
+
+
+
+
+
+The following classes are not yet implemented: wxSpinButton, wxCheckListBox, wxJoyStick,
+wxGLCanvas.
+
+The following classes are not likely to be implemented because there is no sensible
+equivalent on Motif: wxMiniFrame, wxTaskBar.
+
+These features are not yet implemented:
+
+
+- Clipboard and drag and drop support are currently under development.
+
- Support for selection of specific visuals.
+
- Wide character support (but when Unicode is supported under Windows, this support will
+be relatively easy to add).
+
- Configurable colour/font settings (they are currently hard-wired in wxSystemSettings).
+
- A help system (please use wxHelpController and Netscape instead). An HTML widget and help
+system is in preparation.
+
+
+
+
+
+
+Very occasionally you can experience this glitch, probably because sometimes the
+window tries to resize and repaint itself before the final size is known. The workaround
+is to add code like this after window creation and initialization:
+
+
+#ifdef __WXMOTIF__
+ wxNoOptimize noOptimize;
+ window->SetSize(-1, -1, w, h);
+#endif
+
+
+
+
+
+
+
+
+