Article:
 |
|
Graphical Toolkits for OS X: wxPython
|
| Subject: |
|
The GUI toolkits |
| Date: |
|
2007-05-07 05:03:05 |
| From: |
|
miahfost
|
Response to: The GUI toolkits
|
|
Hey Roger,
1. Yes, I am about to publish (in the next week or so) an article on GTK which uses X11 from Apple.
2. Yes you can write server programs that show up on the desktop through ssh. The trick is to make sure X11 is running on the users desktop and to pass the -X (uppercase x) to ssh, like this;
ssh -X your.server.name
Then run the program, like this;
./my_X_app
3. Are you passing the -X switch when you ssh in? Double check you X11 confiiguration and you X windows configuration, it often requires some tweaking because of its default settings. That is to say, you may need to explicitly inform both the server and the client that exporting / importing X windows is allowed.
Hope that helps,
Jeremiah
|
Showing messages 1 through 3 of 3.
-
The GUI toolkits
2007-05-08 08:08:32
interprocess
[View]
-
The GUI toolkits
2007-05-08 10:13:08
Jeremiah Foster |
[View]
-
The GUI toolkits
2007-05-19 19:10:24
interprocess
[View]
I'll admit that I hadn't tried the -X switch for ssh. I tried, with ssh -X both a python script (that works fine on a Linux) and a compiled program. The compiled program displayed remotely fine, but the script didn't. These are the same results that led me to post the comment. I haven't been able to get Python or Tcl/Tk to display remotely from OSX (10.4.7 server, 10.4.9 client).
Have you actually run your example scripts remotely? I would REALLY like to get OSX to behave like a real Unix.
Roger