mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
28 lines
715 B
C++
28 lines
715 B
C++
#include "box_banner_view.h"
|
|
|
|
namespace Statistics {
|
|
|
|
BoxBannerView::BoxBannerView() :
|
|
m_calculationName(KDText::FontSize::Small, I18n::Message::Minimum, 0.0f, 0.5f, KDColorBlack, Palette::GreyMiddle),
|
|
m_calculationValue(KDText::FontSize::Small, 1.0f, 0.5f, KDColorBlack, Palette::GreyMiddle)
|
|
{
|
|
}
|
|
|
|
int BoxBannerView::numberOfSubviews() const {
|
|
return 2;
|
|
}
|
|
|
|
TextView * BoxBannerView::textViewAtIndex(int index) const {
|
|
const TextView * textViews[2] = {&m_calculationName, &m_calculationValue};
|
|
return (TextView *)textViews[index];
|
|
}
|
|
|
|
MessageTextView * BoxBannerView::messageTextViewAtIndex(int index) const {
|
|
if (index == 0) {
|
|
return (MessageTextView *)&m_calculationName;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
}
|