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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/***************************************************************************
network.h - description
-------------------
begin : Tue Feb 8 2000
copyright : (C) 2000 by mark dufour
email : m.dufour@twi.tudelft.nl
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef NETWORK_H
#define NETWORK_H
//Generated area. DO NOT EDIT!!!(begin)
#include <qwidget.h>
#include <qgroupbox.h>
#include <qlabel.h>
#include <qlineedit.h>
#include <qpushbutton.h>
//Generated area. DO NOT EDIT!!!(end)
#include <qwidget.h>
/**
*@author mark dufour
*/
class network : public QWidget {
Q_OBJECT
public:
network(QWidget *parent=0, const char *name=0);
~network();
QLineEdit *LEstartaddress;
QLineEdit *LEcacheserver;
QLineEdit *LEemailaddress;
QLineEdit *LEsmtpserver;
QLineEdit *LEircserver;
QLineEdit *LEnickname1;
QLineEdit *LEnickname2;
QLineEdit *LEnickname3;
QLineEdit *LEnickname4;
public slots:
void ircServerChanged( const QString &server );
void useCurrentAddress();
protected:
void initDialog();
//Generated area. DO NOT EDIT!!!(begin)
QGroupBox *QGroupBox_1;
QLabel *QLabel_1;
QLabel *QLabel_2;
QGroupBox *QGroupBox_4;
QLabel *QLabel_3;
QLabel *QLabel_5;
QLabel *QLabel_9;
QLabel *QLabel_4;
QLabel *QLabel_8;
QGroupBox *QGroupBox_3;
QLabel *QLabel_6;
QLabel *QLabel_7;
//Generated area. DO NOT EDIT!!!(end)
private:
QPushButton *Bcurrent;
};
#endif
|