Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
164 views

On Linux, could a process render another process's GUI?

I am writing a video player on Linux and I would like to separate it into 2 process : A. decoder process B. GUI In this way, I could use different programming languages and when a problem happens, ...
2
votes
1answer
121 views

X11. How to know the full size of a window (with the size of its decorations)

I would like to retrieve the complete size of any windows in X11 in order to automatically resize it. So far I have used wmctrl but the size seems to be incomplete. for instance >$ wmctrl -lG ...
2
votes
1answer
70 views

Mechanism of clipboard of xwindow

Can anybody explain the mechanism of clipboard of xwindow to me? For example, if I make a operation of open a file from gedit and copy the content of this file using ctrl+c. And then I open vim and ...
2
votes
1answer
90 views

XWindows terminal emulation as a .NET Winform component

We are writing a kind of industry dashboard that shows many graphical information coming from various sources. Because one of these sources is a closed Unix application, we would need a XWindow ...
2
votes
1answer
196 views

Top level window on X Window System

I want to print on the screen the information about Top level windows under Linux. I use the xlib functions. I successfully recurse from the root window to print all the informations about all the ...
1
vote
0answers
303 views

exceed vs xming

If we compare excedd and xming, which is better? What are advantages or disadvantages of both? How to convince somebody to use the one of them instead of the other?
1
vote
1answer
149 views

Get the actual geometry of a gnome-terminal

in X I know you can get the geometry of a window with xwininfo. Unfortunately, if i retrieve such geometry from a gnome-terminal and use that to start another one with gnome-terminal --geometry ..., ...
1
vote
2answers
510 views

how to start an application as soon as the x start up in ubuntu?

I want to run a gui application as soon as x startup in ubuntu, I found upstart may work,so I create a conf file inside /etc/init/ but it seems that it cann't work correctly. myjob.conf start on ...
1
vote
2answers
273 views

Video decoding and rendering library for XLib

Currently what I have a Linux application that was written using Xlib and I needed to add video playing capabilities into it. What libraries would you recommend that I could use for video decoding ...
0
votes
1answer
13 views

Is it possible to change the display server of a running x window client application?

I wonder whether it is possible to change the display server IP of a running x window client application. More specifically: - i would login to a server remotely (IP 1.1.1.1) - i would set the ...
0
votes
0answers
30 views

fedora 15 + ati 2400 driver = gnome can't work

I install fedora 15 but without video drive. So, I download ati 2400 XT driver(It's my video card type). Then restart and go into multi-user mode. I install this driver by 'chmod 755 ...
0
votes
2answers
77 views

Android monkeyrunner crashes XWindows in Ubuntu

I have extensive test application written for monkeyrunner. There is about 30 use cases which takes about 20 minutes. It is pretty long, but I was never able to play it entirely, because whenever I am ...
0
votes
2answers
105 views

Tracking XWindow Protocol

Is it possible to track XWindow protocol with a tool? I thought wireshark would be a good framework to host such an idea but there seems no support. What should be done to achieve this goal?
0
votes
1answer
149 views

How do I create a X-windows window independent of the current window manager?

I am playing with X-windows, Xlib, etc. I want to create a X-window independent of the window-manager: meaning that I do not want the WM to put a frame, minimize-maximize, close, menu, title-bar, etc. ...
-1
votes
1answer
137 views

How to install cygwin/X through apt-cyg [closed]

Anyone knows how to install cygwin/X through apt-cyg, no with setup.exe?
-2
votes
1answer
212 views

How to draw an image from file on window with Xlib

This is my code: int main() { Display *d = XOpenDisplay(0); unsigned int bitmap_width, bitmap_height; int x, y; Pixmap bitmap; if ( d ) { Window w = XCreateWindow(d, ...