You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kppp/newwidget.h

20 lines
453 B

/////////////////////////////////////////////////////////////////////////////
//
// 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