diff options
author | mjl <mjl@pkgsrc.org> | 2000-10-29 16:17:13 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2000-10-29 16:17:13 +0000 |
commit | cac32e3e50662bd06c9958fb24e0453ba2097489 (patch) | |
tree | cd8afa7b3f840fc342140b6e34042e39444f642d /x11/openmotif | |
parent | b91ea37ac97804d3facfa9fdb8e8a2efca6140a2 (diff) | |
download | pkgsrc-cac32e3e50662bd06c9958fb24e0453ba2097489.tar.gz |
Initial import of OpenMotif 2.1.30. Based on the FreeBSD and OpenBSD
packages, with some adaptations to our pkg framework.
Diffstat (limited to 'x11/openmotif')
-rw-r--r-- | x11/openmotif/Makefile | 55 | ||||
-rw-r--r-- | x11/openmotif/files/md5 | 8 | ||||
-rw-r--r-- | x11/openmotif/files/patch-sum | 14 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-Imakefile | 22 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-bindings-Imakefile | 17 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-clients-uil-Imakefile | 15 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-config-cf-Imakefile | 13 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-config-cf-Motif.rules | 26 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-config-imake-Imakefile | 26 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-config-imake-imake.c | 12 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-config-util-Imakefile | 21 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-lib-Mrm-Imakefile | 15 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-lib-Xm-Imakefile | 15 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-lib-Xm-TextF.c | 13 | ||||
-rw-r--r-- | x11/openmotif/patches/patch-tests-Performance-Startup-editor.c | 13 | ||||
-rw-r--r-- | x11/openmotif/pkg/COMMENT | 1 | ||||
-rw-r--r-- | x11/openmotif/pkg/DESCR | 1 | ||||
-rw-r--r-- | x11/openmotif/pkg/PLIST | 898 |
18 files changed, 1185 insertions, 0 deletions
diff --git a/x11/openmotif/Makefile b/x11/openmotif/Makefile new file mode 100644 index 00000000000..309f6808d21 --- /dev/null +++ b/x11/openmotif/Makefile @@ -0,0 +1,55 @@ +# $OpenBSD: Makefile,v 1.5 2000/10/23 16:08:12 espie Exp $ +# $NetBSD: Makefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +PKGVER= 2.1.30 +DISTNAME= openmotif${PKGVER} +PKGNAME= openmotif-${PKGVER} +CATEGORIES= x11 +MASTER_SITES= ftp://openmotif.opengroup.org/pub/openmotif/R${PKGVER}/tars/ \ + ftp://ftp.opengroup.org/pub/openmotif/R${PKGVER}/tars/ \ + ftp://ftp.kddlabs.co.jp/X11/openmotif/R${PKGVER}/tars/ + +PATCH_SITES= ftp://openmotif.opengroup.org/pub/openmotif/R${PKGVER}/fixes/ \ + ftp://ftp.opengroup.org/pub/openmotif/R${PKGVER}/fixes/ \ + ftp://ftp.kddlabs.co.jp/X11/openmotif/R${PKGVER}/fixes/ +PATCHFILES= patch1 patch2 patch3 patch4 patch5 +PATCH_DIST_STRIP=-p1 + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.opengroup.org/openmotif/ + +WRKSRC= ${WRKDIR}/motif +USE_X11BASE= yes +ALL_TARGET= World + +post-patch: +# fix sections + cd ${WRKSRC}/doc/man; for n in man1/*.1 man3/*.3 man4/*.4 man5/*.5 ; \ + do ${SED} 's/user cmd/1/g; s/library call/3/g; s/special file/5/g; s/file formats/5/g;' $$n >$$n.new && ${MV} -f $$n.new $$n; done + ${MV} -f ${WRKSRC}/doc/man/man4/mwmrc.4 ${WRKSRC}/doc/man/man5/mwmrc.5 + @cd ${WRKSRC}/config/cf && \ + ${SED} -e "s|%%PREFIX%%|${PREFIX}|g" < site.def > site.def.new && \ + ${MV} -f site.def.new site.def && \ + ${SED} -e "s|%%PREFIX%%|${PREFIX}|g" < Motif.tmpl > Motif.tmpl.new && \ + ${MV} -f Motif.tmpl.new Motif.tmpl + ${CP} -f `ls ${X11BASE}/lib/X11/config/* | ${GREP} -v '\(Motif\|cde\|\/site.def\)'` ${WRKDIR}/motif/config/cf + ${MKDIR} ${WRKSRC}/imports/x11 + @cd ${WRKSRC}/imports/x11 && for i in bin include lib ; do \ + if [ -f $$i ] ; then ${RM} $$i; fi; \ + ${LN} -s ${X11BASE}/$$i $$i; \ + done + +# tblize the manpages. +post-build: + for i in man1 man3 man5 ; do cd ${WRKSRC}/doc/man/$$i; \ + for m in *.[135]; do tbl $$m > $$m.new && ${MV} -f $$m.new $$m; done; \ + done + +# Install the manpages. +post-install: + for i in man1 man3 man5 ; do cd ${WRKSRC}/doc/man/$$i; \ + ${MKDIR} ${PREFIX}/man/$$i; \ + for m in *.[135]; do ${INSTALL_MAN} $$m ${PREFIX}/man/$$i; done; \ + done + +.include <../../mk/bsd.pkg.mk> diff --git a/x11/openmotif/files/md5 b/x11/openmotif/files/md5 new file mode 100644 index 00000000000..76b57822edd --- /dev/null +++ b/x11/openmotif/files/md5 @@ -0,0 +1,8 @@ +$NetBSD: md5,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +MD5 (openmotif2.1.30.tar.gz) = 14b25d85256ef7f0a1a989b4b612c909 +MD5 (patch1) = a05097561c36cebfbce5328d1e5a81e3 +MD5 (patch2) = 18c887e5322f419c860f5d3707bfc25b +MD5 (patch3) = 20e65337cc9cfa140e2ff10d5162dc88 +MD5 (patch4) = 7bbb64bfc82d2db06f51922be59dda4c +MD5 (patch5) = eda9e4d0d0f2b63087234bb0e789a311 diff --git a/x11/openmotif/files/patch-sum b/x11/openmotif/files/patch-sum new file mode 100644 index 00000000000..3635d291126 --- /dev/null +++ b/x11/openmotif/files/patch-sum @@ -0,0 +1,14 @@ +$NetBSD: patch-sum,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +MD5 (patch-Imakefile) = b0d7201103da27a6d8eb49fd9325a382 +MD5 (patch-bindings-Imakefile) = 8a311dcf028d78f1fef08a23e5f85d5f +MD5 (patch-clients-uil-Imakefile) = cecaebadac1061a4c2a2b69acf6dbaab +MD5 (patch-config-cf-Imakefile) = e2d172752d6e36a5efebe2b8955b5c7b +MD5 (patch-config-cf-Motif.rules) = c0c691eacd3b3e1223967068ba12fe68 +MD5 (patch-config-imake-Imakefile) = 570d224b859ce767dc8df5fc88aa80ec +MD5 (patch-config-imake-imake.c) = f5d718ba16e8b6c4a3a514ad971bcf25 +MD5 (patch-config-util-Imakefile) = a5e3445c5a4c5b8486d5ef8c420692f1 +MD5 (patch-lib-Mrm-Imakefile) = 7bb20ed98449504c5de9ee966c8213bf +MD5 (patch-lib-Xm-Imakefile) = b3f2972b681e9e3e859e7edb66b2e154 +MD5 (patch-lib-Xm-TextF.c) = b1dbdd4921baf45791a93c47850795e2 +MD5 (patch-tests-Performance-Startup-editor.c) = f9060865bfbe3b680fba391f2739725d diff --git a/x11/openmotif/patches/patch-Imakefile b/x11/openmotif/patches/patch-Imakefile new file mode 100644 index 00000000000..6571a68b57a --- /dev/null +++ b/x11/openmotif/patches/patch-Imakefile @@ -0,0 +1,22 @@ +$NetBSD: patch-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- Imakefile.orig Thu May 4 08:30:42 2000 ++++ Imakefile Wed Aug 9 19:29:42 2000 +@@ -57,7 +57,7 @@ + ImakeDependency(xmakefile) + xmakefile:: Imakefile + RMoveToBakFile(xmakefile) +- $(IMAKE_CMD) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) ++ $(IMAKE) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) + + + VerifyOS:: +@@ -89,7 +90,7 @@ + #ifdef UseInstalled + TESTS_IMAKE = $(IMAKE) -DUseInstalled + #else +-TESTS_IMAKE = ../$(IMAKE) ++TESTS_IMAKE = $(IMAKE) + #endif + DIRS_TO_CREATE = $(USRLIBDIR) $(BINDIR) $(INCDIR) $(USRINCDIR) $(LIBDIR) $(XAPPLOADDIR) + CDE_DIRS_TO_CREATE = $(USRLIBDIR) $(BINDIR) $(PROJECTROOT)/share/include diff --git a/x11/openmotif/patches/patch-bindings-Imakefile b/x11/openmotif/patches/patch-bindings-Imakefile new file mode 100644 index 00000000000..d237faf91c3 --- /dev/null +++ b/x11/openmotif/patches/patch-bindings-Imakefile @@ -0,0 +1,17 @@ +$NetBSD: patch-bindings-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- bindings/Imakefile.orig Wed May 3 11:12:34 2000 ++++ bindings/Imakefile Sun Oct 29 14:23:39 2000 +@@ -37,10 +37,10 @@ + XCOMM HISTORY + XCOMM + XCOMM $TOG: Imakefile /main/8 1997/07/02 17:51:43 samborn $ +-INSTALLFLAGS = $(INSTINCFLAGS) + + FILES = \ + xmbind.alias \ ++ CDE \ + acorn \ + apollo \ + dec \ + diff --git a/x11/openmotif/patches/patch-clients-uil-Imakefile b/x11/openmotif/patches/patch-clients-uil-Imakefile new file mode 100644 index 00000000000..913f57d9347 --- /dev/null +++ b/x11/openmotif/patches/patch-clients-uil-Imakefile @@ -0,0 +1,15 @@ +$NetBSD: patch-clients-uil-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- clients/uil/Imakefile.orig Sun Oct 29 14:29:52 2000 ++++ clients/uil/Imakefile Sun Oct 29 14:30:05 2000 +@@ -40,8 +40,10 @@ + + #define DoNormalLib NormalLibUil + #define DoSharedLib SharedLibUil ++#if 0 + #define DoDebugLib DebugLibUil + #define DoProfileLib ProfileLibUil ++#endif + #define LibName Uil + #define SoRev SOUILREV + #define HasSharedData NO diff --git a/x11/openmotif/patches/patch-config-cf-Imakefile b/x11/openmotif/patches/patch-config-cf-Imakefile new file mode 100644 index 00000000000..293e7a99744 --- /dev/null +++ b/x11/openmotif/patches/patch-config-cf-Imakefile @@ -0,0 +1,13 @@ +$NetBSD: patch-config-cf-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- config/cf/Imakefile.orig Sun Oct 29 15:17:58 2000 ++++ config/cf/Imakefile Sun Oct 29 15:19:49 2000 +@@ -121,7 +121,7 @@ + QNX.cf \ + xfree86.cf + +-INSTFILES = $(RULEFILES) $(TMPLFILES) $(DEFFILES) $(CFFILES) $(LOCALFILES) ++INSTFILES = Motif.rules Motif.tmpl host.def + + all:: + diff --git a/x11/openmotif/patches/patch-config-cf-Motif.rules b/x11/openmotif/patches/patch-config-cf-Motif.rules new file mode 100644 index 00000000000..4a95e9072ff --- /dev/null +++ b/x11/openmotif/patches/patch-config-cf-Motif.rules @@ -0,0 +1,26 @@ +$NetBSD: patch-config-cf-Motif.rules,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- config/cf/Motif.rules.orig Sun Oct 29 15:34:02 2000 ++++ config/cf/Motif.rules Sun Oct 29 15:34:14 2000 +@@ -50,9 +50,10 @@ + # define MotifIsTopLevelProject NO + #endif + +-/* Include the X11 project rules file. */ ++#ifndef X11IsTopLevelProject ++/* If we have not included X11.rules yet, do it now. */ + #include <X11.rules> +- ++#endif + + /* Use the in-tree Motif by default. */ + #ifndef UseInstalledMotif +@@ -698,7 +699,7 @@ + #define Real_MessageCatalogRule(prefix) @@\ + prefix.cat Concat(prefix,MsgCatI.h): @@\ + $(RM) Concat(prefix,MsgCatI.h) prefix.cat $(MLOCSRC)/C/msg/prefix.msg @@\ +- $(MKCATTOOL) Concat(prefix,MsgCatI.h) prefix.msg > $(MLOCSRC)/C/msg/prefix.msg @@\ ++ $(MKCATTOOL) Concat(prefix,MsgCatI.h) prefix.msg | sed '/^[ ]*$$/d' > $(MLOCSRC)/C/msg/prefix.msg @@\ + $(GENCAT) prefix.cat $(MLOCSRC)/C/msg/prefix.msg @@\ + @@\ + includes:: prefix.cat Concat(prefix,MsgCatI.h) @@\ diff --git a/x11/openmotif/patches/patch-config-imake-Imakefile b/x11/openmotif/patches/patch-config-imake-Imakefile new file mode 100644 index 00000000000..2ce8b9633f5 --- /dev/null +++ b/x11/openmotif/patches/patch-config-imake-Imakefile @@ -0,0 +1,26 @@ +$NetBSD: patch-config-imake-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- config/imake/Imakefile.orig Sun Oct 29 15:29:28 2000 ++++ config/imake/Imakefile Sun Oct 29 15:31:43 2000 +@@ -5,6 +5,21 @@ + XCOMM + XCOMM $XFree86: xc/config/imake/Imakefile,v 3.6.2.1 1997/06/11 12:08:33 dawes Exp $ + ++XCOMM ++XCOMM ++XCOMM ++ ++#ifdef NetBSDArchitecture ++#undef InstallProgram ++#define InstallProgram(file,dest) /* as nothing */ ++#undef InstallNamedProg ++#define InstallNamedProg(srcname,dstname,dest) /* as nothing */ ++#undef InstallManPage ++#define InstallManPage(file,dest) /* as nothing */ ++#undef InstallManPageLong ++#define InstallManPageLong(srcname,dest,dstname) /* as nothing */ ++#endif ++ + XCOMM Some compilers generate fatal errors if an -L directory does + XCOMM not exist. Since BUILDLIBDIR may not exist yet suppress its use. + LDPRELIB = diff --git a/x11/openmotif/patches/patch-config-imake-imake.c b/x11/openmotif/patches/patch-config-imake-imake.c new file mode 100644 index 00000000000..52020f2c276 --- /dev/null +++ b/x11/openmotif/patches/patch-config-imake-imake.c @@ -0,0 +1,12 @@ +$NetBSD: patch-config-imake-imake.c,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- config/imake/imake.c.orig Sun Oct 29 15:34:13 2000 ++++ config/imake/imake.c Sun Oct 29 15:38:27 2000 +@@ -148,6 +148,7 @@ + #if defined(__FreeBSD__) || defined(__NetBSD__) + /* This needs to be before _POSIX_SOURCE gets defined */ + # include <sys/param.h> ++# include <sys/time.h> + # include <sys/types.h> + # include <sys/sysctl.h> + #endif diff --git a/x11/openmotif/patches/patch-config-util-Imakefile b/x11/openmotif/patches/patch-config-util-Imakefile new file mode 100644 index 00000000000..730e1cc4740 --- /dev/null +++ b/x11/openmotif/patches/patch-config-util-Imakefile @@ -0,0 +1,21 @@ +$NetBSD: patch-config-util-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- config/util/Imakefile.orig Sun Oct 29 14:31:06 2000 ++++ config/util/Imakefile Sun Oct 29 14:31:30 2000 +@@ -1,4 +1,16 @@ + XCOMM $XConsortium: Imakefile /main/16 1996/11/13 14:43:28 lehors $ ++ ++#ifdef NetBSDArchitecture ++#undef InstallProgram ++#define InstallProgram(file,dest) /* as nothing */ ++#undef InstallNamedProg ++#define InstallNamedProg(srcname,dstname,dest) /* as nothing */ ++#undef InstallManPage ++#define InstallManPage(file,dest) /* as nothing */ ++#undef InstallManPageLong ++#define InstallManPageLong(srcname,dest,dstname) /* as nothing */ ++#endif ++ + #if UseCCMakeDepend + MDEP_PROG = makedepend + #endif diff --git a/x11/openmotif/patches/patch-lib-Mrm-Imakefile b/x11/openmotif/patches/patch-lib-Mrm-Imakefile new file mode 100644 index 00000000000..33e15279504 --- /dev/null +++ b/x11/openmotif/patches/patch-lib-Mrm-Imakefile @@ -0,0 +1,15 @@ +$NetBSD: patch-lib-Mrm-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- lib/Mrm/Imakefile.orig Sun Oct 29 14:21:24 2000 ++++ lib/Mrm/Imakefile Sun Oct 29 14:21:51 2000 +@@ -36,8 +36,10 @@ + + #define DoNormalLib NormalLibMrm + #define DoSharedLib SharedLibMrm ++#if 0 + #define DoDebugLib DebugLibMrm + #define DoProfileLib ProfileLibMrm ++#endif + #define LibName Mrm + #define SoRev SOMRMREV + #define HasSharedData NO diff --git a/x11/openmotif/patches/patch-lib-Xm-Imakefile b/x11/openmotif/patches/patch-lib-Xm-Imakefile new file mode 100644 index 00000000000..ee7044e6d6a --- /dev/null +++ b/x11/openmotif/patches/patch-lib-Xm-Imakefile @@ -0,0 +1,15 @@ +$NetBSD: patch-lib-Xm-Imakefile,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- lib/Xm/Imakefile.orig Sun Oct 29 14:19:45 2000 ++++ lib/Xm/Imakefile Sun Oct 29 14:20:15 2000 +@@ -41,8 +41,10 @@ + + #define DoNormalLib NormalLibXm + #define DoSharedLib SharedLibXm ++#if 0 + #define DoDebugLib DebugLibXm + #define DoProfileLib ProfileLibXm ++#endif + #define LibName Xm + #define SoRev SOXMREV + #define HasSharedData YES diff --git a/x11/openmotif/patches/patch-lib-Xm-TextF.c b/x11/openmotif/patches/patch-lib-Xm-TextF.c new file mode 100644 index 00000000000..aeb34788ef4 --- /dev/null +++ b/x11/openmotif/patches/patch-lib-Xm-TextF.c @@ -0,0 +1,13 @@ +$NetBSD: patch-lib-Xm-TextF.c,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- lib/Xm/TextF.c.orig Sun Oct 29 15:43:15 2000 ++++ lib/Xm/TextF.c Sun Oct 29 15:45:35 2000 +@@ -84,7 +84,7 @@ + #include <Xm/PrintSP.h> /* for XmIsPrintShell */ + + +-#if defined(__FreeBSD__) ++#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined (__NetBSD__) + /* + * Modification by Integrated Computer Solutions, Inc. May 2000 + * diff --git a/x11/openmotif/patches/patch-tests-Performance-Startup-editor.c b/x11/openmotif/patches/patch-tests-Performance-Startup-editor.c new file mode 100644 index 00000000000..698049d9832 --- /dev/null +++ b/x11/openmotif/patches/patch-tests-Performance-Startup-editor.c @@ -0,0 +1,13 @@ +$NetBSD: patch-tests-Performance-Startup-editor.c,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ + +--- tests/Performance/Startup/editor.c.orig Wed May 3 05:12:48 2000 ++++ tests/Performance/Startup/editor.c Wed Aug 9 19:29:43 2000 +@@ -238,7 +238,7 @@ + + strcpy(tempname, "/tmp/xmeditXXXXXX"); + +- if ((tfp = fopen(mktemp(tempname), "w")) == NULL) { ++ if ((tfp = mkstemp(tempname)) == NULL) { + fprintf(stderr, "Warning: unable to open temp file, text not saved.\n"); + return(False);; + } diff --git a/x11/openmotif/pkg/COMMENT b/x11/openmotif/pkg/COMMENT new file mode 100644 index 00000000000..6f8efeb12af --- /dev/null +++ b/x11/openmotif/pkg/COMMENT @@ -0,0 +1 @@ +Open Motif diff --git a/x11/openmotif/pkg/DESCR b/x11/openmotif/pkg/DESCR new file mode 100644 index 00000000000..88e248d4ca0 --- /dev/null +++ b/x11/openmotif/pkg/DESCR @@ -0,0 +1 @@ +The industry standard user interface toolkit for the X Window System. diff --git a/x11/openmotif/pkg/PLIST b/x11/openmotif/pkg/PLIST new file mode 100644 index 00000000000..82ec2d205cf --- /dev/null +++ b/x11/openmotif/pkg/PLIST @@ -0,0 +1,898 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/10/29 16:17:13 mjl Exp $ +bin/DNDDemo +bin/UTMXmText +bin/aicon +bin/airport +bin/autopopups +bin/combo_box +bin/container +bin/dainput +bin/dogs +bin/draw +bin/earth +bin/exm_in_c +bin/exm_in_uil +bin/filemanager +bin/fileview +bin/getsubres +bin/helloint +bin/hellomotif +bin/i18ninput +bin/makedepend +bin/motifshell +bin/mwm +bin/notebook +bin/onHelp +bin/periodic +bin/piano +bin/sampler2_0 +bin/setDate +bin/simpleDemo +bin/simple_drag +bin/simple_drop +bin/simpledrop +bin/spin_box +bin/tic_mark +bin/todo +bin/uil +bin/uilsymdump +bin/xmanimate +bin/xmapdef +bin/xmbind +bin/xmfonts +bin/xmforc +bin/xmform +include/Mrm/MrmAppl.h +include/Mrm/MrmDecls.h +include/Mrm/MrmPublic.h +include/Mrm/MrmosI.h +@dirrm include/Mrm +include/X11/bitmaps/xm_error +include/X11/bitmaps/xm_hour16 +include/X11/bitmaps/xm_hour16m +include/X11/bitmaps/xm_hour32 +include/X11/bitmaps/xm_hour32m +include/X11/bitmaps/xm_information +include/X11/bitmaps/xm_noenter16 +include/X11/bitmaps/xm_noenter16m +include/X11/bitmaps/xm_noenter32 +include/X11/bitmaps/xm_noenter32m +include/X11/bitmaps/xm_question +include/X11/bitmaps/xm_warning +include/X11/bitmaps/xm_working +include/Xm/AccColorT.h +include/Xm/AccTextT.h +include/Xm/ActivatableT.h +include/Xm/ArrowB.h +include/Xm/ArrowBG.h +include/Xm/ArrowBGP.h +include/Xm/ArrowBP.h +include/Xm/AtomMgr.h +include/Xm/BaseClassP.h +include/Xm/BulletinB.h +include/Xm/BulletinBP.h +include/Xm/CacheP.h +include/Xm/CareVisualT.h +include/Xm/CascadeB.h +include/Xm/CascadeBG.h +include/Xm/CascadeBGP.h +include/Xm/CascadeBP.h +include/Xm/ClipWindowP.h +include/Xm/ColorObjP.h +include/Xm/ColorP.h +include/Xm/ComboBox.h +include/Xm/ComboBoxP.h +include/Xm/Command.h +include/Xm/CommandP.h +include/Xm/ContItemT.h +include/Xm/Container.h +include/Xm/ContainerP.h +include/Xm/ContainerT.h +include/Xm/CutPaste.h +include/Xm/DesktopP.h +include/Xm/DialogS.h +include/Xm/DialogSEP.h +include/Xm/DialogSP.h +include/Xm/DialogSavvyT.h +include/Xm/Display.h +include/Xm/DisplayP.h +include/Xm/DragC.h +include/Xm/DragCP.h +include/Xm/DragDrop.h +include/Xm/DragIcon.h +include/Xm/DragIconP.h +include/Xm/DragOverS.h +include/Xm/DragOverSP.h +include/Xm/DrawP.h +include/Xm/DrawingA.h +include/Xm/DrawingAP.h +include/Xm/DrawnB.h +include/Xm/DrawnBP.h +include/Xm/DropSMgr.h +include/Xm/DropSMgrP.h +include/Xm/DropTrans.h +include/Xm/DropTransP.h +include/Xm/ExtObjectP.h +include/Xm/FileSB.h +include/Xm/FileSBP.h +include/Xm/Form.h +include/Xm/FormP.h +include/Xm/Frame.h +include/Xm/FrameP.h +include/Xm/Gadget.h +include/Xm/GadgetP.h +include/Xm/GrabShell.h +include/Xm/GrabShellP.h +include/Xm/IconFile.h +include/Xm/IconFileP.h +include/Xm/IconG.h +include/Xm/IconGP.h +include/Xm/IconH.h +include/Xm/IconHP.h +include/Xm/JoinSideT.h +include/Xm/Label.h +include/Xm/LabelG.h +include/Xm/LabelGP.h +include/Xm/LabelP.h +include/Xm/LayoutT.h +include/Xm/List.h +include/Xm/ListP.h +include/Xm/MainW.h +include/Xm/MainWP.h +include/Xm/Manager.h +include/Xm/ManagerP.h +include/Xm/MenuProcP.h +include/Xm/MenuShell.h +include/Xm/MenuShellP.h +include/Xm/MenuStateP.h +include/Xm/MenuT.h +include/Xm/MenuUtilP.h +include/Xm/MessageB.h +include/Xm/MessageBP.h +include/Xm/MwmUtil.h +include/Xm/NavigatorT.h +include/Xm/Notebook.h +include/Xm/NotebookP.h +include/Xm/PanedW.h +include/Xm/PanedWP.h +include/Xm/PointInT.h +include/Xm/Primitive.h +include/Xm/PrimitiveP.h +include/Xm/Print.h +include/Xm/PrintSP.h +include/Xm/Protocols.h +include/Xm/ProtocolsP.h +include/Xm/PushB.h +include/Xm/PushBG.h +include/Xm/PushBGP.h +include/Xm/PushBP.h +include/Xm/RCLayoutP.h +include/Xm/RCMenuP.h +include/Xm/RepType.h +include/Xm/RowColumn.h +include/Xm/RowColumnP.h +include/Xm/SSpinB.h +include/Xm/SSpinBP.h +include/Xm/SashP.h +include/Xm/Scale.h +include/Xm/ScaleP.h +include/Xm/Screen.h +include/Xm/ScreenP.h +include/Xm/ScrollBar.h +include/Xm/ScrollBarP.h +include/Xm/ScrollFrameT.h +include/Xm/ScrolledW.h +include/Xm/ScrolledWP.h +include/Xm/SelectioB.h +include/Xm/SelectioBP.h +include/Xm/SeparatoG.h +include/Xm/SeparatoGP.h +include/Xm/Separator.h +include/Xm/SeparatorP.h +include/Xm/ShellEP.h +include/Xm/SpecRenderT.h +include/Xm/SpinB.h +include/Xm/SpinBP.h +include/Xm/TakesDefT.h +include/Xm/TearOffBP.h +include/Xm/TearOffP.h +include/Xm/Text.h +include/Xm/TextF.h +include/Xm/TextFP.h +include/Xm/TextFSelP.h +include/Xm/TextInP.h +include/Xm/TextOutP.h +include/Xm/TextP.h +include/Xm/TextSelP.h +include/Xm/TextStrSoP.h +include/Xm/ToggleB.h +include/Xm/ToggleBG.h +include/Xm/ToggleBGP.h +include/Xm/ToggleBP.h +include/Xm/TraitP.h +include/Xm/Transfer.h +include/Xm/TransferP.h +include/Xm/TransferT.h +include/Xm/TransltnsP.h +include/Xm/TravConT.h +include/Xm/TxtPropCv.h +include/Xm/UnhighlightT.h +include/Xm/UnitTypeT.h +include/Xm/VaSimpleP.h +include/Xm/VendorS.h +include/Xm/VendorSEP.h +include/Xm/VendorSP.h +include/Xm/VirtKeys.h +include/Xm/VirtKeysP.h +include/Xm/Xm.h +include/Xm/XmAll.h +include/Xm/XmIm.h +include/Xm/XmP.h +include/Xm/XmStrDefs.h +include/Xm/Xmfuncs.h +include/Xm/XmosP.h +include/Xm/XpmP.h +@dirrm include/Xm +include/uil/Uil.h +include/uil/UilDBDef.h +include/uil/UilDef.h +include/uil/UilSymDef.h +include/uil/UilSymGl.h +include/uil/XmAppl.uil +@dirrm include/uil +lib/X11/app-defaults/Fileview +lib/X11/app-defaults/Mwm +lib/X11/app-defaults/XmdAirport +lib/X11/app-defaults/XmdAnimate +lib/X11/app-defaults/XmdDraw +lib/X11/app-defaults/XmdFilemanager +lib/X11/app-defaults/XmdI18nInput +lib/X11/app-defaults/XmdPeriodic +lib/X11/app-defaults/XmdSampler2_0 +lib/X11/app-defaults/XmdSetDate +lib/X11/app-defaults/XmdTodo +lib/X11/bindings/CDE +lib/X11/bindings/acorn +lib/X11/bindings/apollo +lib/X11/bindings/dec +lib/X11/bindings/dg_AViiON +lib/X11/bindings/doubleclick +lib/X11/bindings/hal +lib/X11/bindings/hitachi +lib/X11/bindings/hp +lib/X11/bindings/ibm +lib/X11/bindings/intergraph +lib/X11/bindings/intergraph17 +lib/X11/bindings/megatek +lib/X11/bindings/motorola +lib/X11/bindings/ncr_at +lib/X11/bindings/ncr_vt +lib/X11/bindings/pc +lib/X11/bindings/sgi +lib/X11/bindings/siemens_9733 +lib/X11/bindings/siemens_wx200 +lib/X11/bindings/sni +lib/X11/bindings/sni_97801 +lib/X11/bindings/sony +lib/X11/bindings/sun +lib/X11/bindings/sun_at +lib/X11/bindings/tek +lib/X11/bindings/xmbind.alias +@dirrm lib/X11/bindings +lib/X11/config/Motif.rules +lib/X11/config/Motif.rules.openmotif +lib/X11/config/Motif.tmpl +lib/X11/config/Motif.tmpl.openmotif +lib/X11/config/host.def +lib/X11/help/aicon.help +lib/X11/help/draw.help +lib/X11/help/filemanager.help +lib/X11/help/getsubres.help +lib/X11/help/helpOn.help +lib/X11/help/i18ninput.help +lib/X11/help/sampler2_0.help +lib/X11/help/todo.help +lib/X11/help/xmanimate.help +@dirrm lib/X11/help +lib/X11/motifshell/help +lib/X11/motifshell/membership +lib/X11/motifshell/motif +lib/X11/motifshell/motifshell.c +lib/X11/motifshell/principles +lib/X11/motifshell/research +lib/X11/motifshell/welcome +@dirrm lib/X11/motifshell +lib/X11/system.mwmrc +lib/X11/uid/C/uid/l_strings.uid +lib/X11/uid/English.uid +lib/X11/uid/French.uid +lib/X11/uid/German.uid +lib/X11/uid/dog.uid +lib/X11/uid/dogs.uid +lib/X11/uid/english/uid/l_strings.uid +lib/X11/uid/exm_in_uil.uid +lib/X11/uid/french/uid/l_strings.uid +lib/X11/uid/hebrew/uid/l_strings.uid +lib/X11/uid/helloint.uid +lib/X11/uid/hellomotif.uid +lib/X11/uid/japanese/uid/l_strings.uid +lib/X11/uid/periodic.uid +lib/X11/uid/plane.uid +lib/X11/uid/superman.uid +lib/X11/uid/swedish/uid/l_strings.uid +lib/X11/uid/xmanimate.uid +@dirrm lib/X11/uid/C/uid +@dirrm lib/X11/uid/C +@dirrm lib/X11/uid/english/uid +@dirrm lib/X11/uid/english +@dirrm lib/X11/uid/french/uid +@dirrm lib/X11/uid/french +@dirrm lib/X11/uid/hebrew/uid +@dirrm lib/X11/uid/hebrew +@dirrm lib/X11/uid/japanese/uid +@dirrm lib/X11/uid/japanese +@dirrm lib/X11/uid/swedish/uid +@dirrm lib/X11/uid/swedish +@dirrm lib/X11/uid +lib/libMrm.a +lib/libMrm.so.2.1 +lib/libUil.a +lib/libUil.so.2.1 +lib/libXm.a +lib/libXm.so.2.1 +man/man1/mwm.1 +man/man1/uil.1 +man/man1/xmbind.1 +man/man3/ApplicationShell.3 +man/man3/Composite.3 +man/man3/Constraint.3 +man/man3/Core.3 +man/man3/MrmCloseHierarchy.3 +man/man3/MrmFetchBitmapLiteral.3 +man/man3/MrmFetchColorLiteral.3 +man/man3/MrmFetchIconLiteral.3 +man/man3/MrmFetchLiteral.3 +man/man3/MrmFetchSetValues.3 +man/man3/MrmFetchWidget.3 +man/man3/MrmFetchWidgetOverride.3 +man/man3/MrmInitialize.3 +man/man3/MrmOpenHierarchy.3 +man/man3/MrmOpenHierarchyFromBuffer.3 +man/man3/MrmOpenHierarchyPerDisplay.3 +man/man3/MrmRegisterClass.3 +man/man3/MrmRegisterNames.3 +man/man3/MrmRegisterNamesInHierarchy.3 +man/man3/Object.3 +man/man3/OverrideShell.3 +man/man3/RectObj.3 +man/man3/Shell.3 +man/man3/TopLevelShell.3 +man/man3/TransientShell.3 +man/man3/Uil.3 +man/man3/UilDumpSymbolTable.3 +man/man3/VendorShell.3 +man/man3/VirtualBindings.3 +man/man3/WMShell.3 +man/man3/XmActivateProtocol.3 +man/man3/XmActivateWMProtocol.3 +man/man3/XmAddProtocolCallback.3 +man/man3/XmAddProtocols.3 +man/man3/XmAddTabGroup.3 +man/man3/XmAddToPostFromList.3 +man/man3/XmAddWMProtocolCallback.3 +man/man3/XmAddWMProtocols.3 +man/man3/XmArrowButton.3 +man/man3/XmArrowButtonGadget.3 +man/man3/XmBulletinBoard.3 +man/man3/XmCascadeButton.3 +man/man3/XmCascadeButtonGadget.3 +man/man3/XmCascadeButtonGadgetHighlight.3 +man/man3/XmCascadeButtonHighlight.3 +man/man3/XmChangeColor.3 +man/man3/XmClipboardCancelCopy.3 +man/man3/XmClipboardCopy.3 +man/man3/XmClipboardCopyByName.3 +man/man3/XmClipboardEndCopy.3 +man/man3/XmClipboardEndRetrieve.3 +man/man3/XmClipboardInquireCount.3 +man/man3/XmClipboardInquireFormat.3 +man/man3/XmClipboardInquireLength.3 +man/man3/XmClipboardInquirePendingItems.3 +man/man3/XmClipboardLock.3 +man/man3/XmClipboardRegisterFormat.3 +man/man3/XmClipboardRetrieve.3 +man/man3/XmClipboardStartCopy.3 +man/man3/XmClipboardStartRetrieve.3 +man/man3/XmClipboardUndoCopy.3 +man/man3/XmClipboardUnlock.3 +man/man3/XmClipboardWithdrawFormat.3 +man/man3/XmComboBox.3 +man/man3/XmComboBoxAddItem.3 +man/man3/XmComboBoxDeletePos.3 +man/man3/XmComboBoxSelectItem.3 +man/man3/XmComboBoxSetItem.3 +man/man3/XmComboBoxUpdate.3 +man/man3/XmCommand.3 +man/man3/XmCommandAppendValue.3 +man/man3/XmCommandError.3 +man/man3/XmCommandGetChild.3 +man/man3/XmCommandSetValue.3 +man/man3/XmContainer.3 +man/man3/XmContainerCopy.3 +man/man3/XmContainerCopyLink.3 +man/man3/XmContainerCut.3 +man/man3/XmContainerGetItemChildren.3 +man/man3/XmContainerPaste.3 +man/man3/XmContainerPasteLink.3 +man/man3/XmContainerRelayout.3 +man/man3/XmContainerReorder.3 +man/man3/XmConvertStringToUnits.3 +man/man3/XmConvertUnits.3 +man/man3/XmCreateArrowButton.3 +man/man3/XmCreateArrowButtonGadget.3 +man/man3/XmCreateBulletinBoard.3 +man/man3/XmCreateBulletinBoardDialog.3 +man/man3/XmCreateCascadeButton.3 +man/man3/XmCreateCascadeButtonGadget.3 +man/man3/XmCreateComboBox.3 +man/man3/XmCreateCommand.3 +man/man3/XmCreateCommandDialog.3 +man/man3/XmCreateContainer.3 +man/man3/XmCreateDialogShell.3 +man/man3/XmCreateDragIcon.3 +man/man3/XmCreateDrawingArea.3 +man/man3/XmCreateDrawnButton.3 +man/man3/XmCreateDropDownComboBox.3 +man/man3/XmCreateDropDownList.3 +man/man3/XmCreateErrorDialog.3 +man/man3/XmCreateFileSelectionBox.3 +man/man3/XmCreateFileSelectionDialog.3 +man/man3/XmCreateForm.3 +man/man3/XmCreateFormDialog.3 +man/man3/XmCreateFrame.3 +man/man3/XmCreateIconGadget.3 +man/man3/XmCreateInformationDialog.3 +man/man3/XmCreateLabel.3 +man/man3/XmCreateLabelGadget.3 +man/man3/XmCreateList.3 +man/man3/XmCreateMainWindow.3 +man/man3/XmCreateMenuBar.3 +man/man3/XmCreateMenuShell.3 +man/man3/XmCreateMessageBox.3 +man/man3/XmCreateMessageDialog.3 +man/man3/XmCreateNotebook.3 +man/man3/XmCreateOptionMenu.3 +man/man3/XmCreatePanedWindow.3 +man/man3/XmCreatePopupMenu.3 +man/man3/XmCreatePromptDialog.3 +man/man3/XmCreatePulldownMenu.3 +man/man3/XmCreatePushButton.3 +man/man3/XmCreatePushButtonGadget.3 +man/man3/XmCreateQuestionDialog.3 +man/man3/XmCreateRadioBox.3 +man/man3/XmCreateRowColumn.3 +man/man3/XmCreateScale.3 +man/man3/XmCreateScrollBar.3 +man/man3/XmCreateScrolledList.3 +man/man3/XmCreateScrolledText.3 +man/man3/XmCreateScrolledWindow.3 +man/man3/XmCreateSelectionBox.3 +man/man3/XmCreateSelectionDialog.3 +man/man3/XmCreateSeparator.3 +man/man3/XmCreateSeparatorGadget.3 +man/man3/XmCreateSimpleCheckBox.3 +man/man3/XmCreateSimpleMenuBar.3 +man/man3/XmCreateSimpleOptionMenu.3 +man/man3/XmCreateSimplePopupMenu.3 +man/man3/XmCreateSimplePulldownMenu.3 +man/man3/XmCreateSimpleRadioBox.3 +man/man3/XmCreateSimpleSpinBox.3 +man/man3/XmCreateSpinBox.3 +man/man3/XmCreateTemplateDialog.3 +man/man3/XmCreateText.3 +man/man3/XmCreateTextField.3 +man/man3/XmCreateToggleButton.3 +man/man3/XmCreateToggleButtonGadget.3 +man/man3/XmCreateWarningDialog.3 +man/man3/XmCreateWorkArea.3 +man/man3/XmCreateWorkingDialog.3 +man/man3/XmCvtByteStreamToXmString.3 +man/man3/XmCvtCTToXmString.3 +man/man3/XmCvtStringToUnitType.3 +man/man3/XmCvtTextPropertyToXmStringTable.3 +man/man3/XmCvtXmStringTableToTextProperty.3 +man/man3/XmCvtXmStringToByteStream.3 +man/man3/XmCvtXmStringToCT.3 +man/man3/XmDeactivateProtocol.3 +man/man3/XmDeactivateWMProtocol.3 +man/man3/XmDestroyPixmap.3 +man/man3/XmDialogShell.3 +man/man3/XmDirection.3 +man/man3/XmDirectionMatch.3 +man/man3/XmDirectionMatchPartial.3 +man/man3/XmDirectionToStringDirection.3 +man/man3/XmDisplay.3 +man/man3/XmDragCancel.3 +man/man3/XmDragContext.3 +man/man3/XmDragIcon.3 +man/man3/XmDragStart.3 +man/man3/XmDrawingArea.3 +man/man3/XmDrawnButton.3 +man/man3/XmDropSite.3 +man/man3/XmDropSiteConfigureStackingOrder.3 +man/man3/XmDropSiteEndUpdate.3 +man/man3/XmDropSiteQueryStackingOrder.3 +man/man3/XmDropSiteRegister.3 +man/man3/XmDropSiteRegistered.3 +man/man3/XmDropSiteRetrieve.3 +man/man3/XmDropSiteStartUpdate.3 +man/man3/XmDropSiteUnregister.3 +man/man3/XmDropSiteUpdate.3 +man/man3/XmDropTransfer.3 +man/man3/XmDropTransferAdd.3 +man/man3/XmDropTransferStart.3 +man/man3/XmFileSelectionBox.3 +man/man3/XmFileSelectionBoxGetChild.3 +man/man3/XmFileSelectionDoSearch.3 +man/man3/XmFontList.3 +man/man3/XmFontListAdd.3 +man/man3/XmFontListAppendEntry.3 +man/man3/XmFontListCopy.3 +man/man3/XmFontListCreate.3 +man/man3/XmFontListEntryCreate.3 +man/man3/XmFontListEntryFree.3 +man/man3/XmFontListEntryGetFont.3 +man/man3/XmFontListEntryGetTag.3 +man/man3/XmFontListEntryLoad.3 +man/man3/XmFontListFree.3 +man/man3/XmFontListFreeFontContext.3 +man/man3/XmFontListGetNextFont.3 +man/man3/XmFontListInitFontContext.3 +man/man3/XmFontListNextEntry.3 +man/man3/XmFontListRemoveEntry.3 +man/man3/XmForm.3 +man/man3/XmFrame.3 +man/man3/XmGadget.3 +man/man3/XmGetAtomName.3 +man/man3/XmGetColorCalculation.3 +man/man3/XmGetColors.3 +man/man3/XmGetDestination.3 +man/man3/XmGetDragContext.3 +man/man3/XmGetFocusWidget.3 +man/man3/XmGetMenuCursor.3 +man/man3/XmGetPixmap.3 +man/man3/XmGetPixmapByDepth.3 +man/man3/XmGetPostedFromWidget.3 +man/man3/XmGetScaledPixmap.3 +man/man3/XmGetSecondaryResourceData.3 +man/man3/XmGetTabGroup.3 +man/man3/XmGetTearOffControl.3 +man/man3/XmGetVisibility.3 +man/man3/XmGetXmDisplay.3 +man/man3/XmGetXmScreen.3 +man/man3/XmIconGadget.3 +man/man3/XmImCloseXIM.3 +man/man3/XmImFreeXIC.3 +man/man3/XmImGetXIC.3 +man/man3/XmImGetXIM.3 +man/man3/XmImMbLookupString.3 +man/man3/XmImMbResetIC.3 +man/man3/XmImRegister.3 +man/man3/XmImSetFocusValues.3 +man/man3/XmImSetValues.3 +man/man3/XmImSetXIC.3 +man/man3/XmImUnregister.3 +man/man3/XmImUnsetFocus.3 +man/man3/XmImVaSetFocusValues.3 +man/man3/XmImVaSetValues.3 +man/man3/XmInstallImage.3 +man/man3/XmInternAtom.3 +man/man3/XmIsMotifWMRunning.3 +man/man3/XmIsTraversable.3 +man/man3/XmLabel.3 +man/man3/XmLabelGadget.3 +man/man3/XmList.3 +man/man3/XmListAddItem.3 +man/man3/XmListAddItemUnselected.3 +man/man3/XmListAddItems.3 +man/man3/XmListAddItemsUnselected.3 +man/man3/XmListDeleteAllItems.3 +man/man3/XmListDeleteItem.3 +man/man3/XmListDeleteItems.3 +man/man3/XmListDeleteItemsPos.3 +man/man3/XmListDeletePos.3 +man/man3/XmListDeletePositions.3 +man/man3/XmListDeselectAllItems.3 +man/man3/XmListDeselectItem.3 +man/man3/XmListDeselectPos.3 +man/man3/XmListGetKbdItemPos.3 +man/man3/XmListGetMatchPos.3 +man/man3/XmListGetSelectedPos.3 +man/man3/XmListItemExists.3 +man/man3/XmListItemPos.3 +man/man3/XmListPosSelected.3 +man/man3/XmListPosToBounds.3 +man/man3/XmListReplaceItems.3 +man/man3/XmListReplaceItemsPos.3 +man/man3/XmListReplaceItemsPosUnselected.3 +man/man3/XmListReplaceItemsUnselected.3 +man/man3/XmListReplacePositions.3 +man/man3/XmListSelectItem.3 +man/man3/XmListSelectPos.3 +man/man3/XmListSetAddMode.3 +man/man3/XmListSetBottomItem.3 +man/man3/XmListSetBottomPos.3 +man/man3/XmListSetHorizPos.3 +man/man3/XmListSetItem.3 +man/man3/XmListSetKbdItemPos.3 +man/man3/XmListSetPos.3 +man/man3/XmListUpdateSelectedList.3 +man/man3/XmListYToPos.3 +man/man3/XmMainWindow.3 +man/man3/XmMainWindowSep1.3 +man/man3/XmMainWindowSep2.3 +man/man3/XmMainWindowSep3.3 +man/man3/XmMainWindowSetAreas.3 +man/man3/XmManager.3 +man/man3/XmMapSegmentEncoding.3 +man/man3/XmMenuPosition.3 +man/man3/XmMenuShell.3 +man/man3/XmMessageBox.3 +man/man3/XmMessageBoxGetChild.3 +man/man3/XmNotebook.3 +man/man3/XmNotebookGetPageInfo.3 +man/man3/XmObjectAtPoint.3 +man/man3/XmOptionButtonGadget.3 +man/man3/XmOptionLabelGadget.3 +man/man3/XmPanedWindow.3 +man/man3/XmParseMapping.3 +man/man3/XmParseMappingCreate.3 +man/man3/XmParseMappingFree.3 +man/man3/XmParseMappingGetValues.3 +man/man3/XmParseMappingSetValues.3 +man/man3/XmParseTable.3 +man/man3/XmParseTableFree.3 +man/man3/XmPrimitive.3 +man/man3/XmPrintPopupPDM.3 +man/man3/XmPrintSetup.3 +man/man3/XmPrintShell.3 +man/man3/XmPrintToFile.3 +man/man3/XmProcessTraversal.3 +man/man3/XmPushButton.3 +man/man3/XmPushButtonGadget.3 +man/man3/XmRedisplayWidget.3 +man/man3/XmRegisterSegmentEncoding.3 +man/man3/XmRemoveFromPostFromList.3 +man/man3/XmRemoveProtocolCallback.3 +man/man3/XmRemoveProtocols.3 +man/man3/XmRemoveTabGroup.3 +man/man3/XmRemoveWMProtocolCallback.3 +man/man3/XmRemoveWMProtocols.3 +man/man3/XmRenderTable.3 +man/man3/XmRenderTableAddRenditions.3 +man/man3/XmRenderTableCopy.3 +man/man3/XmRenderTableCvtFromProp.3 +man/man3/XmRenderTableCvtToProp.3 +man/man3/XmRenderTableFree.3 +man/man3/XmRenderTableGetRendition.3 +man/man3/XmRenderTableGetRenditions.3 +man/man3/XmRenderTableGetTags.3 +man/man3/XmRenderTableRemoveRenditions.3 +man/man3/XmRendition.3 +man/man3/XmRenditionCreate.3 +man/man3/XmRenditionFree.3 +man/man3/XmRenditionRetrieve.3 +man/man3/XmRenditionUpdate.3 +man/man3/XmRepTypeAddReverse.3 +man/man3/XmRepTypeGetId.3 +man/man3/XmRepTypeGetNameList.3 +man/man3/XmRepTypeGetRecord.3 +man/man3/XmRepTypeGetRegistered.3 +man/man3/XmRepTypeInstallTearOffModelConverter.3 +man/man3/XmRepTypeRegister.3 +man/man3/XmRepTypeValidValue.3 +man/man3/XmResolveAllPartOffsets.3 +man/man3/XmResolvePartOffsets.3 +man/man3/XmRowColumn.3 +man/man3/XmScale.3 +man/man3/XmScaleGetValue.3 +man/man3/XmScaleSetTicks.3 +man/man3/XmScaleSetValue.3 +man/man3/XmScreen.3 +man/man3/XmScrollBar.3 +man/man3/XmScrollBarGetValues.3 +man/man3/XmScrollBarSetValues.3 +man/man3/XmScrollVisible.3 +man/man3/XmScrolledWindow.3 +man/man3/XmScrolledWindowSetAreas.3 +man/man3/XmSelectionBox.3 +man/man3/XmSelectionBoxGetChild.3 +man/man3/XmSeparator.3 +man/man3/XmSeparatorGadget.3 +man/man3/XmSetColorCalculation.3 +man/man3/XmSetFontUnit.3 +man/man3/XmSetFontUnits.3 +man/man3/XmSetMenuCursor.3 +man/man3/XmSetProtocolHooks.3 +man/man3/XmSetWMProtocolHooks.3 +man/man3/XmSimpleSpinBox.3 +man/man3/XmSimpleSpinBoxAddItem.3 +man/man3/XmSimpleSpinBoxDeletePos.3 +man/man3/XmSimpleSpinBoxSetItem.3 +man/man3/XmSpinBox.3 +man/man3/XmSpinBoxValidatePosition.3 +man/man3/XmString.3 +man/man3/XmStringBaseline.3 +man/man3/XmStringByteCompare.3 +man/man3/XmStringByteStreamLength.3 +man/man3/XmStringCompare.3 +man/man3/XmStringComponentCreate.3 +man/man3/XmStringComponentType.3 +man/man3/XmStringConcat.3 +man/man3/XmStringConcatAndFree.3 +man/man3/XmStringCopy.3 +man/man3/XmStringCreate.3 +man/man3/XmStringCreateLocalized.3 +man/man3/XmStringCreateLtoR.3 +man/man3/XmStringCreateSimple.3 +man/man3/XmStringDirection.3 +man/man3/XmStringDirectionCreate.3 +man/man3/XmStringDirectionToDirection.3 +man/man3/XmStringDraw.3 +man/man3/XmStringDrawImage.3 +man/man3/XmStringDrawUnderline.3 +man/man3/XmStringEmpty.3 +man/man3/XmStringExtent.3 +man/man3/XmStringFree.3 +man/man3/XmStringFreeContext.3 +man/man3/XmStringGenerate.3 +man/man3/XmStringGetLtoR.3 +man/man3/XmStringGetNextComponent.3 +man/man3/XmStringGetNextSegment.3 +man/man3/XmStringGetNextTriple.3 +man/man3/XmStringHasSubstring.3 +man/man3/XmStringHeight.3 +man/man3/XmStringInitContext.3 +man/man3/XmStringIsVoid.3 +man/man3/XmStringLength.3 +man/man3/XmStringLineCount.3 +man/man3/XmStringNConcat.3 +man/man3/XmStringNCopy.3 +man/man3/XmStringParseText.3 +man/man3/XmStringPeekNextComponent.3 +man/man3/XmStringPeekNextTriple.3 +man/man3/XmStringPutRendition.3 +man/man3/XmStringSegmentCreate.3 +man/man3/XmStringSeparatorCreate.3 +man/man3/XmStringTable.3 +man/man3/XmStringTableParseStringArray.3 +man/man3/XmStringTableProposeTablist.3 +man/man3/XmStringTableToXmString.3 +man/man3/XmStringTableUnparse.3 +man/man3/XmStringToXmStringTable.3 +man/man3/XmStringUnparse.3 +man/man3/XmStringWidth.3 +man/man3/XmTab.3 +man/man3/XmTabCreate.3 +man/man3/XmTabFree.3 +man/man3/XmTabGetValues.3 +man/man3/XmTabList.3 +man/man3/XmTabListCopy.3 +man/man3/XmTabListFree.3 +man/man3/XmTabListGetTab.3 +man/man3/XmTabListInsertTabs.3 +man/man3/XmTabListRemoveTabs.3 +man/man3/XmTabListReplacePositions.3 +man/man3/XmTabListTabCount.3 +man/man3/XmTabSetValue.3 +man/man3/XmTargetsAreCompatible.3 +man/man3/XmText.3 +man/man3/XmTextClearSelection.3 +man/man3/XmTextCopy.3 +man/man3/XmTextCopyLink.3 +man/man3/XmTextCut.3 +man/man3/XmTextDisableRedisplay.3 +man/man3/XmTextEnableRedisplay.3 +man/man3/XmTextField.3 +man/man3/XmTextFieldClearSelection.3 +man/man3/XmTextFieldCopy.3 +man/man3/XmTextFieldCopyLink.3 +man/man3/XmTextFieldCut.3 +man/man3/XmTextFieldGetBaseline.3 +man/man3/XmTextFieldGetEditable.3 +man/man3/XmTextFieldGetInsertionPosition.3 +man/man3/XmTextFieldGetLastPosition.3 +man/man3/XmTextFieldGetMaxLength.3 +man/man3/XmTextFieldGetSelection.3 +man/man3/XmTextFieldGetSelectionPosition.3 +man/man3/XmTextFieldGetSelectionWcs.3 +man/man3/XmTextFieldGetString.3 +man/man3/XmTextFieldGetStringWcs.3 +man/man3/XmTextFieldGetSubstring.3 +man/man3/XmTextFieldGetSubstringWcs.3 +man/man3/XmTextFieldInsert.3 +man/man3/XmTextFieldInsertWcs.3 +man/man3/XmTextFieldPaste.3 +man/man3/XmTextFieldPasteLink.3 +man/man3/XmTextFieldPosToXY.3 +man/man3/XmTextFieldRemove.3 +man/man3/XmTextFieldReplace.3 +man/man3/XmTextFieldReplaceWcs.3 +man/man3/XmTextFieldSetAddMode.3 +man/man3/XmTextFieldSetEditable.3 +man/man3/XmTextFieldSetHighlight.3 +man/man3/XmTextFieldSetInsertionPosition.3 +man/man3/XmTextFieldSetMaxLength.3 +man/man3/XmTextFieldSetSelection.3 +man/man3/XmTextFieldSetString.3 +man/man3/XmTextFieldSetStringWcs.3 +man/man3/XmTextFieldShowPosition.3 +man/man3/XmTextFieldXYToPos.3 +man/man3/XmTextFindString.3 +man/man3/XmTextFindStringWcs.3 +man/man3/XmTextGetBaseline.3 +man/man3/XmTextGetCenterline.3 +man/man3/XmTextGetEditable.3 +man/man3/XmTextGetInsertionPosition.3 +man/man3/XmTextGetLastPosition.3 +man/man3/XmTextGetMaxLength.3 +man/man3/XmTextGetSelection.3 +man/man3/XmTextGetSelectionPosition.3 +man/man3/XmTextGetSelectionWcs.3 +man/man3/XmTextGetSource.3 +man/man3/XmTextGetString.3 +man/man3/XmTextGetStringWcs.3 +man/man3/XmTextGetSubstring.3 +man/man3/XmTextGetSubstringWcs.3 +man/man3/XmTextGetTopCharacter.3 +man/man3/XmTextInsert.3 +man/man3/XmTextInsertWcs.3 +man/man3/XmTextPaste.3 +man/man3/XmTextPasteLink.3 +man/man3/XmTextPosToXY.3 +man/man3/XmTextPosition.3 +man/man3/XmTextRemove.3 +man/man3/XmTextReplace.3 +man/man3/XmTextReplaceWcs.3 +man/man3/XmTextScroll.3 +man/man3/XmTextSetAddMode.3 +man/man3/XmTextSetEditable.3 +man/man3/XmTextSetHighlight.3 +man/man3/XmTextSetInsertionPosition.3 +man/man3/XmTextSetMaxLength.3 +man/man3/XmTextSetSelection.3 +man/man3/XmTextSetSource.3 +man/man3/XmTextSetString.3 +man/man3/XmTextSetStringWcs.3 +man/man3/XmTextSetTopCharacter.3 +man/man3/XmTextShowPosition.3 +man/man3/XmTextXYToPos.3 +man/man3/XmToggleButton.3 +man/man3/XmToggleButtonGadget.3 +man/man3/XmToggleButtonGadgetGetState.3 +man/man3/XmToggleButtonGadgetSetState.3 +man/man3/XmToggleButtonGetState.3 +man/man3/XmToggleButtonSetState.3 +man/man3/XmToggleButtonSetValue.3 +man/man3/XmTrackingEvent.3 +man/man3/XmTrackingLocate.3 +man/man3/XmTransferDone.3 +man/man3/XmTransferSendRequest.3 +man/man3/XmTransferSetParameters.3 +man/man3/XmTransferStartRequest.3 +man/man3/XmTransferValue.3 +man/man3/XmTranslateKey.3 +man/man3/XmUninstallImage.3 +man/man3/XmUpdateDisplay.3 +man/man3/XmVaCreateSimpleCheckBox.3 +man/man3/XmVaCreateSimpleMenuBar.3 +man/man3/XmVaCreateSimpleOptionMenu.3 +man/man3/XmVaCreateSimplePopupMenu.3 +man/man3/XmVaCreateSimplePulldownMenu.3 +man/man3/XmVaCreateSimpleRadioBox.3 +man/man3/XmWidgetGetBaselines.3 +man/man3/XmWidgetGetDisplayRect.3 +man/man5/Traits.5 +man/man5/UIL.5 +man/man5/WML.5 +man/man5/mwmrc.5 |