mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
/*
|
|
KNode, the KDE newsreader
|
|
Copyright (c) 1999-2005 the KNode authors.
|
|
See file AUTHORS for details
|
|
|
|
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.
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
|
|
*/
|
|
|
|
#ifndef KNCOLLECTIONVIEWITEM_H
|
|
#define KNCOLLECTIONVIEWITEM_H
|
|
|
|
#include "kncollection.h"
|
|
|
|
#include <foldertreewidget.h>
|
|
|
|
using namespace KPIM;
|
|
|
|
/** Folder tree item. */
|
|
class KNCollectionViewItem : public FolderTreeWidgetItem {
|
|
|
|
public:
|
|
explicit KNCollectionViewItem( FolderTreeWidget *parent, Protocol protocol = NONE, FolderType type = Root);
|
|
explicit KNCollectionViewItem( FolderTreeWidgetItem *parent, Protocol protocol = NONE,
|
|
FolderType type = Other, int unread = 0, int total = 0 );
|
|
~KNCollectionViewItem();
|
|
|
|
/**
|
|
Sort newsgroups before local folders.
|
|
Reimplemented from FolderTreeWidgetItem.
|
|
*/
|
|
bool operator<( const QTreeWidgetItem &other ) const;
|
|
|
|
/**
|
|
Sets the collection this item represents.
|
|
*/
|
|
void setCollection( KNCollection::Ptr c );
|
|
/**
|
|
Returns the collection this item represents.
|
|
*/
|
|
KNCollection::Ptr collection() const
|
|
{ return coll; };
|
|
|
|
protected:
|
|
/**
|
|
Elid names of group according to usenet habit.
|
|
(e.g. fr.comp.lang.perl is elided to f.c.lang.perl)
|
|
*/
|
|
virtual QString elidedLabelText( const QFontMetrics &fm, unsigned int width ) const;
|
|
|
|
private:
|
|
/** Inialize this item. */
|
|
void setUp();
|
|
|
|
KNCollection::Ptr coll;
|
|
};
|
|
|
|
#endif
|