tdesktop/Telegram/SourceFiles/layout.cpp

136 lines
3.3 KiB
C++
Raw Normal View History

2015-12-20 14:05:07 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2015-12-20 14:05:07 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2015-12-20 14:05:07 +00:00
*/
#include "layout.h"
2015-12-20 14:05:07 +00:00
#include "data/data_document.h"
2017-04-13 08:27:10 +00:00
#include "lang/lang_keys.h"
2015-12-20 14:05:07 +00:00
#include "mainwidget.h"
2017-03-04 10:23:56 +00:00
#include "storage/file_upload.h"
#include "mainwindow.h"
#include "core/file_utilities.h"
2017-04-06 14:38:10 +00:00
#include "boxes/add_contact_box.h"
#include "boxes/confirm_box.h"
#include "media/audio/media_audio.h"
2017-03-04 10:23:56 +00:00
#include "storage/localstorage.h"
#include "history/view/history_view_cursor_state.h"
#include "ui/cached_round_corners.h"
2015-12-20 14:05:07 +00:00
2015-12-21 13:14:29 +00:00
int32 documentColorIndex(DocumentData *document, QString &ext) {
auto colorIndex = 0;
auto name = document
? (document->filename().isEmpty()
? (document->sticker()
2019-06-19 15:09:03 +00:00
? tr::lng_in_dlg_sticker(tr::now)
: qsl("Unknown File"))
: document->filename())
2019-06-19 15:09:03 +00:00
: tr::lng_message_empty(tr::now);
2015-12-21 13:14:29 +00:00
name = name.toLower();
auto lastDot = name.lastIndexOf('.');
auto mime = document
? document->mimeString().toLower()
: QString();
2015-12-21 13:14:29 +00:00
if (name.endsWith(qstr(".doc")) ||
name.endsWith(qstr(".docx")) ||
2015-12-21 13:14:29 +00:00
name.endsWith(qstr(".txt")) ||
name.endsWith(qstr(".psd")) ||
mime.startsWith(qstr("text/"))) {
2015-12-21 13:14:29 +00:00
colorIndex = 0;
} else if (
name.endsWith(qstr(".xls")) ||
name.endsWith(qstr(".xlsx")) ||
name.endsWith(qstr(".csv"))) {
2015-12-21 13:14:29 +00:00
colorIndex = 1;
} else if (
name.endsWith(qstr(".pdf")) ||
name.endsWith(qstr(".ppt")) ||
name.endsWith(qstr(".pptx")) ||
name.endsWith(qstr(".key"))) {
2015-12-21 13:14:29 +00:00
colorIndex = 2;
} else if (
name.endsWith(qstr(".zip")) ||
name.endsWith(qstr(".rar")) ||
name.endsWith(qstr(".ai")) ||
name.endsWith(qstr(".mp3")) ||
name.endsWith(qstr(".mov")) ||
name.endsWith(qstr(".avi"))) {
2015-12-21 13:14:29 +00:00
colorIndex = 3;
} else {
auto ch = (lastDot >= 0 && lastDot + 1 < name.size())
? name.at(lastDot + 1)
: (name.isEmpty()
? (mime.isEmpty() ? '0' : mime.at(0))
: name.at(0));
2015-12-21 13:14:29 +00:00
colorIndex = (ch.unicode() % 4);
}
ext = document
? ((lastDot < 0 || lastDot + 2 > name.size())
? name
: name.mid(lastDot + 1))
: QString();
2015-12-21 13:14:29 +00:00
return colorIndex;
}
style::color documentColor(int32 colorIndex) {
const style::color colors[] = {
st::msgFile1Bg,
st::msgFile2Bg,
st::msgFile3Bg,
st::msgFile4Bg
};
return colors[colorIndex & 3];
2015-12-21 13:14:29 +00:00
}
style::color documentDarkColor(int32 colorIndex) {
static style::color colors[] = {
st::msgFile1BgDark,
st::msgFile2BgDark,
st::msgFile3BgDark,
st::msgFile4BgDark
};
return colors[colorIndex & 3];
2016-01-03 14:32:13 +00:00
}
style::color documentOverColor(int32 colorIndex) {
static style::color colors[] = {
st::msgFile1BgOver,
st::msgFile2BgOver,
st::msgFile3BgOver,
st::msgFile4BgOver
};
return colors[colorIndex & 3];
2016-01-03 14:32:13 +00:00
}
style::color documentSelectedColor(int32 colorIndex) {
static style::color colors[] = {
st::msgFile1BgSelected,
st::msgFile2BgSelected,
st::msgFile3BgSelected,
st::msgFile4BgSelected
};
return colors[colorIndex & 3];
2016-01-03 14:32:13 +00:00
}
Ui::CachedRoundCorners documentCorners(int32 colorIndex) {
return Ui::CachedRoundCorners(Ui::Doc1Corners + (colorIndex & 3));
2015-12-21 13:14:29 +00:00
}
[[nodiscard]] HistoryView::TextState LayoutItemBase::getState(
QPoint point,
StateRequest request) const {
return {};
}
[[nodiscard]] TextSelection LayoutItemBase::adjustSelection(
TextSelection selection,
TextSelectType type) const {
return selection;
}