source: trunk/examples/lineedits/lineedits.h@ 20

Last change on this file since 20 was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

  • Property svn:keywords set to Id
File size: 970 bytes
Line 
1/****************************************************************************
2** $Id: lineedits.h 2 2005-11-16 15:49:26Z dmik $
3**
4** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
5**
6** This file is part of an example program for Qt. This example
7** program may be used, distributed and modified without limitation.
8**
9*****************************************************************************/
10
11#ifndef LINEDITS_H
12#define LINEDITS_H
13
14#include <qgroupbox.h>
15
16class QLineEdit;
17class QComboBox;
18
19class LineEdits : public QGroupBox
20{
21 Q_OBJECT
22
23public:
24 LineEdits( QWidget *parent = 0, const char *name = 0 );
25
26protected:
27 QLineEdit *lined1, *lined2, *lined3, *lined4, *lined5;
28 QComboBox *combo1, *combo2, *combo3, *combo4, *combo5;
29
30protected slots:
31 void slotEchoChanged( int );
32 void slotValidatorChanged( int );
33 void slotAlignmentChanged( int );
34 void slotInputMaskChanged( int );
35 void slotReadOnlyChanged( int );
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.