Problem with position of widget created with QWidget::createWindowContainer.
-
wrote on 1 Oct 2014, 10:16 last edited by
Hi,
I have main window where I have QWidget container named widget, It was created in QtCreator. That widget should be a parent of my other widget that I create using QWidget::createWindowContainer.
@
void MainClass::createWidgetFromId(WId id)
{
cWindow = QWindow::fromWinId(id); // QWindow* cWindow;
cWidget = QWidget::createWindowContainer(cWindow); // QWidget* cWidget;
cWidget->setParent(ui->widget);
cWidget->show();
}@
That cWidget has position (0,0) (absolute position, in relation to the main window). It should have (0,0) position but in relation to its parent. Parent has position (0,20) in relation to the main window.
Any idea what is causing that problem? -
wrote on 15 Apr 2016, 02:25 last edited by xwang
Hi,maybe it's too late to answer. Once i have also used createWindowContainer,and found the cWidget's position is (0,0). Finnaly I have found this linke -> stackoverflow. try
cWindow->setFlags(Qt::FramelessWindowHint);
and it is better to use QHBoxLayout to manager
cWidget
andthis
cWindow = QWindow::fromWinId(id); cWindow->setFlags(Qt::FramelessWindowHint); cWidget = QWidget::createWindowContainer(cWindow); QHBoxLayout *layout = new QHBoxLayout(this); layout->addWidget(cWidget); this->addLayout(layout); cWidget->show();