blob: 7ae33ec982b421baa7e508fbe6a153afc264eb23 (
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
|
/*
* Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <memory>
#include <Swift/Controllers/UIInterfaces/EventWindow.h>
#include <Swift/QtUI/EventViewer/EventDelegate.h>
#include <Swift/QtUI/EventViewer/EventModel.h>
#include <Swift/QtUI/EventViewer/EventView.h>
class QPushButton;
class QTreeView;
namespace Swift {
class UIEventStream;
class QtEventWindow : public QWidget, public EventWindow {
Q_OBJECT
public:
QtEventWindow(UIEventStream* eventStream);
~QtEventWindow();
void addEvent(std::shared_ptr<StanzaEvent> event, bool active);
void removeEvent(std::shared_ptr<StanzaEvent> event);
signals:
void onNewEventCountUpdated(int count);
private slots:
void handleItemActivated(const QModelIndex& item);
void handleItemClicked(const QModelIndex& item);
void handleReadClicked();
private:
EventModel* model_;
EventDelegate* delegate_;
UIEventStream* eventStream_;
QTreeView* view_;
QPushButton* readButton_;
};
}
|