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
|
/*
Copyright (C) 2005-2009 Michel de Boer <michel@twinklephone.com>
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _HISTORYLISTVIEW_H
#define _HISTORYLISTVIEW_H
#include <sys/time.h>
#include "q3listview.h"
#include "qpainter.h"
#include "call_history.h"
#include "user.h"
// Columns of the history list view
#define HISTCOL_TIMESTAMP 0
#define HISTCOL_DIRECTION 1
#define HISTCOL_FROMTO 2
#define HISTCOL_SUBJECT 3
#define HISTCOL_STATUS 4
class HistoryListViewItem : public Q3ListViewItem {
private:
t_call_record call_record;
time_t last_viewed;
public:
HistoryListViewItem( Q3ListView * parent, const t_call_record &cr, t_user *user_config,
time_t _last_viewed);
void paintCell(QPainter *painter, const QColorGroup &cg,
int column, int width, int align);
int compare ( Q3ListViewItem * i, int col, bool ascending ) const;
time_t get_time_start(void) const;
t_call_record get_call_record(void) const;
};
#endif
|