tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / printers / TestPageView.cpp
blob1708d318d14f34534057516a7fee54ca5f31d22e
1 /*
2 * Copyright 2011, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Philippe Houdoin
7 */
10 #include "TestPageView.h"
12 #include <math.h>
14 #include <AffineTransform.h>
15 #include <Catalog.h>
16 #include <Font.h>
17 #include <GradientLinear.h>
18 #include <GradientRadial.h>
19 #include <GridLayoutBuilder.h>
20 #include <GroupLayoutBuilder.h>
21 #include <LayoutUtils.h>
22 #include <TextView.h>
23 #include <Shape.h>
24 #include <String.h>
25 #include <StringView.h>
27 #include "PrinterListView.h"
30 #undef B_TRANSLATION_CONTEXT
31 #define B_TRANSLATION_CONTEXT "TestPageView"
34 // #pragma mark LeafView
37 // path data for the leaf shape
38 static const BPoint kLeafBegin(56.24793f, 15.46287f);
39 static BPoint kLeafCurves[][3] = {
40 { BPoint(61.14, 28.89), BPoint(69.78, 38.25), BPoint(83.48, 44.17) },
41 { BPoint(99.46, 37.52), BPoint(113.27, 29.61), BPoint(134.91, 30.86) },
42 { BPoint(130.58, 36.53), BPoint(126.74, 42.44), BPoint(123.84, 48.81) },
43 { BPoint(131.81, 42.22), BPoint(137.53, 38.33), BPoint(144.37, 33.10) },
44 { BPoint(169.17, 23.55), BPoint(198.90, 15.55), BPoint(232.05, 10.51) },
45 { BPoint(225.49, 18.37), BPoint(219.31, 28.17), BPoint(217.41, 40.24) },
46 { BPoint(227.70, 26.60), BPoint(239.97, 14.63), BPoint(251.43, 8.36) },
47 { BPoint(288.89, 9.12), BPoint(322.73, 14.33), BPoint(346.69, 31.67) },
48 { BPoint(330.49, 37.85), BPoint(314.36, 44.25), BPoint(299.55, 54.17) },
49 { BPoint(292.48, 52.54), BPoint(289.31, 49.70), BPoint(285.62, 47.03) },
50 { BPoint(283.73, 54.61), BPoint(284.46, 57.94), BPoint(285.62, 60.60) },
51 { BPoint(259.78, 76.14), BPoint(233.24, 90.54), BPoint(202.41, 98.10) },
52 { BPoint(194.43, 95.36), BPoint(185.96, 92.39), BPoint(179.63, 88.33) },
53 { BPoint(180.15, 94.75), BPoint(182.73, 99.76), BPoint(185.62, 104.53) },
54 { BPoint(154.83, 119.46), BPoint(133.21, 118.97), BPoint(125.62, 94.88) },
55 { BPoint(124.70, 98.79), BPoint(124.11, 103.67), BPoint(124.19, 110.60) },
56 { BPoint(116.42, 111.81), BPoint(85.82, 99.60), BPoint(83.25, 51.96) },
57 { BPoint(62.50, 42.57), BPoint(58.12, 33.18), BPoint(50.98, 23.81) } };
58 static const int kNumLeafCurves = sizeof(kLeafCurves) / sizeof(kLeafCurves[0]);
59 static const float kLeafWidth = 372.f;
60 static const float kLeafHeight = 121.f;
63 class LeafView : public BView {
64 public:
65 LeafView();
66 virtual void Draw(BRect updateRect);
70 LeafView::LeafView()
72 BView("leafview", B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE)
74 SetViewColor(255, 255, 255);
78 void
79 LeafView::Draw(BRect updateRect)
81 float scale = Bounds().Width() / kLeafWidth;
82 BAffineTransform transform;
83 transform.ScaleBy(scale);
85 // BGradientRadial gradient(BPoint(kLeafWidth * 0.75, kLeafHeight * 1.5),
86 // kLeafWidth * 2);
87 BGradientLinear gradient(B_ORIGIN,
88 transform.Apply(BPoint(kLeafWidth, kLeafHeight)));
89 rgb_color lightBlue = make_color(6, 169, 255);
90 rgb_color darkBlue = make_color(0, 50, 126);
91 gradient.AddColor(darkBlue, 0.0);
92 gradient.AddColor(lightBlue, 255.0);
94 // build leaf shape
95 BShape leafShape;
96 leafShape.MoveTo(transform.Apply(kLeafBegin));
97 for (int i = 0; i < kNumLeafCurves; ++i) {
98 BPoint controlPoints[3];
99 for (int j = 0; j < 3; ++j)
100 controlPoints[j] = transform.Apply(kLeafCurves[i][j]);
101 leafShape.BezierTo(controlPoints);
103 leafShape.Close();
105 PushState();
106 SetDrawingMode(B_OP_ALPHA);
107 SetHighColor(0, 0, 0, 50);
108 for (int i = 2; i >= 0; --i) {
109 SetOrigin(i * 0.1, i * 0.3);
110 SetPenSize(i * 2);
111 StrokeShape(&leafShape);
113 PopState();
115 FillShape(&leafShape, gradient);
119 // #pragma mark -
122 class RadialLinesView : public BView {
123 public:
124 RadialLinesView();
126 virtual void Draw(BRect updateRect);
128 virtual bool HasHeightForWidth() { return true; }
129 virtual void GetHeightForWidth(float width, float* min,
130 float* max, float* preferred);
134 RadialLinesView::RadialLinesView()
135 : BView("radiallinesview", B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE)
137 SetViewColor(255, 255, 255);
141 void
142 RadialLinesView::GetHeightForWidth(float width,
143 float* min, float* max, float* preferred)
145 // Enforce a width/height ratio of 1
147 if (min)
148 *min = width;
150 if (max)
151 *max = width;
153 if (preferred)
154 *preferred = width;
158 void
159 RadialLinesView::Draw(BRect updateRect)
161 const rgb_color black = { 0, 0, 0, 255 };
162 const int angleStep = 4;
164 BRect rect(Bounds());
165 float size = rect.Width();
166 if (size > rect.Height())
167 size = rect.Height();
168 size *= 0.45; // leave 10% of margin
170 BPoint center(rect.Width() / 2, rect.Height() / 2);
172 BeginLineArray(360 / angleStep);
173 for (int i = 0; i < 360; i += angleStep) {
174 double angle = i * M_PI / 180;
175 BPoint pt(size * cos(angle), size * sin(angle));
176 AddLine(center, center + pt, black);
178 EndLineArray();
182 // #pragma mark -
185 static const struct {
186 const char* name;
187 rgb_color color;
188 } kColorGradients[] = {
189 { B_TRANSLATE_MARK("Red"), {255, 0, 0, 255} },
190 { B_TRANSLATE_MARK("Green"), {0, 255, 0, 255} },
191 { B_TRANSLATE_MARK("Blue"), {0, 0, 255, 255} },
192 { B_TRANSLATE_MARK("Yellow"), {255, 255, 0, 255} },
193 { B_TRANSLATE_MARK("Magenta"), {255, 0, 255, 255} },
194 { B_TRANSLATE_MARK("Cyan"), {0, 255, 255, 255} },
195 { B_TRANSLATE_MARK("Black"), {0, 0, 0, 255} }
197 static const int kNumColorGradients = sizeof(kColorGradients)
198 / sizeof(kColorGradients[0]);
201 class ColorGradientView : public BView {
202 public:
203 ColorGradientView(rgb_color color);
204 virtual void Draw(BRect updateRect);
206 private:
207 rgb_color fColor;
211 ColorGradientView::ColorGradientView(rgb_color color)
213 BView("colorgradientview", B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE),
214 fColor(color)
219 void
220 ColorGradientView::Draw(BRect updateRect)
222 BRect rect(Bounds());
224 BGradientLinear gradient(rect.LeftTop(), rect.RightBottom());
225 rgb_color white = make_color(255, 255, 255);
226 gradient.AddColor(white, 0.0);
227 gradient.AddColor(fColor, 255.0);
229 FillRect(rect, gradient);
230 StrokeRect(rect);
234 // #pragma mark -
237 TestPageView::TestPageView(BRect frame, PrinterItem* printer)
238 : BView(frame, "testpage", B_FOLLOW_ALL,
239 B_DRAW_ON_CHILDREN | B_FULL_UPDATE_ON_RESIZE),
240 fPrinter(printer)
242 SetViewColor(255, 255, 255);
246 void
247 TestPageView::AttachedToWindow()
249 BTextView* statusView = new BTextView("statusView",
250 be_plain_font, NULL, B_WILL_DRAW);
252 statusView->SetInsets(10, 10, 10, 10);
253 statusView->MakeEditable(false);
254 statusView->MakeSelectable(false);
256 const char* title = B_TRANSLATE("Test Page");
257 BString text;
258 text << title << "\n\n";
259 text << B_TRANSLATE(
260 "Printer: %printer_name%\n"
261 "Driver: %driver%\n");
263 text.ReplaceFirst("%printer_name%", fPrinter->Name());
264 text.ReplaceFirst("%driver%", fPrinter->Driver());
265 if (strlen(fPrinter->Transport()) > 0) {
266 text << B_TRANSLATE("Transport: %transport% %transport_address%");
268 text.ReplaceFirst("%transport%", fPrinter->Transport());
269 text.ReplaceFirst("%transport_address%", fPrinter->TransportAddress());
272 statusView->SetText(text.String());
273 BFont font;
274 statusView->SetStylable(true);
275 statusView->GetFont(&font);
276 font.SetFace(B_BOLD_FACE);
277 font.SetSize(font.Size() * 1.7);
278 statusView->SetFontAndColor(0, strlen(title), &font);
280 BGridLayoutBuilder gradiants(2.0);
281 gradiants.View()->SetViewColor(B_TRANSPARENT_COLOR);
283 for (int i = 0; i < kNumColorGradients; ++i) {
284 BStringView* label = new BStringView(kColorGradients[i].name,
285 kColorGradients[i].name);
286 // label->SetAlignment(B_ALIGN_RIGHT);
287 gradiants.Add(label, 0, i);
288 gradiants.Add(new ColorGradientView(kColorGradients[i].color), 1, i);
291 SetLayout(new BGroupLayout(B_HORIZONTAL));
292 AddChild(BGroupLayoutBuilder(B_VERTICAL, 0)
293 .Add(BGroupLayoutBuilder(B_HORIZONTAL, 0)
294 .Add(statusView)
295 .Add(new LeafView())
297 .Add(BGroupLayoutBuilder(B_HORIZONTAL, 0)
298 .Add(gradiants, 0.60)
299 .Add(new RadialLinesView(), 0.40)
301 .AddGlue()
302 .End()
305 // set layout background color to transparent instead
306 // of default UI panel color
307 ChildAt(0)->SetViewColor(B_TRANSPARENT_COLOR);
311 void
312 TestPageView::DrawAfterChildren(BRect updateRect)
314 // Draw corners marks
316 float width = Bounds().Width();
317 float height = Bounds().Height();
318 float minDimension = MIN(width, height);
320 float size = minDimension * 0.05;
322 SetPenSize(3.0);
324 BPoint pt = Bounds().LeftTop();
325 StrokeLine(pt, BPoint(pt.x + size, pt.y));
326 StrokeLine(pt, BPoint(pt.x, pt.y + size));
328 pt = Bounds().RightTop();
329 StrokeLine(pt, BPoint(pt.x - size, pt.y));
330 StrokeLine(pt, BPoint(pt.x, pt.y + size));
332 pt = Bounds().RightBottom();
333 StrokeLine(pt, BPoint(pt.x - size, pt.y));
334 StrokeLine(pt, BPoint(pt.x, pt.y - size));
336 pt = Bounds().LeftBottom();
337 StrokeLine(pt, BPoint(pt.x + size, pt.y));
338 StrokeLine(pt, BPoint(pt.x, pt.y - size));