Shoutout(const ChannelInfo &channel, cairo::Context &ctx, State &state)
: channel(channel)
, state(state)
+ , live_layout(ctx.CreateLayout())
, title_layout(ctx.CreateLayout())
, channel_layout(ctx.CreateLayout())
, category_layout(ctx.CreateLayout())
, bg_color{ 0.1, 0.1, 0.1 }
+ , border_color{ 0.8, 0.1, 0.1 }
+ , live_color{ 0.8, 0.1, 0.1 }
, title_color{ 1, 1, 1 }
, channel_color{ 0.392, 0.255, 0.647 }
, anchor{ 1280, 720 - 75 }
, running(false)
, done(false)
, fetching_clip(false) {
+ live_layout.SetText("Jetzt Live");
title_layout.SetText(channel.twitch_title);
channel_layout.SetText(channel.title);
category_layout.SetText(channel.twitch_category);
return done;
}
+ void SetLiveFont(pango::Font &font) {
+ live_layout.SetFont(font);
+ }
+
void SetTitleFont(pango::Font &font) {
title_layout.SetFont(font);
}
anchor.y = 720 - 75;
} else if (ms > 59000) {
anchor.x = 75;
- anchor.y = runtime.InterpolateClamp(720 - 75, 720 + size.h, 59000, 59400);
+ anchor.y = runtime.InterpolateClamp(720 - 75, 720 + GetTotalSize().h, 59000, 59400);
} else {
anchor.x = 75;
anchor.y = 720 - 75;
}
}
+ gfx::Size GetTotalSize() const {
+ gfx::Size total(size);
+ total.h += double(live_layout.GetLogicalRect().height) + padding.Vertical() + 1.0;
+ return total;
+ }
+
void Recalc(cairo::Context &ctx) {
+ ctx.UpdateLayout(live_layout);
ctx.UpdateLayout(title_layout);
ctx.UpdateLayout(channel_layout);
ctx.UpdateLayout(category_layout);
ctx.Rectangle(pos, size);
ctx.Fill();
+ ctx.SetSourceColor(border_color);
+ ctx.Rectangle(pos, size);
+ ctx.SetLineWidth(2.0);
+ ctx.Stroke();
+
+ gfx::Position live_pos = pos;
+ live_pos.y -= padding.Vertical() + live_layout.GetLogicalRect().height;
+ gfx::Size live_size = padding.Resize(gfx::Size{ double(live_layout.GetLogicalRect().width), double(live_layout.GetLogicalRect().height) });
+
+ ctx.SetSourceColor(bg_color);
+ ctx.Rectangle(live_pos, live_size);
+ ctx.Fill();
+
+ ctx.SetSourceColor(border_color);
+ ctx.Rectangle(live_pos, live_size);
+ ctx.SetLineWidth(2.0);
+ ctx.Stroke();
+
+ live_pos += padding.Offset();
+ ctx.MoveTo(live_pos);
+ ctx.SetSourceColor(live_color);
+ ctx.DrawLayout(live_layout);
+
gfx::Position title_pos = pos + padding.InnerTL(size);
ctx.MoveTo(title_pos);
ctx.SetSourceColor(title_color);
const ChannelInfo &channel;
State &state;
+ pango::Layout live_layout;
pango::Layout title_layout;
pango::Layout channel_layout;
pango::Layout category_layout;
gfx::ColorRGB bg_color;
+ gfx::ColorRGB border_color;
+ gfx::ColorRGB live_color;
gfx::ColorRGB title_color;
gfx::ColorRGB channel_color;
gfx::ColorRGB category_color;