mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 23:12:10 +00:00
145 lines
3.7 KiB
C++
145 lines
3.7 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#include "layout/layout_document_generic_preview.h"
|
|
|
|
#include "data/data_document.h"
|
|
#include "lang/lang_keys.h"
|
|
#include "styles/style_media_view.h"
|
|
|
|
namespace Layout {
|
|
namespace {
|
|
|
|
[[nodiscard]] int ColorIndexForName(
|
|
const QString &name,
|
|
const QString &mime = QString()) {
|
|
const auto lastDot = name.lastIndexOf('.');
|
|
if (name.endsWith(u".doc"_q) ||
|
|
name.endsWith(u".docx"_q) ||
|
|
name.endsWith(u".txt"_q) ||
|
|
name.endsWith(u".psd"_q) ||
|
|
mime.startsWith(u"text/"_q)) {
|
|
return 0;
|
|
} else if (
|
|
name.endsWith(u".xls"_q) ||
|
|
name.endsWith(u".xlsx"_q) ||
|
|
name.endsWith(u".csv"_q)) {
|
|
return 1;
|
|
} else if (
|
|
name.endsWith(u".pdf"_q) ||
|
|
name.endsWith(u".ppt"_q) ||
|
|
name.endsWith(u".pptx"_q) ||
|
|
name.endsWith(u".key"_q)) {
|
|
return 2;
|
|
} else if (
|
|
name.endsWith(u".zip"_q) ||
|
|
name.endsWith(u".rar"_q) ||
|
|
name.endsWith(u".ai"_q) ||
|
|
name.endsWith(u".mp3"_q) ||
|
|
name.endsWith(u".mov"_q) ||
|
|
name.endsWith(u".avi"_q)) {
|
|
return 3;
|
|
}
|
|
const auto ch = (lastDot >= 0 && lastDot + 1 < name.size())
|
|
? name.at(lastDot + 1)
|
|
: (name.isEmpty()
|
|
? (mime.isEmpty() ? QChar('0') : mime.at(0))
|
|
: name.at(0));
|
|
return (ch.unicode() % 4) & 3;
|
|
}
|
|
|
|
[[nodiscard]] DocumentGenericPreview BuildFromColorIndex(
|
|
int colorIndex,
|
|
const QString &ext) {
|
|
switch (colorIndex) {
|
|
case 0: return {
|
|
.index = colorIndex,
|
|
.color = st::msgFile1Bg,
|
|
.dark = st::msgFile1BgDark,
|
|
.over = st::msgFile1BgOver,
|
|
.selected = st::msgFile1BgSelected,
|
|
.ext = ext,
|
|
};
|
|
case 1: return {
|
|
.index = colorIndex,
|
|
.color = st::msgFile2Bg,
|
|
.dark = st::msgFile2BgDark,
|
|
.over = st::msgFile2BgOver,
|
|
.selected = st::msgFile2BgSelected,
|
|
.ext = ext,
|
|
};
|
|
case 2: return {
|
|
.index = colorIndex,
|
|
.color = st::msgFile3Bg,
|
|
.dark = st::msgFile3BgDark,
|
|
.over = st::msgFile3BgOver,
|
|
.selected = st::msgFile3BgSelected,
|
|
.ext = ext,
|
|
};
|
|
case 3: return {
|
|
.index = colorIndex,
|
|
.color = st::msgFile4Bg,
|
|
.dark = st::msgFile4BgDark,
|
|
.over = st::msgFile4BgOver,
|
|
.selected = st::msgFile4BgSelected,
|
|
.ext = ext,
|
|
};
|
|
}
|
|
Unexpected("Color index in BuildFromColorIndex.");
|
|
}
|
|
|
|
} // namespace
|
|
|
|
const style::icon *DocumentGenericPreview::icon() const {
|
|
switch (index) {
|
|
case 0: return &st::mediaviewFileBlue;
|
|
case 1: return &st::mediaviewFileGreen;
|
|
case 2: return &st::mediaviewFileRed;
|
|
case 3: return &st::mediaviewFileYellow;
|
|
}
|
|
Unexpected("Color index in DocumentGenericPreview::icon.");
|
|
}
|
|
|
|
DocumentGenericPreview DocumentGenericPreview::Create(
|
|
DocumentData *document) {
|
|
const auto name = (document
|
|
? (document->filename().isEmpty()
|
|
? (document->sticker()
|
|
? tr::lng_in_dlg_sticker(tr::now)
|
|
: u"Unknown File"_q)
|
|
: document->filename())
|
|
: tr::lng_message_empty(tr::now)).toLower();
|
|
const auto mime = document ? document->mimeString() : QString();
|
|
const auto colorIndex = ColorIndexForName(name, mime);
|
|
const auto lastDot = name.lastIndexOf('.');
|
|
const auto ext = document
|
|
? ((lastDot < 0 || lastDot + 2 > name.size())
|
|
? name
|
|
: name.mid(lastDot + 1))
|
|
: QString();
|
|
|
|
return BuildFromColorIndex(colorIndex, ext);
|
|
}
|
|
|
|
DocumentGenericPreview DocumentGenericPreview::Create(
|
|
const QString &filename) {
|
|
const auto name = filename.toLower();
|
|
const auto colorIndex = ColorIndexForName(name);
|
|
const auto lastDot = name.lastIndexOf('.');
|
|
const auto ext = (lastDot < 0 || lastDot + 2 > name.size())
|
|
? name
|
|
: name.mid(lastDot + 1);
|
|
|
|
return BuildFromColorIndex(colorIndex, ext);
|
|
}
|
|
|
|
// Ui::CachedRoundCorners DocumentCorners(int32 colorIndex) {
|
|
// return Ui::CachedRoundCorners(Ui::Doc1Corners + (colorIndex & 3));
|
|
// }
|
|
|
|
} // namespace Layout
|