xref: /haiku/src/apps/deskbar/BarWindow.h (revision 830f67ef991407f287dbc1238aa5f5906d90c991)
1 /*
2 Open Tracker License
3 
4 Terms and Conditions
5 
6 Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
7 
8 Permission is hereby granted, free of charge, to any person obtaining a copy of
9 this software and associated documentation files (the "Software"), to deal in
10 the Software without restriction, including without limitation the rights to
11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12 of the Software, and to permit persons to whom the Software is furnished to do
13 so, subject to the following conditions:
14 
15 The above copyright notice and this permission notice applies to all licensees
16 and shall be included in all copies or substantial portions of the Software.
17 
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 
25 Except as contained in this notice, the name of Be Incorporated shall not be
26 used in advertising or otherwise to promote the sale, use or other dealings in
27 this Software without prior written authorization from Be Incorporated.
28 
29 Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered
30 trademarks of Be Incorporated in the United States and other countries. Other
31 brand product names are registered trademarks or trademarks of their respective
32 holders.
33 All 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 
43 class TBarApp;
44 class TBarView;
45 class TDeskbarMenu;
46 
47 class TBarWindow : public BWindow {
48 public:
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 
93 private:
94 			bool				_IsFocusMessage(BMessage* message);
95 
96 private:
97 	static	TDeskbarMenu*		sDeskbarMenu;
98 			TBarApp*			fBarApp;
99 			TBarView*			fBarView;
100 			int32				fMenusShown;
101 };
102 
103 
104 #endif	/* BAR_WINDOW_H */
105