home *** CD-ROM | disk | FTP | other *** search
/ ftp.pasteur.org/FAQ/ / ftp-pasteur-org-FAQ.zip / FAQ / motif-faq / part2 < prev    next >
Encoding:
Internet Message Format  |  2004-05-05  |  36.5 KB

  1. Path: senator-bedfellow.mit.edu!dreaderd!not-for-mail
  2. Message-ID: <motif-faq/part2_1083675484@rtfm.mit.edu>
  3. Supersedes: <motif-faq/part2_1082292761@rtfm.mit.edu>
  4. Expires: 17 Jun 2004 12:58:04 GMT
  5. References: <motif-faq/part1_1083675484@rtfm.mit.edu>
  6. X-Last-Updated: 2002/01/31
  7. Organization: none
  8. Subject: Motif FAQ (Part 2 of 9)
  9. Newsgroups: comp.windows.x.motif,comp.answers,news.answers
  10. Keywords: FAQ question answer
  11. From: kenton@rahul.net (Ken Lee)
  12. Reply-To: kenton@rahul.net (Ken Lee)
  13. Approved: news-answers-request@MIT.EDU
  14. Followup-To: poster
  15. Summary: Motif Frequently Asked Questions (with answers).
  16. Originator: faqserv@penguin-lust.MIT.EDU
  17. Date: 04 May 2004 12:59:10 GMT
  18. Lines: 812
  19. NNTP-Posting-Host: penguin-lust.mit.edu
  20. X-Trace: 1083675550 senator-bedfellow.mit.edu 580 18.181.0.29
  21. Xref: senator-bedfellow.mit.edu comp.windows.x.motif:75185 comp.answers:57050 news.answers:270854
  22.  
  23. Archive-name: motif-faq/part2
  24. Last-modified: 1 FEB 2002
  25. Posting-Frequency: irregular
  26. Organization: Kenton Lee, X/Motif Consultant, http://www.rahul.net/kenton/
  27. URL:  http://www.rahul.net/kenton/mfaq.html
  28. Version: 8.1
  29.  
  30. -----------------------------------------------------------------------------
  31. Subject: 20)  Where can I find Motif 2.1 documentation?
  32. [Last modified: Mar 98]
  33.  
  34. Answer: A full listing of current Motif and CDE manuals in book form is
  35. available at http://www.opengroup.org/pubs/catalog/mo.htm
  36.  
  37. -----------------------------------------------------------------------------
  38. Subject: 21)*  Is the official Motif documentation available on-line?
  39. [Last modified: Jan 02]
  40.  
  41. Answer: Open Motif documentation in PDF and PostScript formats is available
  42. at:
  43.  
  44. http://www.opengroup.org/openmotif/docs/
  45.  
  46. The O'Reilly Motif tutorial books are available at:
  47.  
  48. http://www.ist.co.uk/NEWS/archive/motifbooks.html
  49. http://www.oreilly.com/openbook/motif/
  50.  
  51. Here are some Russian translations of the Motif manuals:
  52.  
  53. http://motif.hut.ru/
  54.  
  55. For other on-line Motif documentation, please see:
  56.  
  57. http://www.rahul.net/kenton/xsites.framed.html
  58.  
  59.  
  60. Ken Lee, http://www.rahul.net/kenton/
  61.  
  62. -----------------------------------------------------------------------------
  63. Subject: 22)  I want to use C++ with Motif. Where can I find C++ examples?
  64. Motif 2.0 supports native C++ classes but I can't find documentation.
  65. [Last modified: Sept 95]
  66.  
  67. Answer: Doug Rand <drand@sgi.com> writes: "There are some examples in the
  68. demos tree, look under demos/lib/ExmCxx for widget examples.  The C++ support
  69. was only a widget writer's tool.  When the widget writer's guide is out, you
  70. can also look in that for documentation."
  71.  
  72. Scott W. Sadler <sws@iti-oh.com> replied to a related question about combining
  73. Motif with C++: "There are two books available (that I know of):
  74.  
  75.     Object-Oriented Programming with C++ and OSF/Motif - Second Edition
  76.     Doug Young 0-13-209255-7 (c) 1995
  77.  
  78.     Using Motif with C++
  79.     Daniel Bernstein 0-13-207390-0 or 1-884842-06-2 (c) 1995"
  80.  
  81. See also the subject: "Is there a C++ binding for Motif?"
  82.  
  83. -----------------------------------------------------------------------------
  84. Subject: 23)  Is Motif 2.0 backward compatible with Motif 1.2?  Does a program
  85. written for Motif 1.2 compile and run with Motif 2.0?
  86. [Last modified: Jan 96]
  87.  
  88. Answer: (See also the next subject.) Doug Rand <drand@sgi.com> writes: "It is
  89. backward compatible except where it isn't :)
  90.  
  91. 1) Subclassed widgets which do not use XmResolvePartOffsets won't work.
  92.  
  93. 2) If you free your XmStrings using any technique other than XmStringFree, it
  94. is quite likely that your program either won't compile, or will crash with a
  95.  
  96.  
  97. core dump at runtime. [Wording change for (2) provided by Alan Ezust
  98. (ezust@learnix.ca).]
  99.  
  100. 3) If you use libMrm and relink with the new shared library,  you'll need to
  101. make the new modern .uid files (but if you wait for the Motif from CDE you
  102. don't need to do this one).
  103.  
  104. 4) If you assume that XmStrings are ASN.1 strings and play with them, it won't
  105. work.  They are now data structures.  But the good news is that XmStringCopy
  106. just increments a reference count now.
  107.  
  108. Note that #1 and #2 where always documented this way and aren't supposed to
  109. work.
  110.  
  111. Otherwise,  it's pretty compatible.  We relinked a number of things and they
  112. continued fine.  [These] include xrn (Motif), and a couple of other moderately
  113. big things.  I want to say we did xmosaic,  but I can't remember if I'm right
  114. about that.
  115.  
  116. #1 isn't a problem if you recompile your subclassed widgets.  But then there
  117. is a source compatibility problem that you may need to include the obsolete
  118. modules for the _Xm functions.  Proper 2.0 subclasses use Xme functions,  and
  119. there is even a document."
  120.  
  121. -----------------------------------------------------------------------------
  122. Subject: 24)  How compatible are Motif 1.2.* and X11R6?
  123. [Last modified: July 96]
  124.  
  125. Answer: (See also the previous subject.) This is actually several related
  126. questions with answers from David B. Lewis (d.lewis@opengroup.org) and Kenton
  127. Lee (http://www.rahul.net/kenton/).
  128.  
  129.  1. Is it possible to run an X11R6 server with a Motif 1.2.* runtime
  130.  environment (Motif libs and Motif Window Manager)?
  131.  
  132. David> Yes. The X11 protocol has not changed in its various versions, so
  133. all X servers are compatible. There are differences, though, in
  134. the fonts that are available and in a few of the gray areas in the
  135. interpretation of the protocol. The fonts distributed by the X
  136. Consortium form a standard set, though, and I know of no cases in
  137. which changes in X11R6 cause problems for Motif programs (we are
  138. using Motif with X11R6 servers here).
  139.  
  140.  2. Is there any possible conflict with Motif 1.2.* applications and an
  141.  X11R6 server (assuming a Motif 1.2.* runtime environment)?
  142.  
  143. David> The only situation that I could imagine is a case in which Motif
  144. 1.2 code was written to depend on a particular bug or behavior of
  145. an X11R5 server; I know of no such cases. Because of the stability
  146. of the X11 protocol, Motif 1.2 programs should work with any
  147. available X server, current and future.
  148.  
  149.  3. If Motif 2.0 is installed such that the Motif libraries and mwm are
  150.  versions 2.0, is there 100% binary compatibility with statically linked
  151.  Motif 1.2.* applications? If not, what are the known or potential problems?
  152.  
  153. David> There are additional support files in both the Motif and X11 areas
  154. which are used at run-time. There are no known problems using Motif
  155. 1.2 *static* applications in a Motif 2.0 environment.
  156.  
  157. Kenton writes: R6 was designed to be backwards binary compatible with R5 and
  158. most vendors have done a good job in implementing this.  Still, I wouldn't
  159. recommend that my customers do this until I tested configurations similar to
  160. theirs.
  161.  
  162. Motif 2.0 is backwards compatible with Motif 1.X in most cases.  I think Doug
  163. Rand's comments in [the previous subject of the Motif FAQ] covers the
  164. important issues.  In general, well written applications shouldn't have
  165. problems, but some applications aren't well written.  Again, I would test
  166. before making recommendations to my customers.
  167.  
  168. The above comments apply to run-time linking (shared library) compatibility.
  169. If you statically link, the only problems I can imagine are the common ones
  170. like installed fonts, supported server extensions, input methods, color name
  171. databases, default visual types, etc.
  172.  
  173. -----------------------------------------------------------------------------
  174. Subject: 25)  Why aren't the big UNIX vendors shipping Motif 2.0?
  175. [Last modified: Aug 98]
  176.  
  177. Answer: Most of these companies decided to move to CDE 1.0 first.  CDE 1.0
  178. uses Motif 1.2.5, which is not binary compatible with Motif 2.0.
  179.  
  180. Motif 2.1 was released in February, 1997.  Motif 2.1 is compatible with CDE
  181. 2.1 and (mostly) Motif 1.2.  You should expect the big UNIX vendors to start
  182. shipping Motif 2.1 when they start shipping CDE 2.1.
  183.  
  184. Ken Lee
  185.  
  186. -----------------------------------------------------------------------------
  187. Subject: 26)  Where can I get Motif for UNIX, Linux, or Microsoft Windows?
  188. [Last modified: Jun 98]
  189.  
  190. Answer: A regularly updated list of Motif vendors for various operating
  191. systems (including Linux and Microsoft Windows) is available at:
  192. http://www.rahul.net/kenton/GettingMotif.html
  193.  
  194. Please send any corrections to kenton@nojunk.rahul.net
  195.  
  196. -----------------------------------------------------------------------------
  197. Subject: 27)  Is there a list of Motif bugs?
  198.  
  199. Answer: With each patch release of Motif shipped, there is a list of known
  200. bugs provided.  The filename on the tape is "./OPENBUGS".  There is also a
  201. list of all the issues closed/resolved in that patch.  That is found as part
  202. of the "./README-1.1.n" (where n is the patch number) file.
  203.  
  204. These are the only OSF published lists.
  205.  
  206. No one else seems to publish a list.
  207.  
  208. -----------------------------------------------------------------------------
  209. Subject: 28)  Where can I get a Motif 1.2 Certification Checklist?
  210. [Last modified: Apr 95]
  211.  
  212. Answer: Kevin Till (kev@osf.org) of OSF wrote: "The Checklist comes with the
  213. OSF/Motif 1.2 Style Guide documentation.  It's in the Appendix B section."
  214.  
  215. -----------------------------------------------------------------------------
  216. Subject: 29)  What is CDE? What is COSE and how does it relate to Motif?
  217. [Last modified: Sept 94]
  218.  
  219. Answer: [For more current information, see  also the subjects which follow
  220. this one.]
  221.  
  222.     NOTE: This info dates back to a Nov. '93 conference.
  223.     Most of the words should be credited to the lecturer,
  224.     Nicholas J. Aiuto (nick@ps.quotron.com) of Cadence Design Systems, Inc.
  225.     Any mistakes or inaccuracies are mine, however.
  226.     I would appreciate updates and corrections...kenton@nojunk.rahul.net
  227.  
  228. COSE is Common Open Software Environment, a major interoperability effort
  229. started by HP, Sun, Novell/UNIX System Labs (USL), IBM, and SCO, with over 70
  230. other companies pledging their support. The COSE announcement was made in
  231. March, 1993 and a "COSE CDE Conference" was held in San Jose in October, 1993.
  232.  
  233. CDE is the Common Desktop Environment component of COSE. CDE is "a
  234. specification for components and services to give the UNIX desktop common and
  235. consistent capabilities like those found in other widely used environments
  236. (Mac, Windows)." [from class notes] CDE is not public domain; it will be
  237. provided by major vendors, possibly at extra cost as unbundled s/w
  238. approximately mid 1994.  CDE will be based on Motif 1.2 and X11R5, although
  239. Motif 2.0 and X11R6 are expected around the same time. (CDE will be ported to
  240. Motif 2.0 eventually.)
  241.  
  242. A CD-ROM was distributed at the October, 1993 conference, but this was "alpha"
  243. s/w, strictly for evaluation purposes, not for development.
  244.  
  245. Another COSE/CDE Snapshot CD-ROM was released in April '94, available for HP,
  246. IBM, Novell, and Sun platforms.
  247.  
  248. Overview
  249. --------
  250.  
  251. Standards are to be defined in these areas:
  252.  
  253.         - desktop
  254.         - networking
  255.         - objects
  256.         - graphics
  257.         - system management
  258.  
  259. CDE Functional Groups:
  260.  
  261.     High Level:
  262.         - Desktop Management
  263.         - Productivity Tools
  264.  
  265.     Low Level:
  266.         - GUI Display and Printing
  267.         - Application Integration
  268.         - "Guidelines": a 100+ pg. checklist which is a superset of Motif's
  269.  
  270. CDE Desktop Management
  271. ----------------------
  272.  
  273.  - Login Manager: like xdm
  274.  - Session Manager: saving state based on ICCCM and HP's VUE [vuesession]
  275.  - Workspace Manager: virtual screens; rooms; virtual win mgr
  276.  - Front Panel: object and window management; access to favorite apps
  277.  - File Manager: icon drag and drop
  278.  - Application Manager
  279.  - Style Manager: configure Session Mgr (colors, fonts, HOME session)
  280.  
  281. Productivity Tools
  282. ------------------
  283.  
  284.  - Text Editor: based on XmText widget; not very fancy
  285.  - Icon Editor: color pixmaps; based on HP's vueicon; need 16 icons per app
  286.  - Help Viewer: can access app help without running application
  287.  - Mailer and Calendar: can talk to each other
  288.  - Terminal Emulator: improvement on xterm
  289.  - Calculator
  290.  - Create "Action": something you tell your system to do and associate with
  291.                    a specific icon (e.g., starting a favorite app); can also
  292.                    tag a specific command line and add to your desktop
  293.  
  294. GUI Display and Printing
  295. ------------------------
  296.  
  297.  - Motif 1.2 with extras, X11R5
  298.  - New widgets (subclasses of similar widgets to be in Motif 2.0):
  299.         o  ComboBox
  300.         o  SpinButton
  301.  
  302.  - dtksh: windowing Korn shell, a robust UNIX shell interface to X, Xlib, and
  303. Xm
  304.  - Application Builder: port of Sun's DevGuide [not yet available]
  305.  - X Print Server and X Server Print Extension
  306.  
  307. Application Integration
  308. -----------------------
  309.  
  310.  - Data Interchange
  311.         o  Drag and Drop (DND): based on Motif 1.2 with improvements
  312.         o  Bento container format:
  313.                 "Japanese lunchbox"
  314.                 compartmented container developed by Apple;
  315.                 stores compound document on disk;
  316.                 apps can find audio compartment, for example
  317.                 100-page document describes Bento
  318.  - ToolTalk
  319.         o  messaging/IPC facility developed by Sun
  320.         o  CDE message sets (sample msgsd: iconify yourself, close down, etc.)
  321.  - Actions
  322.         o define what can be done with files or arbitrary data (e.g., audio)
  323.  - Data Typing
  324.         o define data classes for objects (e.g., PS file, C source code)
  325.  
  326. Guidelines
  327. ----------
  328.  
  329.  - Common Fonts (about 16): proportional, monospaced, with or without serif
  330.  - Internationalization (I18N) compliance
  331.  - Client/Server
  332.         o Network execution model
  333.         o end user model
  334.         o system admin model: facilitates easy installation of new
  335.                               CDE-compliant apps
  336.         o ISV model
  337.  - Certification Checklist: 100 pages; superset of Motif 1.2 Certif. Checklist
  338.  
  339.  
  340. -----------------------------------------------------------------------------
  341. Subject: 30)*  Is there a CDE FAQ or newsgroup?
  342. [Last modified: Aug 2001]
  343.  
  344. Answer: The CDE FAQ is located at:
  345.  
  346.    http://www.laxmi.net/cde.htm
  347.  
  348. There is also a newsgroup called news:comp.unix.cde
  349.  
  350. -----------------------------------------------------------------------------
  351. Subject: 31)  What is the current version of CDE and what are its features?
  352. [Last modified: May 97]
  353.  
  354. Answer: The latest version of CDE is 2.1 as announced by OSF in February 1997.
  355. The following is the Open Group's press release:
  356.  
  357.  
  358. FOR IMMEDIATE RELEASE CONTACT
  359. Jane Smeloff
  360. The Open Group
  361. (617) 621-8997
  362. j.smeloff@opengroup.org
  363.  
  364. Marilyn Kilcrease
  365. Fleishman Hillard, Inc.
  366. (415) 356-1031
  367. kilcream@fleishman.com
  368.  
  369. The Open Group Announces Common Desktop Environment 2.1
  370.  
  371. New features enhance the functionality and ease of use of the widely used
  372. graphical user interface for open desktop computing
  373.  
  374.  
  375. CAMBRIDGE, Massachusetts (February 5, 1997) - The Open Group, the leading
  376. organization for the advancement of open systems, today announced the release
  377. of CDE 2.1, the latest version of The Open Group's Common Desktop Environment.
  378. The current release integrates the Motif 2.0 graphical user interface, X
  379. Window System, and CDE to standardize application presentations in distributed
  380. multi-platform environments.
  381.  
  382. "As a result of solid cooperation among project participants, we are
  383. delivering significant new features which makes CDE and Motif a unified face
  384. for UNIX environments," said Dave Lounsbury, vice president of collaborative
  385. development. "The CDE 2.1 project was the most extensive collaborative
  386. development effort in the history of The Open Group."
  387.  
  388. The latest release of CDE features enhanced tools for creating integrated
  389. graphical desktop applications. New features include thread-safe libraries,
  390. 64-bit system support, an X-based printing solution that implements a standard
  391. way of printing from any application, an enhanced, SGML-based on-line help
  392. system with a complete documentation set, "on the spot" input, and user-
  393. defined characters for Asian languages. Many capabilities have been added to
  394. ease programming, including traits, which enable user interface objects to
  395. automatically inherit multiple API specifications, and a uniform transfer
  396. model, which offer developers a consistent means of coding the different
  397. data-transfer mechanisms (such as cut-and-paste and drag-and-drop). The new
  398. release also provides a simple means of coding pop-up windows.
  399.  
  400. CDE 2.1 also incorporates Motif 2.0 user interface objects (widgets) spin box,
  401. combo box, container, and notebook. With this release, the style guides for
  402. CDE and Motif converge.
  403.  
  404. The fee for a CDE 2.1 full-distribution source code license is $40,000.  An
  405. evaluation copy of source code costs $5,000. To order CDE 2.1, contact Open
  406. Group Direct, at 1-800-268-5245, or send e-mail to direct@opengroup.org.
  407.  
  408. Introduced in 1995, CDE was jointly developed and licensed by Hewlett-Packard,
  409. IBM, Novell, and SunSoft. Since that time, the technology has evolved within
  410. The Open Group's Pre-Structured Technology (PST) process, a multi-vendor
  411. technology development program. Currently, Hitachi, Fujitsu, Digital Equipment
  412. Corporation and SCO work with the original CDE sponsors, IBM, HP and SunSoft
  413. within the Open Group's PST framework, to provide for the maintenance of CDE
  414. and the development of new releases.
  415.  
  416. The Common Desktop Environment is a graphical user interface that delivers
  417. consistency and ease of use to system administrators as well as end users.
  418. With CDE, system administrators gain a degree of control over the desktop
  419. computing environment that has often been lost in the move from centralized to
  420. client-server or distributed computing. CDE gives end users access to the
  421. power and flexibility of today's networked desktop systems.
  422.  
  423. The Open Group
  424.  
  425. Dedicated to the advancement of multi-vendor information systems, The Open
  426. Group is an international consortium of systems and software vendors and
  427. customers from the industry, government and academia. The Open Group and its
  428. members work together to strengthen and streamline the development process and
  429. availability of open systems. The organization provides a focal point for the
  430. development of international specifications and test suites, standards based
  431. technologies, advanced open systems research, professional services and the
  432. management of the internationally recognized brand for open systems. The Open
  433. Group's brand mark is recognized worldwide and is a guarantee of compliance to
  434. open systems specifications. The Open Group is Headquartered in Cambridge, MA,
  435. with European headquarters in Reading, England and offices in Menlo Park, CA;
  436. Brussels, Belgium; Grenoble, France; and Tokyo, Japan.
  437.  
  438. The Open Group is a trademark of the Open Software Foundation, Inc. and X/Open
  439. Company Ltd. OSF/Motif and Motif are registered trademarks of The Open Group.
  440. X Window System is a trademark of The Open Group and the X Consortium is a
  441. trademark of The Open Group.  UNIX is a registered trademark in the US and
  442. other countries, licensed exclusively through X/Open Company Ltd. All other
  443. products or company names mentioned are used for identification purposes only,
  444. and may be trademarks of their respective owners.
  445.  
  446. -----------------------------------------------------------------------------
  447. Subject: 32)  How does Motif relate to X/Open and CDE?
  448. [Last modified: Mar 96]
  449.  
  450. A.  NOTE: This answer from Sept. 1995 is somewhat obsolete due to the
  451. formation of The Open Group. See "What is The Open Group?"....ksall@cen.com
  452.  
  453. From OSF's CDE/Motif Program Manager, Terry Landers (landers@osf.org):
  454.  
  455. "In response to the discussion [on comp.windows.x.motif] of Motif and
  456. "officially supported" APIs ... two areas were brought up that I hope to be
  457. able to clarify.
  458.  
  459.  
  460. Standards:
  461. =========
  462. As you probably know, Motif has become an X/Open standard.
  463. The X/Open specification was based on the OSF AES, and going
  464. forward the X/Open specification will take precedence.
  465.  
  466. As part of the CDE/Motif PST, interface extensions to
  467. the XMotif specification will be proposed to X/Open.
  468.  
  469. Although it is too early to discuss what will be proposed
  470. to X/Open, OSF members who are interested will have early
  471. access to CDE/Motif functional specifications as part of
  472. the Desktop SIG activities.
  473.  
  474. Convergence:
  475. ===========
  476. OSF has taken the first step in convergence with the release
  477. of Motif 1.2.5.   Motif 1.2.5 merges OSF Motif 1.2.4 with
  478. CDE Motif and defect fixes to the 1.2 code base that were
  479. made in Motif 2.0.
  480.  
  481. The next step in convergence will come with the CDE/Motif PST
  482. deliverables.
  483.  
  484. I hope this has helped ... if you have any questions you can
  485. contact me at:
  486.  
  487.         landers@osf.org
  488.         617-621-7282"
  489.  
  490.  
  491. -----------------------------------------------------------------------------
  492. Subject: 33)  What is The Open Group?
  493. [Last modified: Aug 97]
  494.  
  495. Answer: On February 14, 1996, X/Open and OSF merged to form "The Open Group".
  496.  
  497. which calls The Open Group a "New Organization to Improve Coordination of
  498. Efforts to Develop and Implement Common Standards and New Technologies".  You
  499. might also want to read other press releases from The Open Group and visit
  500. their home page:
  501.  
  502.     http://www.opengroup.org/
  503.  
  504. Below is the announcement sent by OSF's Kristen Knotts...ksall@cen.com
  505.  
  506.  
  507.     To: OSF.Support.Subscribers:;@osf.org
  508.     Subject: X/Open & OSF Join to Form The Open Group
  509.     Date: Wed, 14 Feb 1996 12:26:53 -0500
  510.     From: Kristen Knotts <kjk@osf.org>
  511.  
  512. During a press conference at UniForum '96, officials of X/Open Company,
  513. Ltd. and the Open Software Foundation (OSF), the two leading consortia for
  514. the advancement of open systems, announced their consolidation into a new,
  515. more powerful worldwide organization known as The Open Group.
  516.  
  517. The new entity has been formed to strengthen and streamline the entire open
  518. systems process, including adoption of open systems specifications,
  519. development of specification-compliant technologies, and promotion of their
  520. use in the global enterprise computing marketplace.  Full information can
  521. be obtained from The Open Group Web Site:
  522.  
  523.     http://www.opengroup.org/
  524.  
  525.  
  526. -----------------------------------------------------------------------------
  527. Subject: 34)  Is The Open Group assuming responsibility for the X Window
  528. System?
  529. [Last modified: July 96]
  530.  
  531. A. Yes it will, at the beginning of 1997. See the X Consortium's announcement
  532. at:
  533.  
  534.         X Consortium to Transfer X Window System to The Open Group
  535.  
  536. It is reproduced _in part_ below for your convenience, followed by a related
  537. announcement from The Open Group.
  538.  
  539. Cambridge, Massachusetts - July 1, 1996 - X Consortium, Inc.
  540. today announced that it would transfer responsibility for the X
  541. Window System to The Open Group at the beginning of next year. "X
  542. is now mainstream technology, and since the first commercial release
  543. in 1986 it has matured to the point where a dedicated consortium is no
  544. longer essential to its on-going support," explains Robert W. Scheifler,
  545. president of the X Consortium. "Our industry will benefit greatly by
  546. continuing and accelerating the convergence of X, Motif and the
  547. Common Desktop Environment (CDE) into a unified technology
  548. stack. This is already well underway with the current CDE-Motif
  549. PST project, operating under the auspices of The Open Group, an
  550. organization that is well positioned to take this technology into the
  551. future." The Open Group will continue their existing work of
  552. publishing, testing and branding products which conform to
  553. international standards, including X.
  554.  
  555. "As a long standing partner with the X Consortium in the Open
  556. Systems industry, The Open Group supports this decision. On a
  557. personal note, I want to add that the computer industry owes an
  558. enormous debt of gratitude to Bob Scheifler and the X Consortium for
  559. the service they have provided for the last eight years," commented
  560. Jim Bell, CEO of The Open Group. "Their very positive impact on our
  561. industry will continue to be felt for years to come."
  562.  
  563. As part of this change, X Consortium plans to wind down all
  564. engineering operations at the end of this year. "I have made a
  565. commitment to our members, and to the sponsors of the CDE-Motif
  566. project, to oversee the entire transition process from now until our
  567. current engineering projects are finished and the hand-off is
  568. complete," said Scheifler. The X Consortium will work with its
  569. members and The Open Group to determine whether the organization
  570. should continue on in some reduced fashion.
  571.  
  572. Broadway, the code name for the next release of the X Window
  573. System, will be completed as planned by the end of the year, and will
  574. be made freely available to the public under the same terms as
  575. previous X Consortium releases. Broadway enables interactive UNIX
  576. and Windows applications to be integrated, unmodified, into HTML
  577. documents and published on World Wide Web servers, using plug-in
  578. technology, and includes network protocols for graphics and audio to
  579. provide remote access to those applications from inside Web
  580. browsers. The Broadway release is expected to be available from
  581. current sources, including worldwide ftp sites and CDROM
  582. distributors.
  583.  
  584. The X Consortium will fulfill its obligations as prime contractor in The
  585. Open Group's Pre-Structured Technology (PST) project developing
  586. the next release of CDE and Motif. "The plan has always been to
  587. complete both the CDE-Motif project and Broadway by the end of
  588. this year," says Jim Fournier, Director of Engineering. "We are
  589. confident in our ability to deliver as planned."
  590.  
  591.                    ************************
  592.  
  593. A related announcement from corpcom@opengroup.com (The Open Group Corporate
  594. Communications) was sent July 1, 1996, an excerpt of which appears below:
  595.  
  596.      The Open Group Continues to Expand Product and Services Portfolio
  597.  
  598.                  Leading Open Systems Consortium
  599.                 Absorbs X Window System Technology
  600.  
  601. The Open Group announced today as an addition to its growing portfolio of
  602. products and services, it will assume custodianship for the X Window System
  603. technology, currently owned and managed by the X Consortium.  In its
  604. press release today, the X Consortium also declared that it will continue to
  605. fulfill its obligations as prime contractor in The Open Group CDE Pre-
  606. Structured Technology (PST) project, developing the next releases of CDE and
  607. Motif, scheduled to be completed by year end, and then cease its internal
  608. engineering operations.
  609.  
  610. "Since its first commercial release in 1986, the X Window System has
  611. matured to the point where a full-scale, dedicated consortium is no longer
  612. essential to the on-going support of the technology," said Robert W. Scheifler,
  613. X Consortium president and founder.  "In light of our existing relationship it
  614. makes sense to fold our ongoing work into The Open Group.  Furthermore,
  615. given the overlapping membership of the two organizations, this move will
  616. greatly streamline and enhance the process of defining open standards."
  617.  
  618.  
  619. -----------------------------------------------------------------------------
  620. Subject: 35)  What are the current correct trademark statements for X and
  621. Motif?
  622. [Last modified: May 97]
  623.  
  624. Answer: The Open Group is a trademark of the Open Software Foundation, Inc.
  625. and X/Open Company Ltd. OSF/Motif and Motif are registered trademarks of The
  626. Open Group. X Window System is a trademark of The Open Group and the X
  627. Consortium is a trademark of The Open Group.  UNIX is a registered trademark
  628. in the US and other countries, licensed exclusively through X/Open Company
  629. Ltd.
  630.  
  631. -----------------------------------------------------------------------------
  632. Subject: 36)  Will CDE and Motif converge? What is the CDE/Motif JDA?
  633. [Last modified: May 97]
  634.  
  635. Answer: I'm leaving the following announcement here for historical reference.
  636. Note that the converged CDE/Motif was released in February, 1997 and is called
  637. CDE/Motif 2.1.  A press release is included earlier in this FAQ.
  638.  
  639. In September, 1995, OSF announced the Joint Development Agreement under which
  640. vendors will participate in a plan to converge Motif and CDE. The announcement
  641. follows.
  642.  
  643.  From kjk@osf.org  Fri Sep  8 17:55:55 1995
  644.  To: OSF.Motif.Support.Subscribers:;@osf.org
  645.  Cc: OSF.Service.Subscribers:;@osf.org
  646.  Subject: OSF Press Release Announcing Signing of CDE/Motif JDA
  647.  Date: Fri, 08 Sep 1995 17:46:04 -0400
  648.  From: Kristen Knotts <kjk@osf.org>
  649.  
  650.  To:            OSF Motif Support Subscribers
  651.  From:          The Open Software Foundation
  652.  
  653.  ************************************************************
  654.               OSF MOTIF SUPPORT ELECTRONIC UPDATE
  655.  ************************************************************
  656.  An electronic mail news update for Motif Support Subscribers
  657.  from the Open Software Foundation (OSF)
  658.  
  659.  
  660.  CONTACT:        Jack Dwyer
  661.                  Open Software Foundation
  662.                  (617) 621-7246
  663.                  Email: dwyer@osf.org
  664.  
  665.  
  666.      OSF Announces Formal Launch of CDE/Motif Project
  667.  
  668.  Multi-vendor project to enhance and converge OSF/Motif and the Common
  669.  Desktop Environment
  670.  
  671.  CAMBRIDGE, MA September 7, 1995 -- The Open Software Foundation today
  672.  announced the formal signing of the Joint Development Agreement for the
  673.  further enhancement and evolution of the Common Desktop Environment (CDE)
  674.  and OSF/Motif under the Open Software Foundation's Pre-Structured
  675.  Technology (PST) development process. The seven sponsors of the CDE/Motif
  676.  PST are Digital Equipment Corp., Fujitsu Limited, Hewlett-Packard Company,
  677.  Hitachi, Ltd, IBM Corp., Novell, Inc., and SunSoft, Inc.
  678.  
  679.  The CDE/Motif PST is a cooperative, multi-vendor, development project. The
  680.  Open Software Foundation's PST process allows for existing technologies
  681.  from multiple vendors to be further developed and integrated into a
  682.  complete open system technology. The X Consortium has been designated as
  683.  the project's prime contractor.
  684.  
  685.  CDE/Motif will continue the evolution of the desktop technologies necessary
  686.  to meet the expanding user requirements in such areas as On-line
  687.  Information Access, Printing, and Internationalization. A key objective of
  688.  the PST is to fully converge OSF/Motif and the CDE version of Motif into a
  689.  single development stream. The resulting PST technology will be binary
  690.  compatible with CDE 1.0.
  691.  
  692.  Mr. Don Harbert, Vice President of UNIX Business Segment for Digital
  693.  Equipment Corporation said, "Digital is an enthusiastic participant in the
  694.  development of the next version of CDE. As a founding member of the Open
  695.  Software Foundation and the first vendor to ship a commercial version of
  696.  the X Window System, Digital recognizes the importance of standard user
  697.  interfaces and the importance of the PST process in developing code."
  698.  
  699.  "Fujitsu is pleased to support the evolution of CDE and Motif technology,
  700.  both by contributing the Fujitsu OLIAS technology for a robust CDE Online
  701.  Information Access feature, and by improving CDE/Motif
  702.  Internationalization. Providing a common user interface over many different
  703.  hardware systems is critical to the future of Open Systems", said Mitsuru
  704.  Sanagi, General Manager of the Client Server System Strategy and Alliance
  705.  Division, Fujitsu Limited.
  706.  
  707.  "As one of the original development partners for CDE and as a current
  708.  supplier of CDE technology in AIX, IBM is committed to enhanced usability
  709.  for our AIX customers," said Donna Van Fleet, Vice President for AIX
  710.  Systems Development, IBM RISC System/6000 Division. "Now, as one of the
  711.  sponsors of this new PST, we continue the enhancements to CDE that will
  712.  provide even more ease-of-use value for our customers, while maintaining
  713.  all the benefits of an open technology."
  714.  
  715.  "CDE is important, industry-unifying technology and Novell is looking
  716.  forward to working with the other CDE/Motif sponsors to continue its
  717.  development," noted Don McGovern, Vice President, Operating System
  718.  Division, Novell, Inc.
  719.  
  720.  "As chair of the CDE/Motif PST Steering Committee, SunSoft is pleased by
  721.  the active participation and strong commitment for this project.  This
  722.  clearly underscores the strong industry support for open systems," said
  723.  Paula Sager, Vice President of Desktop Technologies, SunSoft, Inc.  "We are
  724.  looking forward to working with our partners to deliver the best open user
  725.  environment available."
  726.  
  727.  "We're excited that we are able to contribute to this important industry
  728.  initiative ", said Robert W. Scheifler, President of X Consortium.
  729.  "CDE/Motif combines premier desktop technologies and builds on what is now
  730.  a long line of products founded upon X. There is a lot of synergy between
  731.  the X Consortium's objectives and the goals of the CDE/Motif PST. Our
  732.  involvement as the prime contractor for this project is a logical extension
  733.  of that fact."
  734.  
  735.  The base technologies for the CDE/Motif PST are CDE 1.0 and OSF/Motif 2.0.
  736.  On-line Information Access will include an SGML-based browser, the ability
  737.  to display and print SGML documents, full text search and retrieval, and
  738.  integration with the on-line help facility. Enhanced internationalization
  739.  capabilities will include the ability to display vertical text, support for
  740.  user defined characters, input method selection at run time, and an
  741.  on-the-spot input method capability. Print capabilities include a graphical
  742.  interface for print job submission, a single API for both display and
  743.  printing, printing support for Motif text and label widgets, help,
  744.  calendar, mail and the text editor. In the process, CDE/Motif will be made
  745.  thread safe and will include support for 64-bit architectures.
  746.  
  747.  The output of this PST joint development will be a merged CDE/Motif source
  748.  package, a standalone version of Motif, and conformance tests for both CDE
  749.  and Motif. Upon completion, the conformance test suites will be offered to
  750.  X/Open for their branding purposes. Also offered to X/Open will be a merged
  751.  style guide for CDE and Motif, the Motif Drag and Drop protocol, and API
  752.  extensions to CDE and Motif.
  753.  
  754.  The first deliverable of the CDE/Motif PST will be a maintenance release
  755.  for CDE 1.0 planned for the end of 1995. The schedule further calls for a
  756.  CDE/Motif snapshot to be made available to licensees in mid-1996, with
  757.  general availability of CDE/Motif scheduled for the end of 1996.
  758.  
  759.  For more information on CDE/Motif, you are invited to contact David Knorr,
  760.  OSF CDE/Motif Business Area Manager, at +617-621-7227 or dknorr@osf.org.
  761.  
  762.  The Open Software Foundation delivers technology innovations in all areas
  763.  of open systems, including interoperability, scalability, portability, and
  764.  usability. OSF has created a coalition of worldwide vendors and users in
  765.  industry, government and academia that leverage their economic investments
  766.  by working together to provide the best open systems technology solutions
  767.  for distributed computing environments. Headquartered in Cambridge, MA,
  768.  with offices in Brussels, Grenoble and Tokyo, OSF has more then 380 members
  769.  worldwide.
  770.                                       ###
  771.  
  772.  OSF, OSF/Motif, and Open Software Foundation are trademarks of the Open
  773.  Software Foundation, Inc.
  774.  
  775.  
  776. -----------------------------------------------------------------------------
  777. Subject: 37)*  Has anyone done a public domain Motif lookalike?
  778. [Last modified: Feb 02]
  779.  
  780. Answer: Open Motif is open source, but not public domain.  This following may
  781. be of interest to public domain purists.
  782.  
  783. LessTif is a freeware version of Motif from the Hungry Programmers.  It is
  784. still in development and is intended to be source code compatible with Motif,
  785. meaning that the same source will compile with both libraries and work exactly
  786. the same.  [Thanks to John W. Carbone, jwc@li.net, Chris Toshok
  787. (toshok@hungry.com), and Jon Fo (jonf@protocol.com)] For more information, see
  788. http://www.lesstif.org/
  789.  
  790. Tcl/Tk is available for ftp from allspice.berkeley.edu, and although
  791. implemented without Xt, has a "strict Motif" mode. There is also Tix, the Tk
  792. Interface Extension. See:
  793.  
  794.     http://www.sunlabs.com/research/tcl/
  795.     http://www.cis.upenn.edu/~ioi/tix/tix.html
  796.  
  797. Strom Sytems (18666 Redmond Way o-2118, Redmond, WA 98052-6725) have a Simple
  798. Toolkit for X-Windows (sic) that appears to follow the Style Guide even though
  799. it doesn't quite look like Motif.
  800.  
  801. MOOLIT is a USL product that can be runtime switched between the Sun Open Look
  802. and Motif appearance.  It is based on  OLIT 4i.
  803.  
  804. Interviews is a C++ based product with appearance similar to Motif.  A ftp-
  805. able version of the source code and documentation can be found on
  806. interviews.stanford.edu.  Fresco (http://www.iuk.tu-harburg.de/fresco/) and
  807. ivtools (http://www.vectaport.com/ivtools/) are based on Interviews.
  808.  
  809. Simon J. Lyall (simon@darkmere.midland.co.nz) reported about a package called:
  810. Xu-lib & Widget Set- a library & widget set to "emulate" the look&feel and the
  811. programming interface of Motif. Contact the author Udo Baumgart
  812. (U.BAUMGART@ldb.han.de) for details.
  813.  
  814. -----------------------------------------------------------------------------
  815. Subject: 38)  Does the Open Group have an application compliance validation
  816. service?
  817. [Last modified: Aug 97]
  818.  
  819. Answer: The Motif Toolkit API Verification Suite (VSM4) replaces the earlier
  820. Motif Branding Program.  For more information on VSM4, see
  821. http://www.opengroup.org/tech/desktop/ordering/motif.price.list.htm#branding
  822.  
  823. -----------------------------------------------------------------------------
  824. Subject: 39)  What is the motif-talk mailing list?
  825.  
  826. Answer: The motif-talk mailing list is only for those who have purchased a
  827. Motif source code license. You can be placed on this list by emailing to
  828. motif-talk-request@osf.org, citing your Company name and source license
  829. number.
  830.  
  831. ---------------------------------------------------------------------------
  832. END OF PART TWO
  833.