few changes added to channel gui - list of groups and channels was replaced with a tree view

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1636 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
alexandrut 2009-09-12 10:55:40 +00:00
parent 656380415d
commit e26829e76a
6 changed files with 361 additions and 138 deletions

View file

@ -0,0 +1,18 @@
/*
* ChanGroupDelegate.h
*
* Created on: Sep 7, 2009
* Author: alex
*/
#ifndef CHANGROUPDELEGATE_H_
#define CHANGROUPDELEGATE_H_
#include <QItemDelegate>
class ChanGroupDelegate : public QItemDelegate
{
virtual void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const;
};
#endif /* CHANGROUPDELEGATE_H_ */