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.
qt3/examples/network/networkprotocol/view.h

38 lines
748 B

/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef VIEW_H
#define VIEW_H
#include <qvbox.h>
#include <qcstring.h>
#include <qurloperator.h>
class QMultiLineEdit;
class View : public QVBox
{
Q_OBJECT
public:
View();
private slots:
void downloadFile();
void newData( const QByteArray &ba );
private:
QMultiLineEdit *fileView;
QUrlOperator op;
QString getOpenFileName();
};
#endif