summaryrefslogtreecommitdiffstats
path: root/kbiff/status.h
blob: af33bc5187e96c98cb7e28387560a71c45cbcd95 (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
/*
 * status.h
 * Copyright (C) 1999 Kurt Granroth <granroth@kde.org>
 *
 * This file contains the declaration of the KBiffStatus
 * widget.
 *
 * $Id$
 */
#ifndef KBIFFSTATUS_H 
#define KBIFFSTATUS_H 

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif 

#include <ntqframe.h>
#include <ntqlist.h>
#include <ntqstring.h>

class TQListView;
class TQPoint;

class KBiffStatusItem : TQObject
{
    Q_OBJECT
public:
	KBiffStatusItem(const TQString& mailbox, const int num_new);
	KBiffStatusItem(const TQString& mailbox, const int num_new,const int num_cur);
	virtual ~KBiffStatusItem();

	TQString mailbox() const { return _mailbox; }
	TQString newMessages() const { return _newMessages; }
	TQString curMessages() const { return _curMessages; }

protected:
	TQString _mailbox;
	TQString _newMessages;
	TQString _curMessages;
};

typedef TQList<KBiffStatusItem>         KBiffStatusList;
typedef TQListIterator<KBiffStatusItem> KBiffStatusListIterator;

class KBiffStatus : public TQFrame
{
	Q_OBJECT
public:
	KBiffStatus(TQWidget *parent, const TQString& profile, const KBiffStatusList& list);
	virtual ~KBiffStatus();

	void updateListView(const KBiffStatusList& list);
	void popup(const TQPoint& pos);

protected:
	TQListView *_listView;
};

#endif // KBIFFSTATUS_H