/* This file is part of Telegram Desktop, the official desktop version of Telegram messaging app, see https://telegram.org Telegram Desktop is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE Copyright (c) 2014 John Preston, https://desktop.telegram.org */ #include "stdafx.h" #include "lang.h" #include "emojibox.h" #include "mainwidget.h" #include "window.h" namespace { // copied from genemoji.cpp struct EmojiReplace { uint32 code; const char *replace; }; EmojiReplace replaces[] = { { 0xD83DDE0AU, ":-)" }, { 0xD83DDE0DU, "8-)" }, { 0x2764U, "<3" }, { 0xD83DDC8BU, ":kiss:" }, { 0xD83DDE01U, ":grin:" }, { 0xD83DDE02U, ":joy:" }, { 0xD83DDE1AU, ":-*" }, { 0xD83DDE06U, "xD" }, { 0xD83DDC4DU, ":like:" }, { 0xD83DDC4EU, ":dislike:" }, { 0x261DU, ":up:" }, { 0x270CU, ":v:" }, { 0xD83DDC4CU, ":ok:" }, { 0xD83DDE0EU, "B-)" }, { 0xD83DDE03U, ":-D" }, { 0xD83DDE09U, ";-)" }, { 0xD83DDE1CU, ";-P" }, { 0xD83DDE0BU, ":-p" }, { 0xD83DDE14U, "3(" }, { 0xD83DDE1EU, ":-(" }, { 0xD83DDE0FU, ":]" }, { 0xD83DDE22U, ":'(" }, { 0xD83DDE2DU, ":_(" }, { 0xD83DDE29U, ":((" }, { 0xD83DDE28U, ":o" }, { 0xD83DDE10U, ":|" }, { 0xD83DDE0CU, "3-)" }, { 0xD83DDE20U, ">(" }, { 0xD83DDE21U, ">((" }, { 0xD83DDE07U, "O:)" }, { 0xD83DDE30U, ";o" }, { 0xD83DDE33U, "8|" }, { 0xD83DDE32U, "8o" }, { 0xD83DDE37U, ":X" }, { 0xD83DDE08U, "}:)" }, }; const uint32 replacesCount = sizeof(replaces) / sizeof(EmojiReplace), replacesInRow = 7; } EmojiBox::EmojiBox() : _done(this, lang(lng_about_done), st::aboutCloseButton) { fillBlocks(); _blockHeight = st::emojiReplaceInnerHeight; resizeMaxHeight(_blocks[0].size() * st::emojiReplaceWidth + (st::emojiReplaceWidth - st::emojiSize), st::boxPadding.top() + st::boxFont->height + _blocks.size() * st::emojiReplaceHeight + (st::emojiReplaceHeight - _blockHeight) + _done.height()); connect(&_done, SIGNAL(clicked()), this, SLOT(onClose())); prepare(); } void EmojiBox::fillBlocks() { BlockRow currentRow; currentRow.reserve(replacesInRow); for (uint32 i = 0; i < replacesCount; ++i) { Block block(getEmoji(replaces[i].code), QString::fromUtf8(replaces[i].replace)); currentRow.push_back(block); if (uint32(currentRow.size()) == replacesInRow) { _blocks.push_back(currentRow); currentRow.resize(0); } } if (currentRow.size()) { _blocks.push_back(currentRow); } } void EmojiBox::hideAll() { _done.hide(); } void EmojiBox::showAll() { _done.show(); } void EmojiBox::keyPressEvent(QKeyEvent *e) { if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) { onClose(); } else { AbstractBox::keyPressEvent(e); } } void EmojiBox::paintEvent(QPaintEvent *e) { QPainter p(this); if (paint(p)) return; paintGrayTitle(p, lang(lng_settings_emoji_list)); p.setFont(st::emojiTextFont->f); p.setPen(st::black->p); int32 top = st::boxPadding.top() + st::boxFont->height + (st::emojiReplaceHeight - _blockHeight) / 2; for (Blocks::const_iterator i = _blocks.cbegin(), e = _blocks.cend(); i != e; ++i) { int32 rowSize = i->size(), left = (width() - rowSize * st::emojiReplaceWidth) / 2; for (BlockRow::const_iterator j = i->cbegin(), en = i->cend(); j != en; ++j) { if (j->emoji) { QPoint pos(left + (st::emojiReplaceWidth - st::emojiSize) / 2, top + (st::emojiReplaceHeight - _blockHeight) / 2); p.drawPixmap(pos, App::emojis(), QRect(j->emoji->x, j->emoji->y, st::emojiImgSize, st::emojiImgSize)); } QRect trect(left, top + (st::emojiReplaceHeight + _blockHeight) / 2 - st::emojiTextFont->height, st::emojiReplaceWidth, st::emojiTextFont->height); p.drawText(trect, j->text, QTextOption(Qt::AlignHCenter | Qt::AlignTop)); left += st::emojiReplaceWidth; } top += st::emojiReplaceHeight; } } void EmojiBox::resizeEvent(QResizeEvent *e) { _done.setGeometry(0, height() - _done.height(), width(), _done.height()); }