summaryrefslogtreecommitdiffstats
path: root/quanta/treeviews/uploadtreefile.h
blob: aaa31b219d985ea6f5d707f70a436de3b791f2ff (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
/***************************************************************************
                          uploadtreefile.h  -  description
                             -------------------
    begin                : Sun Aug 25 2002
    copyright            : (C) 2002, 2003 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 UPLOADTREEFILE_H
#define UPLOADTREEFILE_H

#include <klistview.h>

#include "uploadtreefolder.h"

/**
  *@author George Vilches & Andras Mantia
  */

class KFileItem;

class UploadTreeFile : public TDEListViewItem  {
public:
  UploadTreeFile( UploadTreeFolder *parent, const KURL &a_url, const KFileItem &a_fileItem);
  UploadTreeFile( TQListView *parent, const KURL &a_url, const KFileItem &a_fileItem);
  ~UploadTreeFile();

  void setWhichPixmap(const TQString& pixmap);
  int permissions();

  /** used for sorting */
  virtual TQString key ( int column, bool ascending ) const;
  /** No descriptions */
  KURL url();
  void setConfirmUpload(bool confirm) {m_confirm = confirm;}
  bool confirmUpload() {return m_confirm;}

public:
  UploadTreeFolder * parentFolder;
  KURL m_url;
  bool isDir;
  bool m_confirm;
  KFileItem *m_fileItem;
};

#endif