588ed557f0
Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
34 lines
1003 B
C++
34 lines
1003 B
C++
#pragma once
|
|
|
|
#include <QColor>
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
QString generateUuid();
|
|
|
|
QString formatRichLink(const QString &url, bool file = false);
|
|
|
|
QString formatRichNamedLink(const QString &url, const QString &name,
|
|
bool file = false);
|
|
|
|
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);
|
|
|
|
} // namespace chatterino
|