forked from HaikuArchives/Weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForecastDeskbarView.cpp
122 lines (103 loc) · 2.82 KB
/
ForecastDeskbarView.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* Copyright 2018 Benjamin Amos
* All rights reserved. Distributed under the terms of the MIT license.
*/
#include <Bitmap.h>
#include <StringView.h>
#include <String.h>
#include <MessageRunner.h>
#include <Looper.h>
#include <Roster.h>
#include "ForecastDeskbarView.h"
#include "ForecastView.h"
#include "App.h"
#include "Util.h"
const uint32 kUpdateForecastMessage = 'Updt';
const float kToolTipDelay = 1000000; /*1000000ms = 1s*/
ForecastDeskbarView::ForecastDeskbarView(BRect viewSize, ForecastView* forecastView)
: BView(viewSize, "ForecastDeskbarView", B_FOLLOW_ALL, B_WILL_DRAW)
{
fForecastView = forecastView;
fMessageRunner = NULL;
}
ForecastDeskbarView::~ForecastDeskbarView()
{
delete fMessageRunner;
delete fForecastView;
}
void
ForecastDeskbarView::AttachedToWindow()
{
fMessageRunner = new BMessageRunner(BMessenger(this), new BMessage(kUpdateForecastMessage), kToolTipDelay, -1);
fForecastView->SetShowForecast(false);
AddChild(fForecastView);
AdoptParentColors();
}
extern "C" _EXPORT BView*
instantiate_deskbar_item(void)
{
BMessage settings;
LoadSettings(settings);
ForecastDeskbarView* view = new ForecastDeskbarView(BRect(0, 0, 15, 15), new ForecastView(BRect(0, 0, 0, 0), &settings));
entry_ref appRef;
settings.FindRef("appLocation", &appRef);
view->SetAppLocation(appRef);
return view;
}
void
ForecastDeskbarView::Draw(BRect drawRect)
{
BView::Draw(drawRect);
SetDrawingMode(B_OP_OVER);
SetBlendingMode(B_PIXEL_ALPHA, B_ALPHA_OVERLAY);
BBitmap* bitmap = fForecastView->GetWeatherIcon(static_cast<weatherIconSize>(2));
DrawBitmap(bitmap);
SetDrawingMode(B_OP_COPY);
}
BArchivable* ForecastDeskbarView::Instantiate(BMessage* archive)
{
if (!validate_instantiation(archive, "ForecastDeskbarView"))
{
return NULL;
}
return reinterpret_cast<BArchivable*>(instantiate_deskbar_item());
}
void
ForecastDeskbarView::MessageReceived(BMessage* message)
{
if (message->what == kUpdateForecastMessage)
{
BString weatherDetailsText;
weatherDetailsText << "Temperature: " << FormatString(fForecastView->Unit(), fForecastView->Temperature()) << "\n";
weatherDetailsText << "Condition: " << fForecastView->GetStatus() << "\n";
weatherDetailsText << "Location: " << fForecastView->CityName();
SetToolTip(weatherDetailsText.String());
Invalidate();
}
else
{
BView::MessageReceived(message);
}
}
void
ForecastDeskbarView::MouseMoved(BPoint point, uint32 message, const BMessage* dragMessage)
{
ShowToolTip(ToolTip());
}
void
ForecastDeskbarView::MouseDown(BPoint point)
{
uint32 mouseButtonStates = 0;
if (Window()->CurrentMessage() != NULL)
{
mouseButtonStates = Window()->CurrentMessage()->FindInt32("buttons");
}
if (mouseButtonStates & B_PRIMARY_MOUSE_BUTTON) //Left click
{
be_roster->Launch(&fAppRef);
}
}
void ForecastDeskbarView::SetAppLocation(entry_ref location)
{
fAppRef = location;
}