1/*
2 * Copyright 2007, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5#ifndef WIDGET_LAYOUT_TEST_BUTTON_TEST_H
6#define WIDGET_LAYOUT_TEST_BUTTON_TEST_H
7
8
9#include "ControlTest.h"
10
11
12class BButton;
13
14
15class ButtonTest : public ControlTest {
16public:
17								ButtonTest();
18	virtual						~ButtonTest();
19
20	static	Test*				CreateTest();
21	virtual	void				ActivateTest(View* controls);
22	virtual	void				DectivateTest();
23
24private:
25			BButton*			fButton;
26};
27
28
29#endif	// WIDGET_LAYOUT_TEST_BUTTON_TEST_H
30