Last change
on this file 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:
793 bytes
|
Line | |
---|
1 | /****************************************************************************
|
---|
2 | ** $Id: view.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 VIEW_H
|
---|
12 | #define VIEW_H
|
---|
13 |
|
---|
14 | #include <qvbox.h>
|
---|
15 | #include <qcstring.h>
|
---|
16 | #include <qurloperator.h>
|
---|
17 |
|
---|
18 | class QMultiLineEdit;
|
---|
19 |
|
---|
20 | class View : public QVBox
|
---|
21 | {
|
---|
22 | Q_OBJECT
|
---|
23 |
|
---|
24 | public:
|
---|
25 | View();
|
---|
26 |
|
---|
27 | private slots:
|
---|
28 | void downloadFile();
|
---|
29 | void newData( const QByteArray &ba );
|
---|
30 |
|
---|
31 | private:
|
---|
32 | QMultiLineEdit *fileView;
|
---|
33 | QUrlOperator op;
|
---|
34 |
|
---|
35 | QString getOpenFileName();
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.