2016-08-17 15:14:08 +00:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-08-17 15:14:08 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Settings {
|
|
|
|
|
|
|
|
class CoverWidget;
|
|
|
|
class BlockWidget;
|
|
|
|
|
2016-08-27 04:49:18 +00:00
|
|
|
class InnerWidget : public TWidget, private base::Subscriber {
|
2016-08-22 17:16:21 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2016-08-17 15:14:08 +00:00
|
|
|
public:
|
|
|
|
InnerWidget(QWidget *parent);
|
|
|
|
|
|
|
|
// Count new height for width=newWidth and resize to it.
|
2016-08-22 17:16:21 +00:00
|
|
|
void resizeToWidth(int newWidth, int contentLeft) {
|
|
|
|
_contentLeft = contentLeft;
|
|
|
|
return TWidget::resizeToWidth(newWidth);
|
|
|
|
}
|
2016-08-17 15:14:08 +00:00
|
|
|
|
|
|
|
// Updates the area that is visible inside the scroll container.
|
2016-11-03 10:58:10 +00:00
|
|
|
void setVisibleTopBottom(int visibleTop, int visibleBottom) override;
|
2016-08-17 15:14:08 +00:00
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
void showFinished();
|
|
|
|
|
2016-08-22 17:16:21 +00:00
|
|
|
private slots:
|
|
|
|
void onBlockHeightUpdated();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Resizes content and counts natural widget height for the desired width.
|
|
|
|
int resizeGetHeight(int newWidth) override;
|
|
|
|
|
2016-08-17 15:14:08 +00:00
|
|
|
private:
|
2016-08-27 04:49:18 +00:00
|
|
|
void selfUpdated();
|
2016-08-19 17:26:31 +00:00
|
|
|
void refreshBlocks();
|
|
|
|
|
2016-08-22 17:16:21 +00:00
|
|
|
// Returns the new height value.
|
2016-08-28 19:16:23 +00:00
|
|
|
int refreshBlocksPositions(int newWidth);
|
2016-08-17 15:14:08 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<CoverWidget> _cover = { nullptr };
|
2016-08-17 15:14:08 +00:00
|
|
|
QList<BlockWidget*> _blocks;
|
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
UserData *_self = nullptr;
|
|
|
|
|
2016-08-22 17:16:21 +00:00
|
|
|
int _contentLeft = 0;
|
2016-09-25 19:30:47 +00:00
|
|
|
bool _showFinished = false;
|
2016-08-22 17:16:21 +00:00
|
|
|
|
2016-08-17 15:14:08 +00:00
|
|
|
int _visibleTop = 0;
|
|
|
|
int _visibleBottom = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Settings
|