1/*
2Open Tracker License
3
4Terms and Conditions
5
6Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
7
8Permission is hereby granted, free of charge, to any person obtaining a copy of
9this software and associated documentation files (the "Software"), to deal in
10the Software without restriction, including without limitation the rights to
11use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12of the Software, and to permit persons to whom the Software is furnished to do
13so, subject to the following conditions:
14
15The above copyright notice and this permission notice applies to all licensees
16and shall be included in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25Except as contained in this notice, the name of Be Incorporated shall not be
26used in advertising or otherwise to promote the sale, use or other dealings in
27this Software without prior written authorization from Be Incorporated.
28
29Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered
30trademarks of Be Incorporated in the United States and other countries. Other
31brand product names are registered trademarks or trademarks of their respective
32holders.
33All rights reserved.
34*/
35#ifndef BAR_WINDOW_H
36#define BAR_WINDOW_H
37
38
39#include <Deskbar.h>
40#include <Window.h>
41
42
43class TBarApp;
44class TBarView;
45class TDeskbarMenu;
46
47class TBarWindow : public BWindow {
48public:
49								TBarWindow();
50
51	virtual	void				MenusBeginning();
52	virtual	void				MenusEnded();
53	virtual	bool				QuitRequested();
54	virtual	void				WorkspaceActivated(int32 workspace,
55									bool activate);
56	virtual	void				ScreenChanged(BRect size, color_space depth);
57	virtual	void				MessageReceived(BMessage* message);
58	virtual	void				Minimize(bool minimize);
59	virtual	void				FrameResized(float width, float height);
60
61			void				SaveSettings();
62			TBarView*			BarView() const { return fBarView; };
63	static	void				SetDeskbarMenu(TDeskbarMenu* menu);
64			TDeskbarMenu*			DeskbarMenu();
65
66			void				ShowDeskbarMenu();
67			void				ShowTeamMenu();
68
69			void 				GetLocation(BMessage* message);
70			deskbar_location 	DeskbarLocation() const;
71			void				SetLocation(BMessage* message);
72			void				SetDeskbarLocation(deskbar_location location,
73									bool expand);
74
75			void				IsExpanded(BMessage* message);
76			void				Expand(BMessage* message);
77
78			void				ItemInfo(BMessage* message);
79			void				ItemExists(BMessage* message);
80
81			void				CountItems(BMessage* message);
82			void				MaxItemSize(BMessage* message);
83
84			void				AddItem(BMessage* message);
85			void				RemoveItem(BMessage* message);
86
87			void				GetIconFrame(BMessage* message);
88
89			bool				IsShowingMenu() const;
90
91			void				SetSizeLimits();
92
93private:
94			bool				_IsFocusMessage(BMessage* message);
95
96private:
97	static	TDeskbarMenu*		sDeskbarMenu;
98			TBarApp*			fBarApp;
99			TBarView*			fBarView;
100			int32				fMenusShown;
101};
102
103
104#endif	/* BAR_WINDOW_H */
105