Files
sarasacw-picture/app/bottombuttongroup.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
489 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
//
// SPDX-License-Identifier: MIT
2025-07-23 21:20:34 +08:00
2019-09-29 01:40:19 +08:00
#ifndef BOTTOMBUTTONGROUP_H
#define BOTTOMBUTTONGROUP_H
2025-07-23 21:20:34 +08:00
#include <vector>
2025-07-23 21:20:34 +08:00
2019-09-29 01:40:19 +08:00
#include <QAbstractButton>
#include <QGroupBox>
2025-07-23 21:20:34 +08:00
2019-09-29 01:40:19 +08:00
class BottomButtonGroup : public QGroupBox
{
Q_OBJECT
public:
2026-07-24 14:57:41 +08:00
explicit BottomButtonGroup(QWidget *parent = nullptr);
void addActions(const std::vector<QAction *> & actionList);
void addAction(QAction* action);
2019-09-29 01:40:19 +08:00
};
2025-07-23 21:20:34 +08:00
2019-09-29 01:40:19 +08:00
#endif // BOTTOMBUTTONGROUP_H