mirror-chatterino2/src/util/Helpers.hpp

34 lines
1,003 B
C++
Raw Normal View History

#pragma once
#include <QColor>
2019-08-10 13:47:17 +02:00
#include <QString>
2019-10-07 15:46:08 +02:00
namespace chatterino {
2019-09-18 16:31:51 +02:00
QString generateUuid();
2019-09-18 16:31:51 +02:00
QString formatRichLink(const QString &url, bool file = false);
2019-09-18 16:31:51 +02:00
QString formatRichNamedLink(const QString &url, const QString &name,
bool file = false);
2019-08-10 13:47:17 +02:00
QString shortenString(const QString &str, unsigned maxWidth = 50);
QString localizeNumbers(const int &number);
QString kFormatNumbers(const int &number);
QColor getRandomColor(const QString &userId);
/**
* @brief Takes a user's name and some formatting parameter and spits out the standardized way to format it
*
* @param userName a user's name
* @param isFirstWord signifies whether this mention would be the first word in a message
* @param mentionUsersWithComma postfix mentions with a comma. generally powered by getSettings()->mentionUsersWithComma
**/
QString formatUserMention(const QString &userName, bool isFirstWord,
bool mentionUsersWithComma);
2019-10-07 15:46:08 +02:00
} // namespace chatterino