00001 /* 00002 * kPPP: A pppd front end for the KDE project 00003 * 00004 * $Id: iplined.h,v 1.2 2003/08/09 17:14:55 kergoth Exp $ 00005 * 00006 * Copyright (C) 1997 Bernd Johannes Wuebben 00007 * wuebben@math.cornell.edu 00008 * 00009 * based on EzPPP: 00010 * Copyright (C) 1997 Jay Painter 00011 * 00012 * This library is free software; you can redistribute it and/or 00013 * modify it under the terms of the GNU Library General Public 00014 * License as published by the Free Software Foundation; either 00015 * version 2 of the License, or (at your option) any later version. 00016 * 00017 * This library is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 * Library General Public License for more details. 00021 * 00022 * You should have received a copy of the GNU Library General Public 00023 * License along with this program; if not, write to the Free 00024 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00025 */ 00026 00027 #ifndef _IPLINED_H_ 00028 #define _IPLINED_H_ 00029 00030 #include <qlineedit.h> 00031 00032 class IPLineEdit : public QLineEdit { 00033 public: 00034 IPLineEdit( QWidget *parent=0, const char *name=0 ); 00035 ~IPLineEdit() {} 00036 00037 virtual QSize sizeHint() const; 00038 }; 00039 00040 #endif
1.4.2