delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / runtime / kioslave / fish / tests / copytester.h
blobf422378ec654559ac6d6ace2d237ac0d9465b25f
1 /* Copytester is a test case for the fish kioslave. It copies 100 files from /tmp to /tmp/test using fish's functions.
2 It was written to verify KDE bug 147948: https://bugs.kde.org/show_bug.cgi?id=147948 */
4 #ifndef KDE4START_H__
5 #define KDE4START_H__
7 #include <kmainwindow.h>
8 #include <kio/scheduler.h>
9 #include <kurl.h>
10 #include <kio/jobclasses.h>
12 class Browser : public QWidget
14 Q_OBJECT
15 public:
16 Browser();
17 public slots:
18 void slotButtonClicked();
19 void dataishere(KIO::Job *,const QByteArray &);
21 #endif