mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-02 23:35:41 -05:00
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QGridLayout>
|
|
#include <QParallelAnimationGroup>
|
|
#include <QScrollArea>
|
|
#include <QToolButton>
|
|
#include <QWidget>
|
|
|
|
namespace advss {
|
|
|
|
class Section : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Section(const int animationDuration = 300,
|
|
QWidget *parent = 0);
|
|
|
|
void SetContent(QWidget *w);
|
|
void SetContent(QWidget *w, bool collapsed);
|
|
void AddHeaderWidget(QWidget *);
|
|
void SetCollapsed(bool);
|
|
|
|
protected:
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
private slots:
|
|
void AnimationFinish();
|
|
void Collapse(bool collapse);
|
|
signals:
|
|
void AnimationFinished();
|
|
void Collapsed(bool);
|
|
|
|
private:
|
|
void SetupAnimations();
|
|
void CleanUpPreviousContent();
|
|
|
|
QGridLayout *_mainLayout;
|
|
QHBoxLayout *_headerWidgetLayout;
|
|
QToolButton *_toggleButton;
|
|
QFrame *_headerLine;
|
|
QParallelAnimationGroup *_toggleAnimation = nullptr;
|
|
QParallelAnimationGroup *_contentAnimation = nullptr;
|
|
QScrollArea *_contentArea = nullptr;
|
|
QWidget *_content = nullptr;
|
|
int _animationDuration;
|
|
std::atomic_bool _transitioning = {false};
|
|
std::atomic_bool _collapsed = {false};
|
|
int _headerHeight = 0;
|
|
int _contentHeight = 0;
|
|
};
|
|
|
|
} // namespace advss
|