summaryrefslogtreecommitdiffstats
path: root/src/part/remoteLister.h
blob: 3a8a6f3b640511fabbb8aa499fe910af339c19c7 (plain)
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
//Author:    Max Howell <max.howell@methylblue.com>, (C) 2003-4
//Copyright: See COPYING file that comes with this distribution

#ifndef REMOTELISTER_H
#define REMOTELISTER_H

#include <kdirlister.h>

namespace Filelight
{
   class RemoteLister : public KDirLister
   {
   Q_OBJECT
  TQ_OBJECT
   public:
      RemoteLister( const KURL &url, TQWidget *tqparent );
      ~RemoteLister();

   private slots:
      void completed();
      void _completed();
      void canceled();

   private:
      class Store *m_root, *m_store;
  };
}

#endif