xref: /haiku/src/apps/deskbar/WindowMenuItem.h (revision 445d4fd926c569e7b9ae28017da86280aaecbae2)
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 WINDOW_MENU_ITEM_H
36 #define WINDOW_MENU_ITEM_H
37 
38 
39 #include "TruncatableMenuItem.h"
40 
41 #include <String.h>
42 
43 
44 class BBitmap;
45 
46 // Individual windows of an application item for WindowMenu,
47 // sub of TeamMenuItem all DB positions
48 class TWindowMenuItem : public TTruncatableMenuItem {
49 public:
50 								TWindowMenuItem(const char* name, int32 id,
51 									bool mini, bool currentWorkSpace,
52 									bool dragging = false);
53 
54 			void				SetTo(const char* name, int32 id, bool minimized,
55 									bool local, bool dragging = false);
56 
57 			bool				Expanded() const { return fExpanded; };
58 			void				SetExpanded(bool expand) { fExpanded = expand; };
59 
60 			int32				ID() const { return fID; };
61 			bool				Modified() const { return fIsModified; };
62 
63 			bool				RequiresUpdate() { return fRequireUpdate; };
64 			void				SetRequireUpdate(bool update)
65 									{ fRequireUpdate = update; };
66 
67 	static	int32				InsertIndexFor(BMenu* menu, int32 startIndex,
68 									TWindowMenuItem* item);
69 
70 protected:
71 	virtual void				GetContentSize(float* width, float* height);
72 	virtual void				DrawContent();
73 	virtual status_t			Invoke(BMessage* message = NULL);
74 	virtual void				Draw();
75 
76 private:
77 			void				_Init(const char* name);
78 
79 private:
80 			const BBitmap*		fBitmap;
81 
82 			int32				fID;
83 
84 			float				fLabelWidth;
85 			float				fLabelAscent;
86 			float				fLabelDescent;
87 
88 			bool				fIsModified : 1;
89 			bool				fIsMinimized : 1;
90 			bool				fIsLocal : 1;
91 			bool				fDragging : 1;
92 			bool				fExpanded : 1;
93 			bool				fRequireUpdate : 1;
94 };
95 
96 
97 #endif	// WINDOW_MENU_ITEM_H
98