The xwindow tag has no wiki summary.
0
votes
1answer
37 views
Universal vim-like keyboard shortcut for all program
how can I write a program to implement vim feature in all other programs like this:
capture keystroke before all other program
decide whether it's in normal, insert or visual mode according to ...
0
votes
0answers
41 views
How can I run XWindow on Gentoo in Parallels Desktop 8 under MacOS? [closed]
When it starts, it says No Screens Found.
In my make.conf, I tried both VIDEO_CARD="vesa" and VIDEO_CARD="parallels"
The problems are the same.
How can I startx?
0
votes
0answers
45 views
How to get XWindow ID in GTK3?
In GTK3, how do I retrieve the XWindow ID? I didn't see anything related to this in GdkWindow.
In documentation, it is said there is a GDK_WINDOW_XID() macro. However, I cannot find the equivalence ...
0
votes
0answers
18 views
GlXSurface copy
I am very new to Xwindow and Glx, i am getting strucked up in copying the data , here is my question. I have a drawable X window(XCreateWindow), i have a byteArray of pixels, how can i use this ...
2
votes
2answers
2k views
Cannot open display on RHEL
I am trying to ssh to a server (myserver) installed with RHEL 5.8 from a desktop client (mydesktop) with RHEL 6.2. I have group installed the "X Window" on the remote server, the DISPLAY variable on ...
3
votes
1answer
92 views
How can I count number of Window with specific title on Linux by Python?
Here is my solution, but I think it's not a good one. Can anybody suggest me new solution, I want to enumarize windows, and get the Title property to compare by just using core library of python , not ...
0
votes
0answers
42 views
Run bash command as owner of X Window in script
I have a bash-script that works just fine and it throws up some search results on a webpage. So far so good. To make it work though, the current user - who owns the X Window - has to run the command ...
0
votes
0answers
18 views
Export only sub dialog window of an application to remote display (ubuntu)
I connect to a linux box via ssh with option -X. I run an application that has a GUI. The application can display video on a sub dialog. Is it possible to export only the sub dialog to the server ...
0
votes
2answers
376 views
Qt X11 application configured as Always on Top
I'm currently trying to execute a Qt X11 application on remote XServer (Exceed). To make application window to be always on top of other displays, I'm using the statement below:
...
1
vote
1answer
373 views
Transparent window in Xwindow parent
I am trying to create an overlay window above another running application.
Let's say firefox. I implemented by using
Xcreatewindow
win = XCreateWindow( display, *firefoxwindow,
...
0
votes
1answer
100 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
2answers
140 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 ...
3
votes
1answer
665 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
678 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, ...
2
votes
1answer
340 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
206 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 ...
1
vote
0answers
663 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
764 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 ..., ...
0
votes
3answers
335 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?
1
vote
1answer
322 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
vote
2answers
2k 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 ...
3
votes
1answer
198 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
443 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
2answers
567 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 ...
4
votes
4answers
189 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, ...
