summaryrefslogtreecommitdiffstats
blob: 2d1ca57860ad1d47f10bf63c232b0a31bff117c3 (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
/*
 * Copyright (c) 2011 Vlad Voicu
 * Licensed under the Simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <QWidget>

#include <Swift/Controllers/UIInterfaces/ViewHistoryWindow.h>

#include <Swiften/JID/JID.h>

namespace Swift {
	class QtViewHistoryWindow : public QWidget, public ViewHistoryWindow {
			Q_OBJECT
		public:
			QtViewHistoryWindow();
			void show();
			void setEnabled(bool enabled);

		private:
			JID jid_;
	};
}