blob: 7df81e0e51772f350bd3ea226c71aec4da82747a (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/***************************************************************************
* Copyright (C) 2003 by Mario Scalas *
* mario.scalas@libero.it *
* *
* 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef FILETREEVIEWWIDGETIMPL_H
#define FILETREEVIEWWIDGETIMPL_H
#include <tqobject.h>
#include <tqvaluelist.h>
#include <kfiletreeview.h>
#include <tqdom.h>
#include "fileitemfactory.h"
class FileTreeWidget;
namespace filetreeview
{
class FileTreeViewItem;
class FileTreeBranchItem;
class BranchItemFactory;
}
class FileViewPart;
class TQHeader;
class KToggleAction;
class TQPopupMenu;
/**
* @author Mario Scalas
* A base class for providing additional features to the standard KFileTreeViewItem-based widget we
* use for listing files in project directory.
*/
class FileTreeViewWidgetImpl : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
FileTreeViewWidgetImpl( FileTreeWidget *parent, const char *name );
virtual ~FileTreeViewWidgetImpl();
//! return a list containing the filenames of the currently selected items.
KURL::List selectedPathUrls();
// shortcuts
FileTreeWidget *fileTree() const;
TQDomDocument &projectDom() const;
TQHeader *header() const { return fileTree()->header(); }
void setColumnWidth( int column, int w ) { fileTree()->setColumnWidth( column, w ); }
int contentsWidth() const { return fileTree()->contentsWidth(); }
void triggerUpdate() { fileTree()->triggerUpdate(); }
FileViewPart *part() const { return m_part; }
filetreeview::FileTreeViewItem *currentItem() const { return static_cast<filetreeview::FileTreeViewItem*>( fileTree()->currentItem() ); }
/**
* @return a reference to a new filetreeview::BranchItemFactory object which can be used for filling
* the tree view.
*/
filetreeview::BranchItemFactory *branchItemFactory() const { return m_branchItemFactory; }
/**
* Costraints that must be satisfied to start a reload of the the tree.
* @return
*/
virtual bool canReloadTree() const = 0;
/**
* Here the popup menu is filled: by standard only the "reload tree" (only if the above function
* returns true) and "show project files" options are added
* @param popupMenu the menu to fill
* @param item the TQListViewItem which this menu has been requested upon
*/
virtual void fillPopupMenu( TQPopupMenu *popupMenu, TQListViewItem *item ) const;
/**
* @return true if non project files are to be shown, false otherwise
*/
bool showNonProjectFiles() const;
signals:
/**
* Emitted when the current implementation "recognizes" it cannot work anymore: for example the VCS impl.
* can ask to be relieved from work when the VCS plug-in it uses has been unloaded!
*/
void implementationInvalidated();
private slots:
void slotReloadTree();
void slotToggleShowNonProjectFiles();
protected:
void setBranchItemFactory( filetreeview::BranchItemFactory *aFactory ) { m_branchItemFactory = aFactory; }
TQString projectDirectory() const;
private:
TQValueList<TQListViewItem*> allSelectedItems( TQListViewItem * item ) const;
filetreeview::BranchItemFactory *m_branchItemFactory;
FileViewPart *m_part;
bool m_isReloadingTree;
KToggleAction *m_actionToggleShowNonProjectFiles;
};
#endif
|