QLineEdit可见宽度设置?

时间:2012-07-17 03:32:57

标签: c++ qt user-interface

如何使用 Qt 4.8.1 及以上设置QLineEdit的可见宽度。示例是将可见宽度设置为某个像素大小或字符宽度。我希望只使用C ++而不是QML。

我的想法是朝着这个街区的方向发展:

QHBoxLayout *nameRow = new QHBoxLayout; 

QLineEdit   *firstNameText = new QLineEdit,
            *middleIntText = new QLineEdit,
            *lastNameText = new QLineEdit;
//Whatever method is needed here to edit visible width
//firstNameText->???
//middleIntText->???
//lastNameText->???

nameRow->addWidget(firstNameText);
nameRow->addWidget(middleIntText);
nameRow->addWidget(lastNameText);

layout->addLayout(nameRow);

QWidget window;
window.setLayout(layout);
window.show();

回答更新:或见下文

firstNameText->setMaximumWidth(100);
firstNameText->setFixedWidth(120);

middleIntText->setMaximumWidth(50);
middleIntText->setFixedWidth(60);

lastNameText->setMaximumWidth(100);
lastNameText->setFixedWidth(120);

1 个答案:

答案 0 :(得分:12)

firstNameText->setMaximumWidth(100);
firstNameText->setFixedWidth(120);

您可以使用这两个功能,他们会相应地调整宽度。