summaryrefslogtreecommitdiffstats
path: root/kppp/newwidget.cpp
blob: d2182fbadd4cf3e331f28d785150b981c721d596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/////////////////////////////////////////////////////////////////////////////
//
// functions generating layout-aware widgets
//
/////////////////////////////////////////////////////////////////////////////

#include "newwidget.h"

QLineEdit *newLineEdit(int visiblewidth, QWidget *parent) {
  QLineEdit *l = new QLineEdit(parent);
  if(visiblewidth == 0)
    l->setMinimumWidth(l->sizeHint().width());
  else
    l->setFixedWidth(l->fontMetrics().width('H') * visiblewidth);
  
  return l;
}