blob: 07129c7409f7a2b6db099db191d25c7e09be889c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/////////////////////////////////////////////////////////////////////////////
//
// functions generating tqlayout-aware widgets
//
/////////////////////////////////////////////////////////////////////////////
#ifndef __NEWWIDGET__H__
#define __NEWWIDGET__H__
#include <tqwidget.h>
#include <tqlineedit.h>
#define L_FIXEDW 1
#define L_FIXEDH 2
#define L_FIXED (L_FIXEDW | L_FIXEDH)
TQLineEdit *newLineEdit(int visiblewidth, TQWidget *parent);
#endif
|