You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
449 B
C
20 lines
449 B
C
15 years ago
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// 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
|