This may be too late but I do this to move a dialog directly underneath another dialog:
int resultsY = windowA->y() + windowA->frameGeometry().height();
int resultsX = windowA->x();
windowB->move(resultsX, resultsY);
int resultsY = windowA->y() + windowA->frameGeometry().height();
int resultsX = windowA->x();
windowB->move(resultsX, resultsY);
To copy to clipboard, switch view to plain text mode
You could probably just do:
windowB->move(windowA->x(), windowA->y());
windowB->move(windowA->x(), windowA->y());
To copy to clipboard, switch view to plain text mode
to move it over the current dialog starting at the top left corner
It sounds like you have done this already but if anyone else is trying it, make sure you have down a show() on the dialogs first so that they are at their final position/size before moving them.
Bookmarks