xref: /haiku/src/apps/deskbar/BarMenuTitle.cpp (revision f2b4344867e97c3f4e742a1b4a15e6879644601a)
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 #include <Debug.h>
37 
38 #include "BarMenuTitle.h"
39 
40 #include <Bitmap.h>
41 #include <ControlLook.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 				- 0.0f));
127 
128 			menu->DrawBitmapAsync(fIcon, dstRect);
129 		}
130 		return;
131 	}
132 
133 	rgb_color menuColor = menu->ViewColor();
134 	rgb_color dark = tint_color(menuColor, B_DARKEN_1_TINT);
135 	rgb_color light = tint_color(menuColor, B_LIGHTEN_2_TINT);
136 	rgb_color black = {0, 0, 0, 255};
137 
138 	bool inExpandoMode = dynamic_cast<TExpandoMenuBar*>(menu) != NULL;
139 
140 	BRect bounds(menu->Window()->Bounds());
141 	if (bounds.right < frame.right)
142 		frame.right = bounds.right;
143 
144 	menu->SetDrawingMode(B_OP_COPY);
145 
146 	if (!IsSelected() && !menu->IsRedrawAfterSticky()) {
147 		menu->BeginLineArray(8);
148 		menu->AddLine(frame.RightTop(), frame.LeftTop(), light);
149 		menu->AddLine(frame.LeftBottom(), frame.RightBottom(), dark);
150 		menu->AddLine(frame.LeftTop(),
151 			frame.LeftBottom()+BPoint(0, inExpandoMode ? 0 : -1), light);
152 		menu->AddLine(frame.RightBottom(), frame.RightTop(), dark);
153 		if (inExpandoMode) {
154 			frame.top += 1;
155 			menu->AddLine(frame.LeftTop(), frame.RightTop() + BPoint(-1, 0),
156 				light);
157 		}
158 
159 		menu->EndLineArray();
160 
161 		frame.InsetBy(1, 1);
162 		menu->SetHighColor(menuColor);
163 		menu->FillRect(frame);
164 		menu->SetHighColor(black);
165 		frame.InsetBy(-1, -1);
166 		if (inExpandoMode)
167 			frame.top -= 1;
168 	}
169 
170 	ASSERT(IsEnabled());
171 	if (IsSelected() && !menu->IsRedrawAfterSticky()) {
172 		menu->SetHighColor(tint_color(menuColor, B_HIGHLIGHT_BACKGROUND_TINT));
173 		menu->FillRect(frame);
174 
175 		if (menu->IndexOf(this) > 0) {
176 			menu->SetHighColor(tint_color(menuColor, B_DARKEN_4_TINT));
177 			menu->StrokeLine(frame.LeftTop(), frame.LeftBottom());
178 		}
179 
180 		menu->SetHighColor(black);
181 	}
182 
183 	menu->SetDrawingMode(B_OP_ALPHA);
184 
185 	if (fIcon != NULL) {
186 		BRect dstRect(fIcon->Bounds());
187 		dstRect.OffsetTo(frame.LeftTop());
188 		dstRect.OffsetBy(rintf(((frame.Width() - dstRect.Width()) / 2) - 1.0f),
189 			rintf(((frame.Height() - dstRect.Height()) / 2) - 0.0f));
190 
191 		menu->DrawBitmapAsync(fIcon, dstRect);
192 	}
193 }
194 
195 
196 status_t
197 TBarMenuTitle::Invoke(BMessage* message)
198 {
199 	TBarView* barview = dynamic_cast<TBarApp*>(be_app)->BarView();
200 	if (barview) {
201 		BLooper* looper = barview->Looper();
202 		if (looper->Lock()) {
203 			// tell barview to add the refs to the deskbar menu
204 			barview->HandleDeskbarMenu(NULL);
205 			looper->Unlock();
206 		}
207 	}
208 
209 	return BMenuItem::Invoke(message);
210 }
211 
212