downstairs:1.焦点问题
2.相对+绝对位置
(2014-04-16 17:17) 
1 应该不是焦点问题 ,当CLICK该控件的时候,焦点应该会转移到该控件上
2 你可以试一试这样
QVBoxLayout *vLayout = new QVBoxLayout;
QLabel *b1 = new QLabel(this);
b1->setText("b1");
QLabel *b2 = new QLabel(this);
b2->setText("b2");
vLayout->addWidget(b1);
vLayout->addWidget(b2);
this->setLayout(vLayout);
qDebug("b1.x = %d, b1.y = %d", b1->x(), b1->y());
qDebug("b2.x = %d, b2.y = %d", b2->x(), b2->y());