xref: /haiku/src/preferences/time/TimeZoneListView.h (revision 4e3137c085bae361922078f123dceb92da700640)
1 /*
2  * Copyright 2012, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Sean Bailey <ziusudra@gmail.com>
7  */
8 #ifndef _TIME_ZONE_LIST_VIEW_H
9 #define _TIME_ZONE_LIST_VIEW_H
10 
11 
12 #include <DateFormat.h>
13 #include <OutlineListView.h>
14 #include <TimeFormat.h>
15 
16 
17 class TimeZoneListView : public BOutlineListView {
18 public:
19 								TimeZoneListView(void);
20 	virtual						~TimeZoneListView();
21 
22 protected:
23 	virtual	bool				GetToolTipAt(BPoint point, BToolTip** _tip);
24 
25 private:
26 	BDateFormat					fDateFormat;
27 	BTimeFormat					fTimeFormat;
28 };
29 
30 
31 #endif	// _TIME_ZONE_LIST_VIEW_H
32