xref: /haiku/src/apps/deskbar/TeamMenuItem.h (revision 9f339a005bd0f5ffd8d6f49ae26cc498417e36fa)
141281cf3SAxel Dörfler /*
241281cf3SAxel Dörfler Open Tracker License
341281cf3SAxel Dörfler 
441281cf3SAxel Dörfler Terms and Conditions
541281cf3SAxel Dörfler 
641281cf3SAxel Dörfler Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
741281cf3SAxel Dörfler 
841281cf3SAxel Dörfler Permission is hereby granted, free of charge, to any person obtaining a copy of
941281cf3SAxel Dörfler this software and associated documentation files (the "Software"), to deal in
1041281cf3SAxel Dörfler the Software without restriction, including without limitation the rights to
1141281cf3SAxel Dörfler use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1241281cf3SAxel Dörfler of the Software, and to permit persons to whom the Software is furnished to do
1341281cf3SAxel Dörfler so, subject to the following conditions:
1441281cf3SAxel Dörfler 
1541281cf3SAxel Dörfler The above copyright notice and this permission notice applies to all licensees
1641281cf3SAxel Dörfler and shall be included in all copies or substantial portions of the Software.
1741281cf3SAxel Dörfler 
1841281cf3SAxel Dörfler THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1941281cf3SAxel Dörfler IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
2041281cf3SAxel Dörfler FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2141281cf3SAxel Dörfler BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
2241281cf3SAxel Dörfler AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
2341281cf3SAxel Dörfler WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2441281cf3SAxel Dörfler 
2541281cf3SAxel Dörfler Except as contained in this notice, the name of Be Incorporated shall not be
2641281cf3SAxel Dörfler used in advertising or otherwise to promote the sale, use or other dealings in
2741281cf3SAxel Dörfler this Software without prior written authorization from Be Incorporated.
2841281cf3SAxel Dörfler 
291687edd0SFredrik Holmqvist Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered
301687edd0SFredrik Holmqvist trademarks of Be Incorporated in the United States and other countries. Other
311687edd0SFredrik Holmqvist brand product names are registered trademarks or trademarks of their respective
321687edd0SFredrik Holmqvist holders.
3341281cf3SAxel Dörfler All rights reserved.
3441281cf3SAxel Dörfler */
35*9f339a00SJohn Scipione #ifndef TEAM_MENU_ITEM_H
36*9f339a00SJohn Scipione #define TEAM_MENU_ITEM_H
3741281cf3SAxel Dörfler 
381cd61330SJohn Scipione 
3941281cf3SAxel Dörfler //	Individual team/application listing
4041281cf3SAxel Dörfler //	item for TeamMenu in mini/vertical mode
4141281cf3SAxel Dörfler //	item for ExpandoMenuBar in vertical or horizontal expanded mode
4241281cf3SAxel Dörfler 
431cd61330SJohn Scipione 
4441281cf3SAxel Dörfler #include <MenuItem.h>
4541281cf3SAxel Dörfler 
4641281cf3SAxel Dörfler #include "WindowMenuItem.h"
4741281cf3SAxel Dörfler #include "BarMenuBar.h"
4841281cf3SAxel Dörfler 
4941281cf3SAxel Dörfler 
5041281cf3SAxel Dörfler class BBitmap;
5141281cf3SAxel Dörfler 
5241281cf3SAxel Dörfler class TTeamMenuItem : public BMenuItem {
5341281cf3SAxel Dörfler public:
545b0fd10dSJohn Scipione 								TTeamMenuItem(BList* team, BBitmap* icon,
555b0fd10dSJohn Scipione 									char* name, char* sig,
5641281cf3SAxel Dörfler 									float width = -1.0f, float height = -1.0f,
575b0fd10dSJohn Scipione 									bool drawLabel = true,
585b0fd10dSJohn Scipione 									bool vertical = true);
595b0fd10dSJohn Scipione 								TTeamMenuItem(float width = -1.0f,
605b0fd10dSJohn Scipione 									float height = -1.0f,
6171bd3ba5SJonas Sundström 									bool vertical = true);
6241281cf3SAxel Dörfler 	virtual						~TTeamMenuItem();
6341281cf3SAxel Dörfler 
6441281cf3SAxel Dörfler 			status_t			Invoke(BMessage* msg = NULL);
6541281cf3SAxel Dörfler 
6641281cf3SAxel Dörfler 			void				SetOverrideWidth(float width);
6741281cf3SAxel Dörfler 			void				SetOverrideHeight(float height);
68249a4a18SStephan Aßmus 			void				SetOverrideSelected(bool selected);
691f0c9f18SJohn Scipione 
701dccb7aaSJohn Scipione 			int32				ArrowDirection() const { return fArrowDirection; };
711dccb7aaSJohn Scipione 			void				SetArrowDirection(int32 direction);
721dccb7aaSJohn Scipione 
731dccb7aaSJohn Scipione 			bool				HasLabel() const { return fDrawLabel; };
74dc05c262SJohn Scipione 			void				SetHasLabel(bool drawLabel);
7541281cf3SAxel Dörfler 
761dccb7aaSJohn Scipione 			bool				IsExpanded() const { return fExpanded; };
7741281cf3SAxel Dörfler 			void				ToggleExpandState(bool resizeWindow);
7841281cf3SAxel Dörfler 			BRect				ExpanderBounds() const;
7941281cf3SAxel Dörfler 			TWindowMenuItem*	ExpandedWindowItem(int32 id);
8041281cf3SAxel Dörfler 
811dccb7aaSJohn Scipione 			float				LabelWidth() const { return fLabelWidth; };
821dccb7aaSJohn Scipione 			BList*				Teams() const { return fTeam; };
831dccb7aaSJohn Scipione 			const char*			Signature() const { return fSig; };
841dccb7aaSJohn Scipione 			const char*			Name() const { return fName; };
8541281cf3SAxel Dörfler 
8641281cf3SAxel Dörfler protected:
8741281cf3SAxel Dörfler 			void				GetContentSize(float* width, float* height);
8841281cf3SAxel Dörfler 			void				Draw();
8941281cf3SAxel Dörfler 			void				DrawContent();
9041281cf3SAxel Dörfler 			void				DrawContentLabel();
911dccb7aaSJohn Scipione 			void				DrawExpanderArrow();
9241281cf3SAxel Dörfler 
9341281cf3SAxel Dörfler private:
9441281cf3SAxel Dörfler 	friend	class				TExpandoMenuBar;
955b0fd10dSJohn Scipione 			void				_InitData(BList* team, BBitmap* icon,
965b0fd10dSJohn Scipione 									char* name, char* sig,
9741281cf3SAxel Dörfler 									float width = -1.0f, float height = -1.0f,
985b0fd10dSJohn Scipione 									bool drawLabel = true,
995b0fd10dSJohn Scipione 									bool vertical = true);
10041281cf3SAxel Dörfler 
101249a4a18SStephan Aßmus 			bool				_IsSelected() const;
102249a4a18SStephan Aßmus 
1035b0fd10dSJohn Scipione private:
10441281cf3SAxel Dörfler 			BList*				fTeam;
10541281cf3SAxel Dörfler 			BBitmap*			fIcon;
10641281cf3SAxel Dörfler 			char*				fName;
10741281cf3SAxel Dörfler 			char*				fSig;
10841281cf3SAxel Dörfler 			float				fOverrideWidth;
10941281cf3SAxel Dörfler 			float				fOverrideHeight;
11041281cf3SAxel Dörfler 			bool				fDrawLabel;
11141281cf3SAxel Dörfler 			bool				fVertical;
11241281cf3SAxel Dörfler 
1131dccb7aaSJohn Scipione 			TBarView*			fBarView;
1141dccb7aaSJohn Scipione 			float				fLabelWidth;
1151dccb7aaSJohn Scipione 			float				fLabelAscent;
1161dccb7aaSJohn Scipione 			float				fLabelDescent;
1171dccb7aaSJohn Scipione 
118249a4a18SStephan Aßmus 			bool				fOverriddenSelected;
1191dccb7aaSJohn Scipione 
1201dccb7aaSJohn Scipione 			bool				fExpanded;
1211dccb7aaSJohn Scipione 			int32				fArrowDirection;
12241281cf3SAxel Dörfler };
12341281cf3SAxel Dörfler 
12471bd3ba5SJonas Sundström 
125*9f339a00SJohn Scipione #endif	// TEAM_MENU_ITEM_H
126