Pre-reformat fixes

This commit is contained in:
Evgenii Zheltonozhskii 2018-06-05 20:45:14 +03:00 committed by Berkus Decker
parent b3cdb38c0b
commit 49982a33a5
19 changed files with 142 additions and 106 deletions

View File

@ -21,6 +21,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#pragma once
#include "base/variant.h"
#include <gsl/gsl_assert> // for Expects
namespace base {

View File

@ -264,7 +264,8 @@ void ShareBox::onMustScrollTo(int top, int bottom) {
// to = bottom - (scrollBottom - scrollTop);
// }
// if (from != to) {
// _scrollAnimation.start([this]() { scrollAnimationCallback(); }, from, to, st::shareScrollDuration, anim::sineInOut);
// _scrollAnimation.start([this]() { scrollAnimationCallback(); }, from, to, st::shareScrollDuration,
// anim::sineInOut);
// }
}

View File

@ -251,7 +251,8 @@ void TabbedSelector::SlideAnimation::paintFrame(QPainter &p, double dt, double o
// Debug
// frameInts = _frameInts;
//auto pattern = anim::shifted((static_cast<quint32>(0xFF) << 24) | (static_cast<quint32>(0xFF) << 16) | (static_cast<quint32>(0xFF) << 8) | static_cast<quint32>(0xFF));
// auto pattern = anim::shifted((static_cast<quint32>(0xFF) << 24) | (static_cast<quint32>(0xFF) << 16) |
// (static_cast<quint32>(0xFF) << 8) | static_cast<quint32>(0xFF));
// for (auto y = 0; y != _finalHeight; ++y) {
// for (auto x = 0; x != _finalWidth; ++x) {
// auto source = *frameInts;

View File

@ -40,7 +40,7 @@ struct Replace {
InputId code;
const char *replace;
};
// clang-format off
Replace Replaces[] = {
{ { 0xD83DDE0AU }, ":-)" },
{ { 0xD83DDE0DU }, "8-)" },
@ -1696,7 +1696,7 @@ InputCategory Category7 = {
{ 0xD83CDDFFU, 0xD83CDDF2U, },
{ 0xD83CDDFFU, 0xD83CDDFCU, },
};
// clang-format on
constexpr auto kErrorBadData = 401;
void append(Id &id, quint32 code) {

View File

@ -20,6 +20,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "base/assertion.h"
namespace Data {
// This module suggests a way to hold global data structures, that are

View File

@ -752,8 +752,12 @@ void MediaPreviewWidget::paintEvent(QPaintEvent *e) {
}
} else {
p.setOpacity(shown);
// w = std::max(std::round(w * (st::stickerPreviewMin + ((1. - st::stickerPreviewMin) * shown)) / 2.) * 2 + int(w % 2), 1);
// h = std::max(std::round(h * (st::stickerPreviewMin + ((1. - st::stickerPreviewMin) * shown)) / 2.) * 2 + int(h % 2), 1);
// w = std::max(
// std::round(w * (st::stickerPreviewMin + ((1. - st::stickerPreviewMin) * shown)) / 2.) * 2 + int(w % 2),
// 1);
// h = std::max(
// std::round(h * (st::stickerPreviewMin + ((1. - st::stickerPreviewMin) * shown)) / 2.) * 2 + int(h % 2),
// 1);
}
p.fillRect(r, st::stickerPreviewBg);
p.drawPixmap((width() - w) / 2, (height() - h) / 2, image);

View File

@ -1433,7 +1433,8 @@ public:
trySet(_performer, dict, "artist");
trySet(_performer, dict, "performer");
trySet(_performer, dict, "album_artist");
//for (AVDictionaryEntry *tag = av_dict_get(dict, "", 0, AV_DICT_IGNORE_SUFFIX); tag; tag = av_dict_get(dict, "", tag, AV_DICT_IGNORE_SUFFIX)) {
// for (AVDictionaryEntry *tag = av_dict_get(dict, "", 0, AV_DICT_IGNORE_SUFFIX); tag;
// tag = av_dict_get(dict, "", tag, AV_DICT_IGNORE_SUFFIX)) {
// const char *key = tag->key;
// const char *value = tag->value;
// QString tmp = QString::fromUtf8(value);

View File

@ -276,9 +276,13 @@ void Instance::Inner::onStart() {
// Alloc source samples
d->srcSamples = (d->codecContext->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE) ? 10000 : d->codecContext->frame_size;
//if ((res = av_samples_alloc_array_and_samples(&d->srcSamplesData, 0, d->codecContext->channels, d->srcSamples, d->codecContext->sample_fmt, 0)) < 0) {
// LOG(("Audio Error: Unable to av_samples_alloc_array_and_samples for capture, error %1, %2").arg(res).arg(av_make_error_string(err, sizeof(err), res)));
d->srcSamples =
(d->codecContext->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE) ? 10000 : d->codecContext->frame_size;
// if ((res = av_samples_alloc_array_and_samples(&d->srcSamplesData, 0, d->codecContext->channels, d->srcSamples,
// d->codecContext->sample_fmt, 0)) < 0) {
// LOG(("Audio Error: Unable to av_samples_alloc_array_and_samples for capture, error %1, %2")
// .arg(res)
// .arg(av_make_error_string(err, sizeof(err), res)));
// onStop(false);
// emit error();
// return;

View File

@ -20,6 +20,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "history/history_item.h"
#include "ui/twidget.h"
namespace Ui {
class ScrollArea;
class Shadow;

View File

@ -20,6 +20,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "base/observer.h"
#include "ui/animation.h"
#include "ui/twidget.h"
namespace Ui {
class IconButton;
class MediaSlider;

View File

@ -20,6 +20,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "structs.h"
#include "base/observer.h"
class AudioMsgId;

View File

@ -20,6 +20,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "ui/twidget.h"
namespace Ui {
class LabelSimple;
class FadeAnimation;

View File

@ -20,6 +20,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "ui/animation.h"
#include "ui/twidget.h"
namespace Media {
namespace Clip {

View File

@ -1088,7 +1088,9 @@ void ConnectionPrivate::restart() {
// clearMessages();
// keyId = kRecreateKeyId;
// retryTimeout = 1; // no ddos please
// LOG(("MTP Info: key may be bad and was not checked - but won't be destroyed, no log outs because of bad server right now..."));
// LOG(
// ("MTP Info: key may be bad and was not checked - but won't be destroyed, no log outs because of "
// "bad server right now..."));
// }
} else {
sessionData->setCheckedKey(false);

View File

@ -982,9 +982,11 @@ bool Instance::Private::onErrorDefault(mtpRequestId requestId, const RPCError &e
// DEBUG_LOG(("MTP Info: importing auth to dc %1").arg(newdcWithShift));
// auto &waiters(_authWaiters[newdcWithShift]);
// if (waiters.empty()) {
// auto exportRequestId = _instance->send(MTPauth_ExportAuthorization(MTP_int(newdcWithShift)), rpcDone([this](const MTPauth_ExportedAuthorization &result, mtpRequestId requestId) {
// exportDone(result, requestId);
// }), rpcFail([this](const RPCError &error, mtpRequestId requestId) {
// auto exportRequestId =
// _instance->send(MTPauth_ExportAuthorization(MTP_int(newdcWithShift)),
// rpcDone([this](const MTPauth_ExportedAuthorization &result,
// mtpRequestId requestId) { exportDone(result, requestId); }),
// rpcFail([this](const RPCError &error, mtpRequestId requestId) {
// return exportFail(error, requestId);
// }));
// _authExportRequests.emplace(exportRequestId, newdcWithShift);

View File

@ -20,6 +20,10 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "history/history_item.h"
#include "history/history.h"
#include "ui/widgets/scroll_area.h"
#include "ui/widgets/tooltip.h"
#include "window/section_widget.h"
#include "window/top_bar_widget.h"
#include "ui/widgets/tooltip.h"

View File

@ -495,7 +495,8 @@ void PanelAnimation::paintFrame(QPainter &p, int x, int y, int outerWidth, doubl
// Debug
// frameInts = _frameInts;
//auto pattern = anim::shifted((static_cast<quint32>(0xFF) << 24) | (static_cast<quint32>(0xFF) << 16) | (static_cast<quint32>(0xFF) << 8) | static_cast<quint32>(0xFF));
// auto pattern = anim::shifted((static_cast<quint32>(0xFF) << 24) | (static_cast<quint32>(0xFF) << 16) |
// (static_cast<quint32>(0xFF) << 8) | static_cast<quint32>(0xFF));
// for (auto y = 0; y != _finalHeight; ++y) {
// for (auto x = 0; x != _finalWidth; ++x) {
// auto source = *frameInts;

View File

@ -2558,7 +2558,10 @@ void Text::setMarkedText(const style::TextStyle &st, const TextWithEntities &tex
// } else {
// if (ch->isHighSurrogate() || ch->isLowSurrogate()) {
// if (ch->isHighSurrogate() && (ch + 1 != e) && ((ch + 1)->isLowSurrogate())) {
// newText.append("0x").append(QString::number((quint32(ch->unicode()) << 16) | quint32((ch + 1)->unicode()), 16).toUpper()).append("U, ");
// newText.append("0x")
// .append(QString::number((quint32(ch->unicode()) << 16) | quint32((ch + 1)->unicode()), 16)
// .toUpper())
// .append("U, ");
// ++ch;
// } else {
// newText.append("BADx").append(QString::number(ch->unicode(), 16).toUpper()).append("U, ");

View File

@ -29,10 +29,8 @@ DropdownMenu::DropdownMenu(QWidget *parent, const style::DropdownMenu &st) : Inn
}
// Not ready with submenus yet.
//DropdownMenu::DropdownMenu(QWidget *parent, QMenu *menu, const style::DropdownMenu &st) : InnerDropdown(parent, st.wrap)
//, _st(st) {
// _menu = setOwnedWidget(object_ptr<Ui::Menu>(this, menu, _st.menu));
// init();
// DropdownMenu::DropdownMenu(QWidget *parent, QMenu *menu, const style::DropdownMenu &st) : InnerDropdown(parent,
// st.wrap) , _st(st) { _menu = setOwnedWidget(object_ptr<Ui::Menu>(this, menu, _st.menu)); init();
//
// for (auto action : actions()) {
// if (auto submenu = action->menu()) {
@ -128,7 +126,8 @@ bool DropdownMenu::popupSubmenuFromAction(QAction *action, int actionTop, Trigge
// if (submenu) {
// auto menuTopLeft = mapFromGlobal(_menu->mapToGlobal(QPoint(0, 0)));
// auto menuBottomRight = mapFromGlobal(_menu->mapToGlobal(QPoint(_menu->width(), _menu->height())));
// QPoint p(menuTopLeft.x() + (rtl() ? (width() - menuBottomRight.x()) : menuBottomRight.x()), menuTopLeft.y() + actionTop);
// QPoint p(menuTopLeft.x() + (rtl() ? (width() - menuBottomRight.x()) : menuBottomRight.x()),
// menuTopLeft.y() + actionTop);
// _activeSubmenu = submenu;
// _activeSubmenu->showMenu(geometry().topLeft() + p, this, source);
//
@ -231,7 +230,7 @@ void DropdownMenu::hideFinish() {
// void DropdownMenu::deleteOnHide(bool del) {
// _deleteOnHide = del;
//}
//
// void DropdownMenu::popup(const QPoint &p) {
// showMenu(p, nullptr, TriggeredSource::Mouse);
//}
@ -244,7 +243,8 @@ void DropdownMenu::hideFinish() {
// auto r = Sandbox::screenGeometry(p);
// if (rtl()) {
// if (w.x() - width() < r.x() - _padding.left()) {
// if (_parent && w.x() + _parent->width() - _padding.left() - _padding.right() + width() - _padding.right() <= r.x() + r.width()) {
// if (_parent && w.x() + _parent->width() - _padding.left() - _padding.right() + width() - _padding.right() <=
// r.x() + r.width()) {
// w.setX(w.x() + _parent->width() - _padding.left() - _padding.right());
// } else {
// w.setX(r.x() - _padding.left());
@ -254,8 +254,10 @@ void DropdownMenu::hideFinish() {
// }
// } else {
// if (w.x() + width() - _padding.right() > r.x() + r.width()) {
// if (_parent && w.x() - _parent->width() + _padding.left() + _padding.right() - width() + _padding.right() >= r.x() - _padding.left()) {
// w.setX(w.x() + _padding.left() + _padding.right() - _parent->width() - width() + _padding.left() + _padding.right());
// if (_parent && w.x() - _parent->width() + _padding.left() + _padding.right() - width() + _padding.right() >=
// r.x() - _padding.left()) {
// w.setX(w.x() + _padding.left() + _padding.right() - _parent->width() - width() + _padding.left() +
// _padding.right());
// } else {
// w.setX(r.x() + r.width() - width() + _padding.right());
// }