blob: 49d79e69b84deef089c628871b71284c89a0668a (
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 *tqparent);
#endif
|