xwinclip not working with xdm

2003-03-05 Thread J S
Hi,

When I run xdm to an AIX box (either with -clipboard or xwinclip standalone) 
I'm unable to select text to copy. The highlight won't stick after selecting 
the text, but it copy parts of the text.

However on Solaris, I can select the text, but this doesn't get copied to 
the clipboard.

Here's the command I tried:

xwin -ac -query aix334 -from win123 -clipboard

Does anyone else get this problem? I'm using the XWin Test version 78.

Thanks,

JS.

_
Use MSN Messenger to send music and pics to your friends 
http://messenger.msn.co.uk



Re: InsightII application problems

2003-03-05 Thread Michel Bardiaux
Are you aware your machine seems to have a VERY wrong date? In Netscape,
your message appears as posted on Sat, 5 Oct 2002 08:36:32 +0200.

Uli Horn wrote:
> 
> Hi
> 
> I have an molecular modelling application developed by Accelrys called
> insightII which runs on an SGI.
> 
> I would like to view it remotely on a PC using the X Windows System.  I have
> tested it using eXceed 3D (MS Windows remote X Windows package) and it seems
> to function properly but when I use either cygwin or Redhat Linux it gives
> me an error "Couldn't get initial visual in app_init_display" where
> app_init_display is an application function.

Maybe the X server under cygwin or RH does not by default create the
visual expected by the application. Did you compare the output of
xdpyinfo between Exceed and RH?

> 
> >From what I can see it uses Opengl and the glx libraries but the application
> might also require Motif.

ITIYM 'the Motif window manager'. That indeed is not a problem with
Exceed, which *does* honor the WM properties used by the Motif shell
widgets, and *is* likely to be a problem with RH, at least when using
KDE, because the KDW window manager does not honor some of these
properties. Eg a window supposed to be fixed-size with MWM will have
effective resize handles with KDM. I have not yet found a way to deal
with that specific issue even for applications of which I do have the
source code! One problem has been that I have not yet found any Xt-based
application that *is* non-resizeable under KDE. Ideas, anyone?

I have not yet tried our Motif apps under a recent Cygwin so I cant say
anything about cygwin.

> 
> My questions are:
> 1. If the XFree86 module is loaded does this mean that glx is also loaded?
> 2. Is the Motif environment emulated?

In view of the previous paragraph, could you clarify the question?

> 3. What are the strategies to get to the nub of the problem?
> 
> Regards
> Uli


-- 
Michel Bardiaux
Peaktime Belgium S.A.  Bd. du Souverain, 191  B-1160 Bruxelles
Tel : +32 2 790.29.41


xtrs 4.9 hanging in cygwin-xfree

2003-03-05 Thread Damien Cymbal
Hello,

I am trying to run xtrs 4.9 (http://www.tim-mann.org/xtrs.html) on the
latest (as of March 4) cygwin/XFree86 distribution.

xtrs launches and presents its initial display but then seems to hang (no
response to keyboard input, etc.)  xtrs on Linux is running without
problems.

I know nothing about X application development, but I have built xtrs in
debug mode and can fumble my way through gdb if somebody would through me a
few pointers of where I can get more pertinent info to help resolve this.

Thanks.

dc


Re: xwinclip not working with xdm

2003-03-05 Thread Harold L Hunt II
Nope, never seen that before.

J S wrote:
Hi,

When I run xdm to an AIX box (either with -clipboard or xwinclip 
standalone) I'm unable to select text to copy. The highlight won't stick 
after selecting the text, but it copy parts of the text.

However on Solaris, I can select the text, but this doesn't get copied 
to the clipboard.

Here's the command I tried:

xwin -ac -query aix334 -from win123 -clipboard

Does anyone else get this problem? I'm using the XWin Test version 78.

Thanks,

JS.

_
Use MSN Messenger to send music and pics to your friends 
http://messenger.msn.co.uk




Re: xmesa header file

2003-03-05 Thread Gary Pekmezi
Thanks for the response.
Yes I do have the XFree86-prog package but I still cannot find xmesa.h .
I do see osmesa.h in the directory where xmesa.h is called, I am not
sure if this is the cygwin version of xmesa.



"Harold L Hunt II" <[EMAIL PROTECTED]> wrote in message
news:<[EMAIL PROTECTED]>...
> You need to get the XFree86-prog package, if you don't already have 
> it.
> 
> Harold
> 
> Gerald Pekmezi wrote:
> > I have been trying to compile a program with gcc. The compile fails 
> > because the program looks for xmesa.h. As far as I could tell there 
> > was no such file anywhere in the cygwin directory. Would appreciate 
> > any input.
> > 
> > 
> > 
> 
> 


Re: script for remote window?

2003-03-05 Thread Thomas Chadwick
The following post I made some time ago might be helpful...

http://sources.redhat.com/ml/cygwin-xfree/2002-10/msg00091.html

From: "Les Mikesell" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
Subject: script for remote window?
Date: Tue, 4 Mar 2003 12:43:33 -0600
The new -multiwindow mode looks really promising for
occasional access to unix GUI programs from a windows
box.  Is there any way to completely hide the process
of connecting in a batch file or bash script that can
be attached to a windows desktop icon?  That is, it
should start xwin (only) if it isn't already running,
The then ssh the appropriate command to a remote host with
X forwarding.  If ssh keys are in place the window
should just appear without much indication that it is
remote, otherwise it would have to stop for the ssh
password prompt. How can such a script tell at the
batch or bash level if xwin is already running?
---
  Les Mikesell
[EMAIL PROTECTED]


_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE*  
http://join.msn.com/?page=features/junkmail



Re: script for remote window?

2003-03-05 Thread Thomas Chadwick
As for figuring out whether or not XWin is already running, it's as easy as 
"ps -ef | grep XWin".  For instance, the following "scriplet" will tell you 
whether XWin is running...

if [ "`ps -ef | grep XWin`" == "" ]
then
 echo "XWin is not running."
else
 echo "XWin is running."
fi

From: "Thomas Chadwick" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: script for remote window?
Date: Wed, 05 Mar 2003 15:52:58 -0500
The following post I made some time ago might be helpful...

http://sources.redhat.com/ml/cygwin-xfree/2002-10/msg00091.html

From: "Les Mikesell" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
Subject: script for remote window?
Date: Tue, 4 Mar 2003 12:43:33 -0600
The new -multiwindow mode looks really promising for
occasional access to unix GUI programs from a windows
box.  Is there any way to completely hide the process
of connecting in a batch file or bash script that can
be attached to a windows desktop icon?  That is, it
should start xwin (only) if it isn't already running,
The then ssh the appropriate command to a remote host with
X forwarding.  If ssh keys are in place the window
should just appear without much indication that it is
remote, otherwise it would have to stop for the ssh
password prompt. How can such a script tell at the
batch or bash level if xwin is already running?
---
  Les Mikesell
[EMAIL PROTECTED]


_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE*  
http://join.msn.com/?page=features/junkmail


_
Tired of spam? Get advanced junk mail protection with MSN 8. 
http://join.msn.com/?page=features/junkmail



Re: xmesa header file

2003-03-05 Thread Andrew Markebo
Hi!

Just a thought, shouldn't xmesa be in the opengl lib or something
similar?

Or am I into it wrong Harold? Can't find xmesa.h in the XFree86-prog
file.

/Andy

/ "Gary Pekmezi" <[EMAIL PROTECTED]> wrote:
| Thanks for the response.
| Yes I do have the XFree86-prog package but I still cannot find xmesa.h .
| I do see osmesa.h in the directory where xmesa.h is called, I am not
| sure if this is the cygwin version of xmesa.
|
|
| "Harold L Hunt II" <[EMAIL PROTECTED]> wrote in message
| news:<[EMAIL PROTECTED]>...
|> You need to get the XFree86-prog package, if you don't already have 
|> it.
|> 
|> Harold
[...]

-- 
 The eye of the beholder rests on the beauty!



InsightII application problems

2003-03-05 Thread Uli Horn
Hi

I have an molecular modelling application developed by Accelrys called
insightII which runs on an SGI.

I would like to view it remotely on a PC using the X Windows System.  I have
tested it using eXceed 3D (MS Windows remote X Windows package) and it seems
to function properly but when I use either cygwin or Redhat Linux it gives
me an error "Couldn't get initial visual in app_init_display" where
app_init_display is an application function.

>From what I can see it uses Opengl and the glx libraries but the application
might also require Motif.

My questions are:
1. If the XFree86 module is loaded does this mean that glx is also loaded?
2. Is the Motif environment emulated?
3. What are the strategies to get to the nub of the problem?

Regards
Uli









Re: InsightII application problems

2003-03-05 Thread Uli Horn
I was wondering why I did not see my message.

Many thanks
Uli
- Original Message -
From: "Michel Bardiaux" <[EMAIL PROTECTED]>
Newsgroups: gmane.os.cygwin.xfree
Cc: "Uli Horn" <[EMAIL PROTECTED]>
Sent: Wednesday, March 05, 2003 12:11
Subject: Re: InsightII application problems


> Are you aware your machine seems to have a VERY wrong date? In Netscape,
> your message appears as posted on Sat, 5 Oct 2002 08:36:32 +0200.
>
> Uli Horn wrote:
> >
> > Hi
> >
> > I have an molecular modelling application developed by Accelrys called
> > insightII which runs on an SGI.
> >
> > I would like to view it remotely on a PC using the X Windows System.  I
have
> > tested it using eXceed 3D (MS Windows remote X Windows package) and it
seems
> > to function properly but when I use either cygwin or Redhat Linux it
gives
> > me an error "Couldn't get initial visual in app_init_display" where
> > app_init_display is an application function.
>
> Maybe the X server under cygwin or RH does not by default create the
> visual expected by the application. Did you compare the output of
> xdpyinfo between Exceed and RH?
>
> >
> > >From what I can see it uses Opengl and the glx libraries but the
application
> > might also require Motif.
>
> ITIYM 'the Motif window manager'. That indeed is not a problem with
> Exceed, which *does* honor the WM properties used by the Motif shell
> widgets, and *is* likely to be a problem with RH, at least when using
> KDE, because the KDW window manager does not honor some of these
> properties. Eg a window supposed to be fixed-size with MWM will have
> effective resize handles with KDM. I have not yet found a way to deal
> with that specific issue even for applications of which I do have the
> source code! One problem has been that I have not yet found any Xt-based
> application that *is* non-resizeable under KDE. Ideas, anyone?
>
> I have not yet tried our Motif apps under a recent Cygwin so I cant say
> anything about cygwin.
>
> >
> > My questions are:
> > 1. If the XFree86 module is loaded does this mean that glx is also
loaded?
> > 2. Is the Motif environment emulated?
>
> In view of the previous paragraph, could you clarify the question?
>
> > 3. What are the strategies to get to the nub of the problem?
> >
> > Regards
> > Uli
>
>
> --
> Michel Bardiaux
> Peaktime Belgium S.A.  Bd. du Souverain, 191  B-1160 Bruxelles
> Tel : +32 2 790.29.41
>


-- 
This message has been scanned for viruses and dangerous content by 
MailScanner, and is believed to be clean.

"The CSIR exercises no editorial control over E-mail messages and/or
attachments thereto/links referred to therein originating in the
organisation and the views in this message/attachments thereto are
therefore not necessarily those of the CSIR and/or its employees.  
The sender of this e-mail is, moreover, in terms of the CSIR's Conditions
of Service, subject to compliance with the CSIR's internal E-mail and 
Internet Policy."