Questions tagged [qx11embedcontainer]
11 questions
10
votes
1 answer
Yocto "Failed to run qemu: Could not initialize SDL(x11 not > available)"
So I've got Yocto on a local build server, coz who wants that massive build chewing up their workspace amirite?
Host and Server are Arch Linux 4.19.44-1-lts
Anyway I am just running up the example from the quick build page found here and when I…

BitShift
- 977
- 2
- 9
- 28
10
votes
2 answers
QT How to embed an application into QT widget
In our project we have three independent applications, and we have to develop a QT control application that controls these three applications. The main window will be seperated to three sub windows - each one display another one application.
I…

RRR
- 3,937
- 13
- 51
- 75
5
votes
1 answer
QX11EmbedContainer alternative in Qt5
I need QX11EmbedContainer, but in new version of Qt 5.6 it dissapeared.
Is there another alternative to QX11EmbedContainer that works/exists in Qt 5.6?

scastiello
- 73
- 4
3
votes
2 answers
What's the counterpart of QX11EmbedWidget in Qt5?
In Qt4, we could use the embedInto method of the QX11EmbedWidget class to embed any QWidget into another application. But in Qt5, the QX11EmbedWidget class was dropped. I've been searching Google for many hours, but all I found indicated to use the…

theV0ID
- 4,172
- 9
- 35
- 56
3
votes
1 answer
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();
…

adk
- 4,479
- 9
- 36
- 38
2
votes
0 answers
Signal/slot not working just in a few objects
I want to connect the clicked signal of some abstract buttons to a same slot. The thing is that it only works on one abstract button, when clicking on the others nothing occurs. Any ideas of what is failing?
I have already checked that the…

marpe
- 185
- 2
- 9
2
votes
3 answers
Embed a GTK Widget into a Qt Window
I need to develop an application for Windows, Linux and Mac. To not have to write all the window cruft myself I chose to use Qt5 (over wxWidgets, because the latter ship no precompiled binaries). I have a GTK Widget (of Cef) which I now need to…

abergmeier
- 13,224
- 13
- 64
- 120
1
vote
1 answer
QX11EmbedContainer and QProcess problem
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…

JuanDeLosMuertos
- 4,532
- 15
- 55
- 87
0
votes
0 answers
How I can make a call QX11embedcontainer from Java?
How I can call QX11embedcontainer from Java?I read about JNI and , whichever functions I need to call I need to declare in java. But can i do something like by putting my application in QX11embedcontainer and just write JNI interface for only for…

bounty_killer525
- 89
- 6
0
votes
1 answer
QX11EmbedContainer code error
Given below is the code for embedding an application using QX11EmbedContainer.
#include "mainwindow.h"
#include
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
…

praxmon
- 5,009
- 22
- 74
- 121
0
votes
0 answers
C++:QX11EmbedContainer not working on Qt
Given below is the code that I have written for opening VLC from Qt. I want to use the QX11EmbedContainer so that I can use it to "contain" VLC.
#include "mainwindow.h"
#include
#include
#include
using…

praxmon
- 5,009
- 22
- 74
- 121