summaryrefslogtreecommitdiffstats
blob: 721b4da2230c637e60090234c7ac38ae63b896c5 (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
/*
 * Copyright (c) 2012 Catalin Badea
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <Swift/Controllers/UIInterfaces/HistoryWindow.h>
#include <Swift/QtUI/ui_QtHistoryWindow.h>
#include <QtChatView.h>
#include <QtTabbable.h>
#include <Swift/QtUI/Roster/QtTreeWidget.h>
#include <set>
#include <QDate>

namespace Swift {
	class QtHistoryWindow : public QtTabbable, public HistoryWindow {
			Q_OBJECT

		public:
			QtHistoryWindow(SettingsProvider*, UIEventStream*);
			~QtHistoryWindow();
			void activate();
			void setRosterModel(Roster*);
			void addMessage(const std::string &message, const std::string &senderName, bool senderIsSelf, const std::string& avatarPath, const boost::posix_time::ptime& time, bool addAtTheTop);
			void resetConversationView();
			void setDate(const boost::gregorian::date& date);

			void closeEvent(QCloseEvent* event);
			void showEvent(QShowEvent* event);

		protected slots:
			void handleScrollRequested(int pos);
			void handleScrollReachedTop();
			void handleScrollReachedBottom();
			void handleReturnPressed();
			void handleCalendarClicked(const QDate& date);

		private:
			void handleSomethingSelectedChanged(RosterItem* item);

			Ui::QtHistoryWindow ui_;
			QtChatTheme* theme_;
			QtChatView* conversation_;
			QtTreeWidget* conversationRoster_;
			std::set<QDate> dates_;
			int idCounter_;
	};
}