blob: 2cb2e71756ec6cbc52557a72cc9bf48f72bbff83 (
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 <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
|