summaryrefslogtreecommitdiffstats
path: root/quanta/treeviews/uploadtreefolder.h
blob: 96b45771fd5ec83632ce5099df1b4532d0532538 (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
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
/***************************************************************************
                          uploadtreefolder.h  -  description
                             -------------------
    begin                : Sun Aug 25 2002
    copyright            : (C) 2002 by Andras Mantia <amantia@kde.org>
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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; version 2 of the License.               *
 *                                                                         *
 ***************************************************************************/

#ifndef UPLOADTREEFOLDER_H
#define UPLOADTREEFOLDER_H

#include <tqfile.h>
#include <tqfileinfo.h>
#include <tqstring.h>
#include <tqstringlist.h>

#include <klistview.h>
#include <kurl.h>

/**
  *@author Andras Mantia
  */

class KURL;

class UploadTreeFolder : public TDEListViewItem  {
public:
  UploadTreeFolder( const KURL &a_url, TQListView * parent, const char * name);
  UploadTreeFolder( const KURL &a_url, UploadTreeFolder * parent, const char * name );
  virtual ~UploadTreeFolder();

  /** used for sorting */
  virtual TQString key ( int column, bool ascending ) const;
  TQString fullName();
  KURL url() {return m_url;}

  virtual void setOpen( bool );
  void setup();
  void setWhichPixmap(const TQString& pixmap );

public:
  UploadTreeFolder * parentFolder;
  KURL m_url;

public slots: // Public slots
  void reloadList();

};

#endif