libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / apps / deskbar / BarWindow.h
blob2e8c2dddb8f2e75ab81146d6ecd76a9b1021219f
1 /*
2 Open Tracker License
4 Terms and Conditions
6 Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
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:
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.
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.
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.
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.
35 #ifndef BAR_WINDOW_H
36 #define BAR_WINDOW_H
39 #include <Deskbar.h>
40 #include <Window.h>
43 class TDeskbarMenu;
44 class TBarView;
46 class TBarWindow : public BWindow {
47 public:
48 TBarWindow();
50 virtual void MenusBeginning();
51 virtual void MenusEnded();
52 virtual bool QuitRequested();
53 virtual void WorkspaceActivated(int32 workspace,
54 bool activate);
55 virtual void ScreenChanged(BRect size, color_space depth);
56 virtual void MessageReceived(BMessage* message);
57 virtual void Minimize(bool minimize);
58 virtual void FrameResized(float width, float height);
60 void SaveSettings();
61 TBarView* BarView() const { return fBarView; };
62 static void SetDeskbarMenu(TDeskbarMenu* menu);
63 TDeskbarMenu* DeskbarMenu();
65 void ShowDeskbarMenu();
66 void ShowTeamMenu();
68 void GetLocation(BMessage* message);
69 deskbar_location DeskbarLocation() const;
70 void SetLocation(BMessage* message);
71 void SetDeskbarLocation(deskbar_location location,
72 bool expand);
74 void IsExpanded(BMessage* message);
75 void Expand(BMessage* message);
77 void ItemInfo(BMessage* message);
78 void ItemExists(BMessage* message);
80 void CountItems(BMessage* message);
82 void AddItem(BMessage* message);
83 void RemoveItem(BMessage* message);
85 void GetIconFrame(BMessage* message);
87 bool IsShowingMenu() const;
89 private:
90 bool _IsFocusMessage(BMessage* message);
92 private:
93 static TDeskbarMenu* sDeskbarMenu;
94 TBarView* fBarView;
95 bool fShowingMenu;
99 #endif /* BAR_WINDOW_H */