119 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| 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
 | |
| Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
 | |
| */
 | |
| #pragma once
 | |
| 
 | |
| #include "layerwidget.h"
 | |
| #include "ui/widgets/shadow.h"
 | |
| 
 | |
| namespace Ui {
 | |
| class MaskButton;
 | |
| } // namespace Ui
 | |
| 
 | |
| class BlueTitleShadow : public TWidget {
 | |
| public:
 | |
| 	BlueTitleShadow(QWidget *parent) : TWidget(parent) {
 | |
| 	}
 | |
| 	void paintEvent(QPaintEvent *e);
 | |
| };
 | |
| 
 | |
| class AbstractBox : public LayerWidget, protected base::Subscriber {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	AbstractBox(int w = st::boxWideWidth);
 | |
| 	void parentResized() override;
 | |
| 	void showDone() override {
 | |
| 		showAll();
 | |
| 	}
 | |
| 
 | |
| 	void setBlueTitle(bool blue);
 | |
| 	void raiseShadow();
 | |
| 
 | |
| public slots:
 | |
| 	void onClose();
 | |
| 
 | |
| protected:
 | |
| 	void keyPressEvent(QKeyEvent *e) override;
 | |
| 	void resizeEvent(QResizeEvent *e) override;
 | |
| 	void paintEvent(QPaintEvent *e) override;
 | |
| 
 | |
| 	void prepare();
 | |
| 	bool paint(QPainter &p);
 | |
| 	void paintTitle(Painter &p, const QString &title, const QString &additional = QString());
 | |
| 	void setMaxHeight(int32 maxHeight);
 | |
| 	void resizeMaxHeight(int32 newWidth, int32 maxHeight);
 | |
| 
 | |
| 	virtual void closePressed() {
 | |
| 	}
 | |
| 	virtual void showAll() {
 | |
| 	}
 | |
| 
 | |
| private:
 | |
| 	int _maxHeight = 0;
 | |
| 	int countHeight() const;
 | |
| 
 | |
| 	bool _closed = false;
 | |
| 
 | |
| 	bool _blueTitle = false;
 | |
| 	ChildWidget<Ui::MaskButton> _blueClose = { nullptr };
 | |
| 	ChildWidget<BlueTitleShadow> _blueShadow = { nullptr };
 | |
| 
 | |
| };
 | |
| 
 | |
| class ScrollableBoxShadow : public Ui::PlainShadow {
 | |
| public:
 | |
| 	ScrollableBoxShadow(QWidget *parent) : Ui::PlainShadow(parent, st::boxScrollShadowBg) {
 | |
| 	}
 | |
| };
 | |
| 
 | |
| class ScrollableBox : public AbstractBox {
 | |
| public:
 | |
| 	ScrollableBox(const style::flatScroll &scroll, int w = st::boxWideWidth);
 | |
| 
 | |
| protected:
 | |
| 	void init(TWidget *inner, int bottomSkip = st::boxScrollSkip, int topSkip = st::boxTitleHeight);
 | |
| 	void setScrollSkips(int bottomSkip = st::boxScrollSkip, int topSkip = st::boxTitleHeight);
 | |
| 
 | |
| 	void resizeEvent(QResizeEvent *e) override;
 | |
| 
 | |
| 	ScrollArea *scrollArea() {
 | |
| 		return _scroll;
 | |
| 	}
 | |
| 
 | |
| private:
 | |
| 	void updateScrollGeometry();
 | |
| 
 | |
| 	ChildWidget<ScrollArea> _scroll;
 | |
| 	int _topSkip, _bottomSkip;
 | |
| 
 | |
| };
 | |
| 
 | |
| class ItemListBox : public ScrollableBox {
 | |
| public:
 | |
| 	ItemListBox(const style::flatScroll &scroll, int32 w = st::boxWideWidth);
 | |
| 
 | |
| };
 | |
| 
 | |
| enum CreatingGroupType {
 | |
| 	CreatingGroupNone,
 | |
| 	CreatingGroupGroup,
 | |
| 	CreatingGroupChannel,
 | |
| };
 | 
