You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
68 lines
1.7 KiB
/*
|
|
knhdrviewitem.h
|
|
|
|
KNode, the KDE newsreader
|
|
Copyright (c) 1999-2004 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 KNHDRVIEWITEM_H
|
|
#define KNHDRVIEWITEM_H
|
|
|
|
#include <klistview.h>
|
|
#include "headerview.h"
|
|
|
|
class KNArticle;
|
|
class KNHeaderView;
|
|
|
|
|
|
class KNHdrViewItem : public KListViewItem {
|
|
|
|
public:
|
|
KNHdrViewItem( KNHeaderView *ref, KNArticle *a = 0 );
|
|
KNHdrViewItem( KNHdrViewItem *ref, KNArticle *a = 0 );
|
|
~KNHdrViewItem();
|
|
|
|
virtual int compare(TQListViewItem *i, int col, bool ascending) const;
|
|
|
|
void paintCell(TQPainter *p, const TQColorGroup &cg, int column, int width, int alignment);
|
|
int width(const TQFontMetrics &fm, const TQListView *lv, int column);
|
|
|
|
virtual TQString text( int col ) const;
|
|
|
|
void expandChildren();
|
|
|
|
void setActive( bool b ) { mActive = b; }
|
|
bool isActive() const { return mActive; }
|
|
|
|
// DND
|
|
TQDragObject* dragObject();
|
|
|
|
KNArticle *art;
|
|
int countUnreadInThread();
|
|
|
|
bool showToolTip( int column ) const { return mShowToolTip[column]; }
|
|
|
|
private:
|
|
void init( KNArticle *a );
|
|
|
|
bool greyOut();
|
|
bool firstColBold();
|
|
TQColor normalColor();
|
|
TQColor greyColor();
|
|
|
|
bool mActive;
|
|
bool mShowToolTip[5]; // ### hardcoded column count :-(
|
|
|
|
};
|
|
|
|
#endif
|