summaryrefslogtreecommitdiffstats
blob: 3fcd7e4b6bed1a0f130463022ccfc26bf8dec0d7 (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
/*
 * 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 hide();
			void setEnabled(bool b);

		private:
			JID jid_;
	};
}