aboutsummaryrefslogtreecommitdiffstats
path: root/examples/X11/qt/simplefrontend/SimpleFrontEndProject.h
blob: 96b7463c3ba6c571b7e90875c5406e1a5c9e4875 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/***********************************************
** Source Dump From QtEZ http://qtez.zax.net/qtez
** ---------------------------------------------
** Dumped: Mon Sep 21 01:22:44 1998
**     To: /usr/src/sword/examples/X11/qt/simplefrontend/SimpleFrontEndProject.h
**     By: root
***********************************************/

#ifndef QTEZ_OUTP
 #define QTEZ_OUTP "QTEZ v0.77a"
#endif

#ifndef SIMPLEFRONTENDPROJECT_H
#define SIMPLEFRONTENDPROJECT_H

/* Project Specific Includes */
#include "/usr/src/sword/examples/X11/qt/simplefrontend/main.h"

/* Library Includes */
#include <qdialog.h>
#include <qwidget.h>
#include <qlabel.h>
#include <qcombo.h>
#include <qmlined.h>
#include <qlined.h>
#include <qpushbt.h>
#include <swmgr.h>

class
SimpleFrontEndProject : public QDialog
{
	 Q_OBJECT
private:
	QLineEdit *text1;
	QMultiLineEdit *mlined1;
	QComboBox *combo1;
	QLabel *label1;
	QLabel *label2;
	QLabel *label3;
public:
	SimpleFrontEndProject(QWidget *parent=0, char *name=0);
	 friend int main(int, char **);
	SWMgr manager;
protected:
signals:
public slots:
	void lookup(const char *);
};
#endif