blob: 52f2ec7648804aa58b349d403e50156eda9bf10a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/////////////////////////////////////////////////////////////////////////////
//
// functions generating layout-aware widgets
//
/////////////////////////////////////////////////////////////////////////////
#ifndef __NEWWIDGET__H__
#define __NEWWIDGET__H__
#include <qwidget.h>
#include <qlineedit.h>
#define L_FIXEDW 1
#define L_FIXEDH 2
#define L_FIXED (L_FIXEDW | L_FIXEDH)
QLineEdit *newLineEdit(int visiblewidth, QWidget *parent);
#endif
|