qx11embedcontainer

QX11EmbedContainer and QProcess problem...

Hello folks, I've been trying to put a QX11EmbedContainer in my app, and I need to start a terminal within it (because with konsolepart I can practically do nothing). QX11EmbedContainer* container = new QX11EmbedContainer(this); // with or without "this" I got the same result container->show(); QProcess process(container); QString exec...

QX11EmbedWidget and QX11EmbedContainer

Can one place an arbitrary program (firefox, openoffice, etc...) in a QX11EmbedContainer? The fllowing seems, to work int main(int argc, char *argv[]) { QApplication app(argc, argv); QX11EmbedContainer container; container.show(); QProcess * process = new QProcess(&container); QString executable("xterm"); QStri...