summaryrefslogtreecommitdiffstats
blob: f352936c84d0fda7c61ac093d381e7d109bca126 (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
#ifndef SWIFTEN_MockTreeWidgetItem_H
#define SWIFTEN_MockTreeWidgetItem_H

#include "Swiften/Base/String.h"
#include "Swiften/Roster/TreeWidgetItem.h"

#include <boost/signal.hpp>
#include <boost/shared_ptr.hpp>

namespace Swift {

class MockTreeWidgetItem : public TreeWidgetItem {
	public:
		virtual ~MockTreeWidgetItem() {};
		virtual void setText(const String&) {};
		virtual void setExpanded(bool) {};
		virtual void setTextColor(unsigned long) {};
		virtual void setBackgroundColor(unsigned long) {};
		virtual void show() {};
		virtual void hide() {};
};

}
#endif