access windows titles of a X11 application


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers access windows titles of a X11 application
# 1  
Old 07-09-2005
access windows titles of a X11 application

Hi,
Do you think there a way to get the windows titles of an X11 application with multiple windows on AIX?

I have only the application's process id, but I can use shell and C++ programming. I am looking for a hint/links to explore.

Thanks!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

Web based X11 access

Hi guys ;) I'm new here. I had been reading a long time here on the forums but now I registered finally. And got a question for you. Since yesterday I've got successfully installed a X11-connection from my Windows Xp to a Ubuntu . Now there's a web portal needed. So I have to make a... (1 Reply)
Discussion started by: Houssem90
1 Replies

2. Programming

Visibility of X11 windows

Does anyone know if it is possible to check whether a window in x11 (using xlib) is visible or not? I tried XGetWindowProperty, but that doesn't work, because the windows host (dtwm on Solaris 10) does not support EWMH. (5 Replies)
Discussion started by: JenniferKuiper
5 Replies

3. Windows & DOS: Issues & Discussions

Windows 7 64 bit issues with X11

Hi, I was hoping that somebody could assist me with the following issue. I recently installed a windows 7 64 bit professional on a desktop with following specs: Intel Core i7 3.4Ghz, 16 GB DDR3 RAM, AMD Radeon HD 6450. (Which was a upgrade of a xp 32 bit based system) Since I'm more... (10 Replies)
Discussion started by: kristofvdo
10 Replies

4. UNIX for Dummies Questions & Answers

startX windows application during boot.....putty connection takes the windows

Dear all i am new to linux/debian i run my application on the computer...during startup in bashrc i wrk wid dis script to invoke startx..i do this above command and it works perfectly... if && ; then startx -- -br 1>/dev/null exit 0 fi i use winscp for file transfer and putty for... (1 Reply)
Discussion started by: venkat_330
1 Replies

5. Solaris

No X11 windows from non-global zone

Hey everyone I have a solaris 10 install, with an extra zone installed. I am ssh-ing to it from a windows machine using putty, with Xming installed. I can get the global zone to forward the X11 windows fine, but when I ssh to the zone, it doesn't work, giving the error: Xlib: connection to... (1 Reply)
Discussion started by: goodvikings
1 Replies

6. UNIX for Dummies Questions & Answers

Cygwin/X11 issues on Windows 7

Hi All, I recently upgraded to windows 7 and am therefore reinstalling cygwin/x11 after a long time. On XP I would start xterm from the startxwin.bat file. I am experiencing trouble starting with the startxwin executable which is the new recommended startup method as well as afew other... (2 Replies)
Discussion started by: ScKaSx
2 Replies

7. Shell Programming and Scripting

To access UNIX server from Tk application running on Windows

Hi, I am new to this forum and this is my first post. I want to know that if I make an application in Tk (version of Tcl to create GUI) in windows and want to run to UNIX server, is it possible ? In other words, can I access a UNIX server through a Tk application running on windows ? ... (1 Reply)
Discussion started by: ratneshnagori
1 Replies

8. Linux

Web based X11 access

Hi guys ;) I'm new here. I had been reading a long time here on the forums but now I registered finally. And got a question for you. Since yesterday I've got successfully installed a X11-connection from my WinXP to a RedHat EL 5 - Box. Now there's a web portal needed. So I have to make a... (2 Replies)
Discussion started by: supermaRiio
2 Replies

9. Solaris

Invalid configuration for instance svc:/application/x11/xvnc-inetd:default, placing i

I am not able to connect Solaris 10 through X Manager from Windows machine. I found the below errors in Solaris 10 , can anybody check the errors and please help me. Property 'name' of instance svc:/application/x11/xvnc-inetd:default is missing, inconsistent or invalid Property... (2 Replies)
Discussion started by: durgaprasadr13
2 Replies

10. Programming

Trying to sync X11 application with vertical retrace.

Hi! I'm trying to write an X11 application with the Xext extension and I'd like to update window content during/after the vertical retrace so they appear smoothly and don't shear. I've found xsync-flip.c at Index of /xorgsync which should do the trick but that produces: X Error of failed... (0 Replies)
Discussion started by: Danny.Chouinard
0 Replies
Login or Register to Ask a Question
UNTITLED
LOCAL UNTITLED NAME
glutPopWindow -- Request to raise the current window to the top LIBRARY
OpenGLUT - window SYNOPSIS
#include <openglut.h> void glutPopWindow(void); DESCRIPTION
Request that the current window be brought to the top. A window can be in front of or behind other windows, as determined by the z-order from front to back. Top-level OpenGLUT windows can be placed at the front or back of the z-order by means of the glutPopWindow() and glutPushWindow() API functions. A z-order also applies to the subwindows of a top-level window. While the z-order of top-level windows can usually be adjusted by the user, subwindow z-order is controlled entirely by the application. If this has any effect on your window's visibility, you should receive a glutWindowStatusFunc() callback and a glutDisplayFunc() callback. CAVEATS
The z-order of top-level windows is ultimately managed by the windowing system. Therefore, a push or pop request by an OpenGLUT application may not necessarily succeed or take immediate effect. Not applicable to offscreen windows. SEE ALSO
glutCreateWindow(3) glutDisplayFunc(3) glutPushWindow(3) glutWindowStatusFunc(3) Epoch