I hosted a QWinWidget in a CView and want it to stay at a designated position when resizing. But QWinWidget always moves to (0, 0), i.e. left-top corner of the CView.

I tried to debug in this way:

QWinWidget* pWidget = new QWinWidget(pCView);
pWidget->move(50, 50);
QPoint pos = pWidget->pos();

Note that: the pos is always (0, 0).

Why is that?

link|improve this question

0% accept rate
feedback

2 Answers

I believe you would need to create a child QWidget of the QWinWidget to be able to position it. However, I have never used the mfc-migration tool kit.

link|improve this answer
Yes, there is a child QWidget. Moving the child QWidget does not affect QWinWidget's position. I found that QWinWidget does not have parent QWidget, while the QWidget.pos() is the position in its parent widget coordinate, so it is always zero. – Kevin C. May 27 '10 at 1:34
feedback

You may need to firstly show the widget, then move:

pWidget->show();
pWidget->move( 50, 50 );
link|improve this answer
That doesn't work also. – Kevin C. May 27 '10 at 9:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.