You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
497 B
18 lines
497 B
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// functions generating layout-aware widgets
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "newwidget.h"
|
|
|
|
TQLineEdit *newLineEdit(int visiblewidth, TQWidget *parent) {
|
|
TQLineEdit *l = new TQLineEdit(parent);
|
|
if(visiblewidth == 0)
|
|
l->setMinimumWidth(l->sizeHint().width());
|
|
else
|
|
l->setFixedWidth(l->fontMetrics().width('H') * visiblewidth);
|
|
|
|
return l;
|
|
}
|