blob: 164651f6df7b07f1fab58a142fceed9776915f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#include "uitypes.h"
#include <QtWidgets/QToolButton>
#include <QtCore/QParallelAnimationGroup>
#include <QtWidgets/QScrollArea>
#include <QtCore/QPropertyAnimation>
class BINARYNINJAUIAPI ExpandableGroup : public QWidget
{
Q_OBJECT
private:
QToolButton* m_button;
QParallelAnimationGroup* m_animation;
QScrollArea* m_content;
int m_duration = 100;
private Q_SLOTS:
void toggled(bool expanded);
public:
explicit ExpandableGroup(const QString& title = "", QWidget* parent = nullptr);
void setContentLayout(QLayout* contentLayout);
void setTitle(const QString& title) { m_button->setText(title); }
void toggle(bool expanded);
};
|