blob: 7efea5faad341ff7f49a091b1c7b84d30ddfd5d3 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
/*
kopetehistorydialog.h - Kopete History Dialog
Copyright (c) 2002 by Richard Stellingwerff <remenic@linuxfromscratch.org>
Copyright (c) 2004 by Stefan Gehn <metz AT gehn.net>
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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. *
* *
*************************************************************************
*/
#ifndef _HISTORYDIALOG_H
#define _HISTORYDIALOG_H
#include <tqfile.h>
#include <tqstringlist.h>
#include <kdialogbase.h>
#include <tdelistview.h>
#include "kopetemessage.h"
class HistoryViewer;
//class HistoryWidget;
namespace Kopete { class MetaContact; }
namespace Kopete { class XSLT; }
class HistoryLogger;
class TDEHTMLView;
class TDEHTMLPart;
class KURL;
namespace KParts { struct URLArgs; class Part; }
class TDEListViewDateItem;
class DMPair
{
public:
DMPair() {md = TQDate(0, 0, 0); mc = 0; }
DMPair(TQDate d, Kopete::MetaContact *c) { md = d; mc =c; }
TQDate date() const { return md; }
Kopete::MetaContact* metaContact() const { return mc; }
bool operator==(const DMPair p1) const { return p1.date() == this->date() && p1.metaContact() == this->metaContact(); }
private:
TQDate md;
Kopete::MetaContact *mc;
};
/**
* @author Richard Stellingwerff <remenic@linuxfromscratch.org>
* @author Stefan Gehn <metz AT gehn.net>
*/
class HistoryDialog : public KDialogBase
{
Q_OBJECT
public:
HistoryDialog(Kopete::MetaContact *mc, TQWidget* parent=0,
const char* name="HistoryDialog");
~HistoryDialog();
/**
* Calls init(Kopete::Contact *c) for each subcontact of the metacontact
*/
signals:
void closing();
private slots:
void slotOpenURLRequest(const KURL &url, const KParts::URLArgs &/*args*/);
// Called when a date is selected in the treeview
void dateSelected(TQListViewItem *);
void slotSearch();
// Reinitialise search
void slotSearchErase();
void slotSearchTextChanged(const TQString& txt); // To enable/disable search button
void slotContactChanged(int index);
void slotFilterChanged(int index);
void init();
void slotLoadDays();
void slotRightClick(const TQString &url, const TQPoint &point);
void slotCopy();
void slotCopyURL();
private:
enum Disabled { Prev=1, Next=2 };
void refreshEnabled( /*Disabled*/ uint disabled );
void initProgressBar(const TQString& text, int nbSteps);
void doneProgressBar();
void init(Kopete::MetaContact *mc);
void init(Kopete::Contact *c);
/**
* Show the messages in the HTML View
*/
void setMessages(TQValueList<Kopete::Message> m);
void listViewShowElements(bool s);
/**
* Search if @param item already has @param text child
*/
bool hasChild(TDEListViewItem* item, int month);
/**
* We show history dialog to look at the log for a metacontact. Here is this metacontact.
*/
Kopete::MetaContact *mMetaContact;
TQPtrList<Kopete::MetaContact> mMetaContactList;
// History View
TDEHTMLView *mHtmlView;
TDEHTMLPart *mHtmlPart;
HistoryViewer *mMainWidget;
Kopete::XSLT *mXsltParser;
struct Init
{
TQValueList<DMPair> dateMCList; // mc for MetaContact
} mInit;
bool mSearching;
TDEAction *mCopyAct;
TDEAction *mCopyURLAct;
TQString mURL;
};
#endif
|