I have to put an xterm into a QSplitter but when i call embedClient()... At the moment I can get the xterm outside the splitter.
QString ID
= "0x3a0000e";
// I've taken this id from xwininfo -root -all | grep xterm bool* x = new bool(true);
container->embedClient(ID.toInt(x,16));
QX11EmbedContainer* container = new QX11EmbedContainer();
QString ID = "0x3a0000e"; // I've taken this id from xwininfo -root -all | grep xterm
bool* x = new bool(true);
container->embedClient(ID.toInt(x,16));
To copy to clipboard, switch view to plain text mode
With this code I get the outside xterm.
How can I use a QProcess and embed it in the container?
And specially, how can I know its winId from qt? (without using xwininfo)
Bookmarks