diff options
Diffstat (limited to 'parts/fileview/fileitemfactory.h')
-rw-r--r-- | parts/fileview/fileitemfactory.h | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/parts/fileview/fileitemfactory.h b/parts/fileview/fileitemfactory.h new file mode 100644 index 00000000..f87ae39a --- /dev/null +++ b/parts/fileview/fileitemfactory.h @@ -0,0 +1,89 @@ +/*************************************************************************** + * Copyright (C) 2003 by Mario Scalas * + * [email protected] * + * * + * 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 FILEITEMFACTORY_H +#define FILEITEMFACTORY_H + +#include <kfiletreeview.h> + +class FileTreeWidget; + +/** +@author KDevelop Authors +*/ +namespace filetreeview +{ + /** + @author KDevelop Authors + */ + class FileTreeViewItem : public KFileTreeViewItem + { + friend class FileTreeBranchItem; + protected: + FileTreeViewItem( KFileTreeViewItem* parent, KFileItem* item, KFileTreeBranch* branch, bool pf ) + : KFileTreeViewItem( parent, item, branch ), m_isProjectFile( pf ), m_isActiveDir( false ) + { + hideOrShow(); + } + FileTreeViewItem( KFileTreeView* parent, KFileItem* item, KFileTreeBranch* branch ) + : KFileTreeViewItem( parent, item, branch ), m_isProjectFile( false ) + { + hideOrShow(); + } + virtual ~FileTreeViewItem() {} + + public: + virtual void paintCell( QPainter *p, const QColorGroup &cg, int column, int width, int alignment ); + FileTreeWidget* listView() const; + void hideOrShow(); + bool isProjectFile() const { return m_isProjectFile; } + bool setProjectFile( QString const &path, bool pf ); + bool isActiveDir() const { return m_isActiveDir; } + bool changeActiveDir( const QString &, const QString&, bool foundolddir = false, bool foundnewdir = false ); + + protected: + virtual int compare( QListViewItem *i, int col, bool ascending ) const; + + private: + bool m_isProjectFile; + bool m_isActiveDir; + }; + + /** + @author KDevelop Authors + */ + class FileTreeBranchItem : public KFileTreeBranch + { + protected: + FileTreeBranchItem( KFileTreeView* view, const KURL& url, const QString& name, const QPixmap& pix ) + : KFileTreeBranch( view, url, name, pix, false, + new FileTreeViewItem( view, new KFileItem( url, "inode/directory", S_IFDIR ), this ) ) + { + } + virtual ~FileTreeBranchItem() + { +// if (root()) +// delete root()->fileItem(); + } + + }; + + /** + @author KDevelop Authors + */ + class BranchItemFactory + { + public: + virtual FileTreeBranchItem *makeBranchItem( KFileTreeView* view, const KURL& url, const QString& name, const QPixmap& pix ) = 0; + }; +} + +#endif |