xref: /haiku/src/apps/deskbar/BarMenuTitle.cpp (revision 8d96ebeb590ed978b67dde0801c0c05bca6d4799)
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 
36 
37 #include "BarMenuTitle.h"
38 
39 #include <Bitmap.h>
40 #include <ControlLook.h>
41 #include <Debug.h>
42 
43 #include "BarApp.h"
44 #include "BarView.h"
45 #include "BarWindow.h"
46 #include "ExpandoMenuBar.h"
47 
48 
49 TBarMenuTitle::TBarMenuTitle(float width, float height, const BBitmap* icon,
50 	BMenu* menu, bool inexpando)
51 	:	BMenuItem(menu, new BMessage(B_REFS_RECEIVED)),
52 		fWidth(width),
53 		fHeight(height),
54 		fInExpando(inexpando),
55 		fIcon(icon)
56 {
57 }
58 
59 
60 TBarMenuTitle::~TBarMenuTitle()
61 {
62 }
63 
64 
65 void
66 TBarMenuTitle::SetWidthHeight(float width, float height)
67 {
68 	fWidth = width;
69 	fHeight = height;
70 }
71 
72 
73 void
74 TBarMenuTitle::GetContentSize(float* width, float* height)
75 {
76 	*width = fWidth;
77 	*height = fHeight;
78 }
79 
80 
81 void
82 TBarMenuTitle::Draw()
83 {
84 	if (be_control_look == NULL) {
85 		BMenuItem::Draw();
86 		return;
87 	}
88 
89 	// fill background if selected
90 	rgb_color base = Menu()->LowColor();
91 	BRect rect = Frame();
92 
93 	BRect windowBounds = Menu()->Window()->Bounds();
94 	if (rect.right > windowBounds.right)
95 		rect.right = windowBounds.right;
96 
97 	if (IsSelected()) {
98 		be_control_look->DrawMenuItemBackground(Menu(), rect, rect, base,
99 			BControlLook::B_ACTIVATED);
100 	} else {
101 		be_control_look->DrawButtonBackground(Menu(), rect, rect, base);
102 	}
103 
104 	// draw content
105 	DrawContent();
106 
107 	// make sure we restore state
108 	Menu()->SetLowColor(base);
109 }
110 
111 
112 void
113 TBarMenuTitle::DrawContent()
114 {
115 	BMenu* menu = Menu();
116 	BRect frame(Frame());
117 
118 	if (be_control_look != NULL) {
119 		menu->SetDrawingMode(B_OP_ALPHA);
120 
121 		if (fIcon != NULL) {
122 			BRect dstRect(fIcon->Bounds());
123 			dstRect.OffsetTo(frame.LeftTop());
124 			dstRect.OffsetBy(rintf(((frame.Width() - dstRect.Width()) / 2)
125 				- 1.0f), rintf(((frame.Height() - dstRect.Height()) / 2)
126 				+ 2.0f));
127 
128 			menu->DrawBitmapAsync(fIcon, dstRect);
129 		}
130 		return;
131 	}
132 
133 	rgb_color menuColor = menu->LowColor();
134 	rgb_color dark = tint_color(menuColor, B_DARKEN_1_TINT);
135 	rgb_color light = tint_color(menuColor, B_LIGHTEN_2_TINT);
136 
137 	bool inExpandoMode = dynamic_cast<TExpandoMenuBar*>(menu) != NULL;
138 
139 	BRect bounds(menu->Window()->Bounds());
140 	if (bounds.right < frame.right)
141 		frame.right = bounds.right;
142 
143 	menu->SetDrawingMode(B_OP_COPY);
144 
145 	if (!IsSelected() && !menu->IsRedrawAfterSticky()) {
146 		menu->BeginLineArray(8);
147 		menu->AddLine(frame.RightTop(), frame.LeftTop(), light);
148 		menu->AddLine(frame.LeftBottom(), frame.RightBottom(), dark);
149 		menu->AddLine(frame.LeftTop(),
150 			frame.LeftBottom()+BPoint(0, inExpandoMode ? 0 : -1), light);
151 		menu->AddLine(frame.RightBottom(), frame.RightTop(), dark);
152 		if (inExpandoMode) {
153 			frame.top += 1;
154 			menu->AddLine(frame.LeftTop(), frame.RightTop() + BPoint(-1, 0),
155 				light);
156 		}
157 
158 		menu->EndLineArray();
159 
160 		frame.InsetBy(1, 1);
161 		menu->SetHighColor(menuColor);
162 		menu->FillRect(frame);
163 		if (IsSelected())
164 			menu->SetHighColor(ui_color(B_MENU_SELECTED_ITEM_TEXT_COLOR));
165 		else
166 			menu->SetHighColor(ui_color(B_MENU_ITEM_TEXT_COLOR));
167 		frame.InsetBy(-1, -1);
168 		if (inExpandoMode)
169 			frame.top -= 1;
170 	}
171 
172 	ASSERT(IsEnabled());
173 	if (IsSelected() && !menu->IsRedrawAfterSticky()) {
174 		menu->SetHighColor(tint_color(menuColor, B_HIGHLIGHT_BACKGROUND_TINT));
175 		menu->FillRect(frame);
176 
177 		if (menu->IndexOf(this) > 0) {
178 			menu->SetHighColor(tint_color(menuColor, B_DARKEN_4_TINT));
179 			menu->StrokeLine(frame.LeftTop(), frame.LeftBottom());
180 		}
181 
182 		if (IsSelected())
183 			menu->SetHighColor(ui_color(B_MENU_SELECTED_ITEM_TEXT_COLOR));
184 		else
185 			menu->SetHighColor(ui_color(B_MENU_ITEM_TEXT_COLOR));
186 	}
187 
188 	menu->SetDrawingMode(B_OP_ALPHA);
189 
190 	if (fIcon != NULL) {
191 		BRect dstRect(fIcon->Bounds());
192 		dstRect.OffsetTo(frame.LeftTop());
193 		dstRect.OffsetBy(rintf(((frame.Width() - dstRect.Width()) / 2) - 1.0f),
194 			rintf(((frame.Height() - dstRect.Height()) / 2) - 0.0f));
195 
196 		menu->DrawBitmapAsync(fIcon, dstRect);
197 	}
198 }
199 
200 
201 status_t
202 TBarMenuTitle::Invoke(BMessage* message)
203 {
204 	TBarView* barview = dynamic_cast<TBarApp*>(be_app)->BarView();
205 	if (barview) {
206 		BLooper* looper = barview->Looper();
207 		if (looper->Lock()) {
208 			// tell barview to add the refs to the deskbar menu
209 			barview->HandleDeskbarMenu(NULL);
210 			looper->Unlock();
211 		}
212 	}
213 
214 	return BMenuItem::Invoke(message);
215 }
216