mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 06:26:18 +00:00
Slightly improved code style for decimal counts.
This commit is contained in:
@@ -7,13 +7,14 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
*/
|
||||
#include "history/view/reactions/history_view_reactions_tabs.h"
|
||||
|
||||
#include "ui/rp_widget.h"
|
||||
#include "ui/abstract_button.h"
|
||||
#include "ui/painter.h"
|
||||
#include "ui/controls/who_reacted_context_action.h"
|
||||
#include "data/data_message_reaction_id.h"
|
||||
#include "styles/style_widgets.h"
|
||||
#include "lang/lang_tag.h"
|
||||
#include "ui/abstract_button.h"
|
||||
#include "ui/controls/who_reacted_context_action.h"
|
||||
#include "ui/painter.h"
|
||||
#include "ui/rp_widget.h"
|
||||
#include "styles/style_chat.h"
|
||||
#include "styles/style_widgets.h"
|
||||
|
||||
namespace HistoryView::Reactions {
|
||||
namespace {
|
||||
@@ -35,7 +36,7 @@ not_null<Ui::AbstractButton*> CreateTab(
|
||||
bool selected = false;
|
||||
};
|
||||
const auto stm = &st.item;
|
||||
const auto text = QString("%L1").arg(count);
|
||||
const auto text = Lang::FormatCountDecimal(count);
|
||||
const auto font = st::semiboldFont;
|
||||
const auto textWidth = font->width(text);
|
||||
const auto result = Ui::CreateChild<Ui::AbstractButton>(parent.get());
|
||||
|
@@ -81,7 +81,7 @@ void PaintDetails(
|
||||
line.name);
|
||||
auto value = Ui::Text::String(
|
||||
st::statisticsDetailsPopupStyle,
|
||||
QString("%L1").arg(absoluteValue));
|
||||
Lang::FormatCountDecimal(absoluteValue));
|
||||
const auto nameWidth = name.maxWidth();
|
||||
const auto valueWidth = value.maxWidth();
|
||||
|
||||
@@ -177,7 +177,7 @@ PointDetailsWidget::PointDetailsWidget(
|
||||
const auto calculatedWidth = [&]{
|
||||
const auto maxValueText = Ui::Text::String(
|
||||
_textStyle,
|
||||
QString("%L1").arg(maxAbsoluteValue));
|
||||
Lang::FormatCountDecimal(maxAbsoluteValue));
|
||||
const auto maxValueTextWidth = maxValueText.maxWidth();
|
||||
|
||||
auto maxNameTextWidth = 0;
|
||||
@@ -284,7 +284,7 @@ void PointDetailsWidget::setXIndex(int xIndex) {
|
||||
textLine.name.setText(_textStyle, dataLine.name);
|
||||
textLine.value.setText(
|
||||
_textStyle,
|
||||
QString("%L1").arg(dataLine.y[xIndex]));
|
||||
Lang::FormatCountDecimal(dataLine.y[xIndex]));
|
||||
hasPositiveValues |= (dataLine.y[xIndex] > 0);
|
||||
textLine.valueColor = QColor(dataLine.color);
|
||||
if (_chartData.currencyRate) {
|
||||
|
Reference in New Issue
Block a user